/* ========================================
   MAPA DE SECCIONES DEL ARCHIVO
   1) Variables y base visual
   2) Layout y estructura
   3) Componentes y bloques
   4) Estados y utilidades
   5) Responsive
   ======================================== */
/* ============================== */
/* Base: variables y reset global */
/* ============================== */
:root {
  --wood: #b89167;
  --wood-dark: #8a6741;
  --beige: #f4ece2;
  --beige-deep: #e9dece;
  --white: #fffdf9;
  --soft-gray: #dad7d1;
  --ink: #2d2b29;
  --ink-light: #5a5650;
  --success: #2f7d4b;
  --error: #a43b3b;
  --shadow-soft: 0 12px 30px rgba(41, 33, 21, 0.08);
  --shadow-hover: 0 20px 45px rgba(41, 33, 21, 0.18);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --transition: 0.35s ease;
  --content-gutter: clamp(1.1rem, 5vw, 4rem);
  --text-gutter: clamp(0.55rem, 1.8vw, 1.1rem);
  --cookie-bg: #14110d;
  --cookie-bg-soft: #1d1812;
  --cookie-border: #8d6a41;
  --cookie-text: #f6e6cf;
  --cookie-muted: #cfb99b;
  --cookie-accent: #d67f24;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  
  background:
    radial-gradient(circle at 5% 10%, rgba(184, 145, 103, 0.15), transparent 35%),
    radial-gradient(circle at 90% 12%, rgba(233, 222, 206, 0.7), transparent 32%),
    linear-gradient(180deg, #fffcf8 0%, #f4ece2 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1020px, 100%);
  padding-inline: var(--content-gutter);
  margin-inline: auto;
}

@media (min-width: 1280px) {
  :root {
    --content-gutter: 4.6rem;
  }

  .container {
    width: min(980px, 100%);
    padding-inline: var(--content-gutter);
    margin: auto;
  }
}

.hero__text,
.section-heading,
.booking-copy,
.review-form,
.map-card,
.contact-form,
.about .split-layout > div:first-child {
  padding-inline: var(--text-gutter);
}

.section-shell {
  padding: 6rem 0;
  position: relative;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.73rem;
  color: var(--wood-dark);
  font-weight: 700;
  margin-bottom: 0.85rem;
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.08;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

p {
  color: var(--ink-light);
}

/* Pantalla de carga inicial */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-content: center;
  gap: 1rem;
  background: linear-gradient(145deg, #efe2d0, #fbf5ee);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.preloader p {
  color: #8f755a;
  font-size: 0.95rem;
}

.preloader__ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid rgba(184, 145, 103, 0.35);
  border-top-color: var(--wood-dark);
  animation: spin 1s linear infinite;
}

body.loaded .preloader {
  opacity: 0;
  visibility: hidden;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Header fijo y navegacion principal */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 200;
  padding: 0.9rem 0;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(27, 20, 12, 0.09);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.logo span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.main-nav a {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
  transition: color var(--transition);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.main-nav a:hover {
  color: rgba(255, 255, 255, 0.82);
}

/* Botones reutilizables */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--wood) 0%, var(--wood-dark) 100%);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(138, 103, 65, 0.32);
}

.btn-primary:hover {
  box-shadow: 0 16px 28px rgba(138, 103, 65, 0.38);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
}

.btn-full {
  width: 100%;
}

.nav-cta {
  margin-left: 0.35rem;
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  width: 38px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: #ff8c11;
  border-radius: 999px;
  transition: var(--transition);
}

/* Seccion hero (portada) */
.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 6.5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(110deg, rgba(19, 15, 11, 0.72) 20%, rgba(31, 23, 17, 0.45) 45%, rgba(31, 23, 17, 0.18) 100%),
    url("https://images.unsplash.com/photo-1503951914875-452162b0f3f1?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  z-index: -2;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(184, 145, 103, 0.25), transparent 45%);
  z-index: -1;
}

.hero__content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.2rem;
  color: var(--white);
  align-items: end;
}

.hero__text p {
  color: rgba(255, 250, 243, 0.88);
  max-width: 620px;
  font-size: 1.07rem;
}

.hero__actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-offer {
  margin-top: 1.2rem;
  max-width: 560px;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(244, 215, 179, 0.55);
  background: linear-gradient(145deg, rgba(25, 19, 14, 0.88), rgba(58, 41, 23, 0.7));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.hero-offer__kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: #f0c98b;
  margin-bottom: 0.3rem;
}

.hero-offer h3 {
  color: #fff2dd;
  font-size: clamp(1.4rem, 3.8vw, 2rem);
  margin-bottom: 0.35rem;
}

.hero-offer p {
  color: rgba(255, 241, 220, 0.9);
  margin: 0;
}

.hero-offer p strong {
  color: #ffe2b0;
}

.hero-offer__btn {
  margin-top: 0.85rem;
}

.hero__card {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hero__card h3 {
  color: #fff;
  margin-bottom: 0.55rem;
  font-size: 1.6rem;
}

.hero__card p,
.hero__card li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.hero__card ul {
  margin-top: 0.85rem;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.hero__card li::before {
  content: "• ";
  color: #f4d7b3;
}

/* Layouts compartidos entre secciones */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
  align-items: start;
}

.section-heading {
  max-width: 750px;
  margin-bottom: 2rem;
}

/* Seccion Sobre nosotros */
.about {
  padding-top: 6.8rem;
}

.about__stats {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.about__stats div {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(184, 145, 103, 0.25);
  border-radius: var(--radius-md);
  padding: 0.9rem;
}

.about__stats strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
  display: block;
  color: #6f4f2f;
}

.about__stats span {
  font-size: 0.84rem;
  color: #665c52;
}

.about__images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about__images img {
  border-radius: var(--radius-lg);
  min-height: 330px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.about__images img:last-child {
  margin-top: 3rem;
}

/* Seccion Servicios */
#servicios {
  background: #000;
}

#servicios .eyebrow {
  color: #b69353;
}

#servicios h2 {
  color: #f0e6d3;
}

#servicios > .container > p {
  color: #b0a090;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.service-card {
  background: #000;
  border: 1px solid rgba(182, 147, 83, 0.3);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.service-card__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.05);
}

.service-card__body {
  padding: 1rem;
  display: grid;
  gap: 0.55rem;
}

.service-card h3 {
  font-size: 1.35rem;
  color: #f0e6d3;
}

.service-card p {
  font-size: 0.88rem;
  min-height: 3.2rem;
  color: #b0a090;
}

.service-card__price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(182, 147, 83, 0.18);
  color: #b69353;
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.84rem;
  font-weight: 600;
}

.service-card__footer {
  margin-top: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.service-card__cta {
  font-size: 0.78rem;
  padding: 0.58rem 0.9rem;
  box-shadow: none;
}

.service-card__cta:hover {
  box-shadow: 0 10px 20px rgba(138, 103, 65, 0.22);
}

.tarjetas{
background:#0f0f0f;
font-family:Arial;
color:white;
display:flex;
flex-wrap:wrap;
gap:25px;
justify-content:center;
padding:40px;
border-radius: var(--radius-lg);
}

.card{
background:#1c1c1c;
width:260px;
border-radius:15px;
overflow:hidden;
box-shadow:0 0 20px rgba(211, 211, 211, 0.637);
transition:0.3s;
}

.card:hover{
transform:scale(1.05);
}

.card img{
width:100%;
height:260px;
object-fit:cover;
}

.info{
padding:15px;
text-align:center;
}

.info h3{
display:inline-block;
padding-bottom:0.2rem;
border-bottom:2px solid #df8508;
margin-bottom:0.45rem;
}

.price{
font-size:22px;
color:#ffffff;
margin:10px 0 18px;
}

.tarjetas button{
background: linear-gradient(135deg, #ff9a1f 0%, #df6f08 100%);
border: 1px solid rgba(255, 170, 72, 0.75);
padding:12px 20px;
border-radius:10px;
cursor:pointer;
font-weight:700;
color:#ffffff;
box-shadow: 0 12px 24px rgba(223, 111, 8, 0.28);
transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.tarjetas button:hover{
transform: translateY(-2px) scale(1.03);
box-shadow: 0 18px 30px rgba(223, 111, 8, 0.34);
filter: brightness(1.08);
}

/* Seccion Horario y precios */
.business-info {
  background:
    radial-gradient(circle at 10% 15%, rgba(184, 145, 103, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(252, 247, 241, 0.92), rgba(245, 235, 223, 0.82));
}

#horario-precios .eyebrow {
  display: inline-block;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid #8a6741;
}

.business-info__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.business-card {
  background: rgba(3, 3, 3, 0.84);
  border: 1px solid rgba(0, 134, 141, 0.24);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem;
  display: grid;
  gap: 0.55rem;
}

.business-card p,
.business-card li,
.business-card span {
  color: #ffffff;
}


.business-card h3 {
  font-size: 1.6rem;
  color: #fff;
  display: inline-block;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #ff8c11;
  
}


.business-card .titulo2{

  padding-bottom:  18px;
}

.business-card__highlight {
  font-size: 1.1rem;
  color: #fbfbfb;
  font-weight: 700;
}

.business-prices {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.business-prices li {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  color: #ffffff;
  border-bottom: 2px dashed rgba(208, 27, 27, 0.527);
  padding-bottom: 0.3rem;
}

.business-prices strong {
  color: #ff8c11;
  white-space: nowrap;
}

.business-card a {
  color: #ff7a06;
  font-weight: 700;
}

/* Seccion Galeria */
.gallery {
  background:
    radial-gradient(circle at 50% 6%, rgba(255, 162, 54, 0.16), transparent 35%),
    linear-gradient(180deg, #0f0f10 0%, #050505 100%);
}

.gallery .eyebrow {
  color: #ffb660;
}

.gallery .section-heading h2 {
  color: #ffffff;
}

.gallery-slider-shell {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

.local-gallery-swiper {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 1.4rem 0 3rem;
  overflow: hidden;
}

.local-gallery-swiper .swiper-wrapper {
  display: flex;
  align-items: center;
}

.local-gallery-swiper .swiper-slide {
  opacity: 0;
  transform: scale(0.9);
  transition: transform 0.55s ease, filter 0.55s ease;
  filter: saturate(0.92) brightness(0.9);
  pointer-events: none;
}

.local-gallery-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1.28);
  z-index: 3;
  filter: saturate(1.12) brightness(1.02);
  pointer-events: auto;
}

.local-gallery-swiper .swiper-slide-prev,
.local-gallery-swiper .swiper-slide-next {
  opacity: 1;
  transform: scale(0.9);
  z-index: 2;
  filter: saturate(0.96) brightness(0.92);
  pointer-events: auto;
}

.gallery-item {
  aspect-ratio: 2 / 3;
  border-radius: 18px;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.62);
  border: none;
  background: #111;
  transition: transform 0.42s ease, box-shadow 0.42s ease, border-color 0.42s ease;
}

.local-gallery-swiper .swiper-slide-active .gallery-item {
  box-shadow: 0 30px 66px rgba(0, 0, 0, 0.72);
}

.local-gallery-swiper .swiper-slide-prev .gallery-item,
.local-gallery-swiper .swiper-slide-next .gallery-item {
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.5);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s ease;
}

.gallery-item:hover img {
  transform: scale(1.14);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 74px rgba(0, 0, 0, 0.78);
}

.gallery-item__caption {
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  bottom: 0.55rem;
  margin: 0;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  color: #fff;
  background: rgba(24, 18, 11, 0.68);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.local-gallery-swiper .swiper-button-prev,
.local-gallery-swiper .swiper-button-next {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 140, 17, 0.58);
  color: #ff8c11;
  background: rgba(0, 0, 0, 0.9);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.38);
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.local-gallery-swiper .swiper-button-prev:hover,
.local-gallery-swiper .swiper-button-next:hover {
  transform: scale(1.06);
  color: #ffb347;
  border-color: rgba(255, 179, 71, 0.75);
}

.local-gallery-swiper .swiper-button-prev::after,
.local-gallery-swiper .swiper-button-next::after {
  font-size: 16px;
  font-weight: 800;
}

/* Seccion Reserva */
.booking {
  background:
    radial-gradient(circle at 88% 20%, rgba(184, 145, 103, 0.18), transparent 42%),
    linear-gradient(180deg, #fffcf8 0%, #f4e9dd 100%);
}

.booking-steps {
  margin: 1rem 0;
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 0.45rem;
}

.booking-steps li {
  counter-increment: step;
  color: #5e544a;
  font-weight: 500;
}

.booking-steps li::before {
  content: counter(step) ". ";
  color: #6a4b2d;
  font-weight: 700;
}

.booking-copy {
  display: grid;
  align-content: start;
}

.booking-showcase {
  margin-top: 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(138, 103, 65, 0.22);
  box-shadow: var(--shadow-soft);
  min-height: 280px;
}

.booking-showcase img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.booking-showcase:hover img {
  transform: scale(1.04);
}

.booking-form,
.contact-form,
.map-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(178, 145, 109, 0.25);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  box-shadow: var(--shadow-soft);
}

.booking-form,
.contact-form,
.review-form {
  display: grid;
  gap: 0.72rem;
  padding: 1.35rem;
}

.booking-form label,
.contact-form label,
.review-form label {
  margin-top: 0.12rem;
  font-size: 0.86rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.contact-form input,
.contact-form select,
.contact-form textarea,
.review-form input,
.review-form select,
.review-form textarea {
  padding: 0.72rem 0.82rem;
}

.booking-form textarea,
.contact-form textarea,
.review-form textarea {
  min-height: 105px;
}

/* Campos y estados de formularios */
label {
  font-size: 0.82rem;
  color: #665a4f;
  font-weight: 600;
}

input,
select,
textarea,
button {
  font-family: inherit;
}

input,
select,
textarea {
  border: 1px solid rgba(141, 123, 103, 0.35);
  border-radius: 12px;
  padding: 0.68rem 0.8rem;
  background: #fffefc;
  color: #2f2c28;
  transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(138, 103, 65, 0.75);
  box-shadow: 0 0 0 4px rgba(184, 145, 103, 0.15);
}

.form-status {
  min-height: 1.4rem;
  font-size: 0.86rem;
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--error);
}

/* Seccion Opiniones */
.reviews {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(245, 236, 225, 0.38));
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) 1.2fr;
  gap: 1rem;
  align-items: start;
}

.review-form {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(178, 145, 109, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

#quickBookingForm {
  display: grid;
  gap: 0.72rem;
  padding: 1.35rem;
}

#quickBookingForm > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0;
}

#quickBookingForm label {
  margin-top: 0.12rem;
  margin-bottom: 0.25rem;
  font-size: 0.86rem;
}

#quickBookingForm input,
#quickBookingForm select,
#quickBookingForm textarea {
  padding: 0.72rem 0.82rem;
}

#quickBookingForm textarea {
  min-height: 105px;
}

/* Reserva rapida desde tarjetas: estilo integrado con la web */
.quick-booking-modal {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  overflow-y: auto;
  padding: 0.85rem;
}

.quick-booking-panel {
  border: 1px solid rgba(156, 94, 38, 0.38);
  background:
    radial-gradient(circle at 8% 8%, rgba(184, 145, 103, 0.16), transparent 40%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(246, 236, 222, 0.98));
  box-shadow: 0 34px 56px rgba(20, 14, 9, 0.34);
  max-height: calc(100dvh - 1.7rem);
  overflow-y: auto;
}

.quick-booking-header {
  border-bottom-color: rgba(156, 94, 38, 0.2);
}

.quick-booking-header h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 2.3vw, 2rem);
  color: #2f2418;
}

.quick-booking-header p {
  color: #6b5540;
}

.quick-booking-main label,
.quick-booking-main p,
#quickBookingForm label,
#quickBookingForm p {
  color: #4e3d2c;
  font-weight: 600;
}

.quick-booking-main select,
#quickBookingForm input,
#quickBookingForm select,
#quickBookingForm textarea {
  border: 1px solid rgba(191, 136, 76, 0.62);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 249, 241, 0.98), rgba(245, 232, 212, 0.96));
  color: #2e2418;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.quick-booking-main select:focus,
#quickBookingForm input:focus,
#quickBookingForm select:focus,
#quickBookingForm textarea:focus {
  outline: none;
  border-color: #ff8c11;
  box-shadow: 0 0 0 4px rgba(255, 140, 17, 0.18);
  transform: translateY(-1px);
}

.quick-booking-form-wrap #quickBookingForm {
  border: 1px solid rgba(156, 94, 38, 0.28);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 28px rgba(44, 32, 19, 0.12);
}

.quick-booking-form-wrap #quickBookingForm button[type="submit"] {
  border: 1px solid rgba(255, 170, 72, 0.75);
  border-radius: 999px;
  background: linear-gradient(135deg, #ff9a1f 0%, #df6f08 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(223, 111, 8, 0.28);
}

.quick-booking-form-wrap #quickBookingForm button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(223, 111, 8, 0.34);
}

#quickBookingWhatsapp {
  border-radius: 999px;
  border-color: rgba(191, 136, 76, 0.7);
  color: #6a4b2d;
  background: rgba(255, 255, 255, 0.86);
}

.quick-date-btn,
.quick-slot-btn {
  border: 1px solid rgba(172, 133, 92, 0.45);
  border-radius: 12px;
  background: rgba(255, 251, 245, 0.95);
  color: #5f4a34;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem;
  transition: border-color var(--transition), background var(--transition), color var(--transition), transform var(--transition);
}

.quick-date-btn:hover,
.quick-slot-btn:hover {
  border-color: #ff8c11;
  color: #4c351f;
  transform: translateY(-1px);
}

.quick-date-btn.is-active,
.quick-slot-btn.is-active {
  border-color: #df6f08;
  background: linear-gradient(135deg, #ff9a1f 0%, #df6f08 100%);
  color: #fff;
}

.quick-slot-btn.is-disabled {
  border-color: rgba(189, 180, 170, 0.5);
  background: rgba(237, 232, 226, 0.85);
  color: #a2998f;
  text-decoration: line-through;
  cursor: not-allowed;
}

.quick-slots-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  border: 1px dashed rgba(172, 133, 92, 0.45);
  background: rgba(255, 251, 245, 0.7);
  color: #6d5740;
  font-size: 0.9rem;
}

#quickBookingStatus {
  min-height: 1.4rem;
  color: #5d4936;
  font-weight: 600;
}

/* Formularios publicos: tema oscuro */
.booking-form,
.contact-form,
.review-form {
  background: #070707d8;
  border: 1px solid rgba(156, 94, 38, 0.85);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.34);
  color: #fff;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.booking-form:hover,
.contact-form:hover,
.review-form:hover {
  border-color: #ff8c11;
  box-shadow: 0 20px 38px rgba(255, 140, 17, 0.2);
  transform: translateY(-2px);
}

.booking-form label,
.contact-form label,
.review-form label,
.booking-form h2,
.contact-form h2,
.review-form h3,
.booking-form p,
.contact-form p,
.review-form p,
.booking-form .eyebrow,
.contact-form .eyebrow,
.review-form .eyebrow,
.booking-form .form-status,
.contact-form .form-status,
.review-form .form-status {
  color: #fff;
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.contact-form input,
.contact-form select,
.contact-form textarea,
.review-form input,
.review-form select,
.review-form textarea {
  background: linear-gradient(180deg, rgba(242, 229, 210, 0.98), rgba(228, 208, 180, 0.96));
  border: 1px solid rgba(191, 136, 76, 0.86);
  color: #2f2418;
}

.booking-form input:hover,
.booking-form select:hover,
.booking-form textarea:hover,
.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover,
.review-form input:hover,
.review-form select:hover,
.review-form textarea:hover {
  border-color: #ff8c11;
  background: linear-gradient(180deg, rgba(247, 236, 221, 0.98), rgba(236, 218, 194, 0.98));
  box-shadow: 0 0 0 3px rgba(255, 140, 17, 0.14);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
  border-color: #ff8c11;
  box-shadow: 0 0 0 4px rgba(255, 140, 17, 0.2);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder,
.review-form input::placeholder,
.review-form textarea::placeholder {
  color: rgba(77, 58, 39, 0.72);
}

.booking-form option,
.contact-form option,
.review-form option {
  color: #2f2418;
  background: #efe0c8;
}

.booking-form .form-status.success,
.booking-form .form-status.error,
.contact-form .form-status.success,
.contact-form .form-status.error,
.review-form .form-status.success,
.review-form .form-status.error {
  color: #fff;
}

.booking-form .btn,
.contact-form .btn,
.review-form .btn {
  margin-top: 1rem;
}

.booking-whatsapp-link {
  margin-top: 0.65rem;
  border-color: rgba(255, 140, 17, 0.55);
  color: #fff;
}

.booking-whatsapp-link:hover {
  border-color: #ff8c11;
}

#bookingForm {
  width: min(100%, 600px);
  justify-self: end;
  gap: 0.6rem;
}

#bookingForm label {
  margin-top: 0;
}

#bookingForm input,
#bookingForm select {
  min-height: 42px;
  padding: 0.46rem 0.68rem;
  border-radius: 8px;
}

#bookingForm textarea {
  min-height: 42px;
  height: 42px;
  padding: 0.46rem 0.68rem;
  border-radius: 8px;
  resize: none;
}

#bookingForm .btn {
  min-height: 42px;
  border-radius: 8px;
}

#bookingForm .form-status {
  min-height: 1.2rem;
}

.review-form h3 {
  font-size: 1.5rem;
  margin-bottom: 0.1rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.review-card {
  border: 1px solid rgba(154, 123, 86, 0.2);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.review-stars {
  color: #b38a58;
  letter-spacing: 0.2em;
  margin-bottom: 0.4rem;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.7rem;
}

.review-meta span {
  font-size: 0.78rem;
  color: #7f7264;
}

.section-heading--centered {
  text-align: center;
}

.contact-visit-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.map-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.map-contact-details {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}

.map-contact-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  color: #2f2418;
  font-weight: 600;
}

.map-contact-item svg {
  width: 18px;
  height: 18px;
  fill: #8a6741;
  flex: 0 0 auto;
}

.map-contact-item a {
  color: #2f2418;
  text-decoration: none;
}

.map-contact-item a:hover {
  text-decoration: underline;
}

.visit-photo-card {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(178, 145, 109, 0.3);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.visit-photo-card img {
  width: 100%;
  flex: 1 1 auto;
  height: auto;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.visit-photo-card figcaption {
  padding: 0.75rem 0.9rem;
  font-size: 0.88rem;
  color: #5f5348;
  background: linear-gradient(180deg, rgba(248, 242, 233, 0.98), rgba(239, 226, 208, 0.96));
}

.map-card iframe {
  width: 100%;
  flex: 1 1 auto;
  min-height: 230px;
  border: 0;
  border-radius: 14px;
  margin-top: 0.7rem;
}

.map-address {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(178, 145, 109, 0.26);
  background: linear-gradient(180deg, rgba(248, 242, 233, 0.98), rgba(239, 226, 208, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  display: grid;
  gap: 0.2rem;
  font-style: normal;
}

.map-address__label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8a6741;
}

.map-address strong {
  color: #2d241b;
  font-size: 1rem;
}

.map-address span:last-child {
  color: #5f5348;
  font-size: 0.9rem;
}

/* Footer */
.site-footer {
  padding: 2.6rem 0 2rem;
  background: linear-gradient(180deg, #2f2822, #241f1a);
  color: #f2e7d8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 1.2rem;
}

.site-footer p,
.site-footer a {
  color: rgba(242, 231, 216, 0.82);
  font-size: 0.86rem;
}

.site-footer h4 {
  margin-bottom: 0.4rem;
  font-size: 1.2rem;
}

.footer-cookie-link {
  font: inherit;
  padding: 0;
  margin: 0;
  border: 0;
  background: none;
  color: rgba(242, 231, 216, 0.82);
  text-align: left;
  cursor: pointer;
}

.footer-cookie-link:hover {
  color: #fff;
}

.socials {
  display: grid;
  gap: 0.3rem;
}

.socials a:hover {
  color: #fff;
}

/* Politica y gestor de cookies */
.cookies-policy {
  background:
    radial-gradient(circle at 85% 10%, rgba(214, 127, 36, 0.16), transparent 32%),
    linear-gradient(180deg, #111111 0%, #191612 100%);
}

.cookies-policy .eyebrow {
  color: #db9b4b;
}

.cookies-policy h2 {
  color: #f6e6cf;
}

.cookies-policy-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(214, 127, 36, 0.34);
  background: rgba(16, 13, 10, 0.86);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.32);
  padding: clamp(1rem, 3vw, 1.6rem);
  display: grid;
  gap: 0.8rem;
}

.cookies-policy-card p {
  color: #ead8bf;
}

.cookie-banner {
  position: fixed;
  z-index: 1300;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  border: 1px solid rgba(214, 127, 36, 0.44);
  border-radius: 18px;
  padding: 1rem;
  background:
    radial-gradient(circle at 14% 12%, rgba(214, 127, 36, 0.18), transparent 36%),
    linear-gradient(180deg, var(--cookie-bg), var(--cookie-bg-soft));
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.42);
  display: grid;
  gap: 0.85rem;
  color: var(--cookie-text);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__title {
  margin: 0;
  color: var(--cookie-text);
  font-size: 1.05rem;
  font-weight: 700;
}

.cookie-banner__text {
  margin: 0.2rem 0 0;
  color: var(--cookie-muted);
  font-size: 0.9rem;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-btn-outline {
  background: transparent;
  border: 1px solid rgba(214, 127, 36, 0.76);
  color: var(--cookie-text);
}

.cookie-btn-outline:hover {
  background: rgba(214, 127, 36, 0.16);
}

.cookie-btn-muted {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  color: #f8efde;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: none;
}

.cookie-modal.is-open {
  display: grid;
}

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.64);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.cookie-modal__panel {
  position: relative;
  width: min(720px, calc(100% - 2rem));
  margin: auto;
  border-radius: 20px;
  border: 1px solid rgba(214, 127, 36, 0.42);
  background:
    radial-gradient(circle at 100% 0, rgba(214, 127, 36, 0.15), transparent 36%),
    linear-gradient(180deg, #16120d 0%, #1f1913 100%);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.44);
  padding: 1.1rem;
  color: var(--cookie-text);
  display: grid;
  gap: 0.95rem;
}

.cookie-modal__panel h3 {
  font-size: clamp(1.6rem, 2vw, 2rem);
  color: #f8ebd9;
}

.cookie-modal__intro {
  color: var(--cookie-muted);
  margin: 0;
}

.cookie-modal__close {
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #f7e9d5;
  padding: 0.45rem 0.75rem;
  cursor: pointer;
}

.cookie-groups {
  display: grid;
  gap: 0.7rem;
}

.cookie-group {
  border: 1px solid rgba(214, 127, 36, 0.28);
  border-radius: 14px;
  padding: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.9rem;
  background: rgba(255, 255, 255, 0.04);
}

.cookie-group strong {
  display: block;
  color: #f9ebd8;
  font-size: 0.95rem;
}

.cookie-group small {
  color: var(--cookie-muted);
  font-size: 0.8rem;
}

.cookie-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--cookie-accent);
  cursor: pointer;
}

.cookie-group--locked {
  opacity: 0.85;
}

.cookie-group--locked input[type="checkbox"] {
  cursor: not-allowed;
}

.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

/* Botones flotantes (WhatsApp y llamada) */
.whatsapp-float,
.call-float {
  position: fixed;
  right: 1.2rem;
  z-index: 160;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(18, 13, 8, 0.25);
}

.float-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.whatsapp-float {
  bottom: 0.9rem;
  background: #1db954;
}

.call-float {
  bottom: 4.6rem;
  background: #b89167;
  display: none;
}

/* Lightbox de galeria */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(12, 9, 7, 0.9);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  display: grid;
  place-content: center;
  gap: 0.8rem;
  padding: 1rem;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(950px, 92vw);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 14px;
}

.lightbox__close {
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
}

/* Animaciones de aparicion */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================== */
/* Panel de administracion */
/* ======================== */
.admin-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 8%, rgba(184, 145, 103, 0.15), transparent 28%),
    linear-gradient(180deg, #fdf8f2 0%, #f4e9dc 100%);
}

.admin-header {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(173, 144, 110, 0.26);
  background: rgba(255, 252, 247, 0.88);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 30;
}

.admin-header__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.admin-header__row h1 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.admin-main {
  padding: 2rem 0 4rem;
  display: grid;
  gap: 1.2rem;
}

.admin-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(177, 144, 108, 0.3);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}

.admin-auth {
  display: grid;
  gap: 0.6rem;
}

.admin-auth__row,
.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.admin-auth input,
.admin-toolbar input {
  min-width: 210px;
}

.admin-status {
  min-height: 1.4rem;
  font-size: 0.86rem;
}

.admin-status.error {
  color: var(--error);
}

.admin-status.success {
  color: var(--success);
}

/* Tarjetas de resumen (estadisticas) */
.stats-grid {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.stat-card {
  border: 1px solid rgba(166, 135, 101, 0.25);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  padding: 0.8rem;
}

.stat-card h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.stat-card p {
  font-weight: 700;
  color: #5d4227;
}

/* FullCalendar */
.calendar-shell {
  margin-top: 0.8rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(166, 135, 101, 0.25);
  border-radius: 14px;
  padding: 0.8rem;
}

.fc .fc-toolbar-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
}

.fc .fc-button {
  background: #8a6741;
  border-color: #785a38;
  text-transform: capitalize;
  box-shadow: none;
}

.fc .fc-button:hover,
.fc .fc-button:focus {
  background: #6f5132;
  border-color: #6f5132;
}

.fc .fc-button-primary:not(:disabled).fc-button-active {
  background: #5d4227;
  border-color: #5d4227;
}

/* Formularios de gestion en admin */
.admin-form-grid {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.8rem;
}

.admin-form-grid textarea,
.admin-form-grid .admin-form-actions,
.admin-form-grid label[for="bookingNotes"],
.admin-form-grid label[for="serviceDescription"] {
  grid-column: span 2;
}

.admin-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.2rem;
}

.table-wrap {
  overflow-x: auto;
}

/* Listados de reservas y notificaciones */
.booking-list,
.calendar-list {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.6rem;
}

.booking-item,
.calendar-item {
  border: 1px solid rgba(150, 118, 84, 0.27);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.booking-item__left,
.calendar-item__left {
  display: grid;
  gap: 0.15rem;
}

/* Estados visuales (confirmada, cancelada, etc.) */
.badge-status {
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  font-size: 0.72rem;
  border: 1px solid rgba(147, 117, 86, 0.35);
}

.badge-status.confirmed {
  background: rgba(47, 125, 75, 0.13);
  color: #22613a;
}

.badge-status.confirmada {
  background: rgba(47, 125, 75, 0.13);
  color: #22613a;
}

.badge-status.completada {
  background: rgba(42, 109, 150, 0.13);
  color: #1f5575;
}

.badge-status.enviado {
  background: rgba(47, 125, 75, 0.13);
  color: #22613a;
}

.badge-status.fallo {
  background: rgba(164, 59, 59, 0.13);
  color: #7d2828;
}

.badge-status.omitido {
  background: rgba(138, 103, 65, 0.12);
  color: #6e502f;
}

.badge-status.cancelled {
  background: rgba(164, 59, 59, 0.13);
  color: #7d2828;
}

.badge-status.cancelada {
  background: rgba(164, 59, 59, 0.13);
  color: #7d2828;
}

.cancel-btn {
  border: 1px solid rgba(153, 48, 48, 0.35);
  color: #7b2828;
  background: #fff;
  border-radius: 999px;
  padding: 0.48rem 0.8rem;
  cursor: pointer;
  transition: var(--transition);
}

.cancel-btn:hover {
  background: rgba(164, 59, 59, 0.1);
}

/* Tabla de horarios y tablas generales */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.hours-table th,
.hours-table td {
  border-bottom: 1px solid rgba(166, 135, 101, 0.25);
  padding: 0.55rem 0.35rem;
  text-align: left;
}

.hours-table input[type="time"] {
  min-width: 110px;
}

.hours-table input[type="checkbox"] {
  transform: scale(1.05);
}

.hours-interval-cell {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-width: 240px;
}

.inline-input {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

/* Bloques sin datos */
.empty-state {
  border: 1px dashed rgba(133, 108, 79, 0.35);
  border-radius: 12px;
  padding: 0.9rem;
  color: #6b5d4f;
  background: rgba(255, 255, 255, 0.65);
}

/* Responsive: portatil mediano */
@media (max-width: 1080px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .local-gallery-swiper {
    max-width: 900px;
  }

  .local-gallery-swiper .swiper-slide-active {
    transform: scale(1.2);
  }
}

/* Responsive: tablet */
@media (max-width: 900px) {
  :root {
    --content-gutter: 1.35rem;
  }

  .hero__content,
  .split-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .business-info__grid {
    grid-template-columns: 1fr;
  }

  .about__images img:last-child {
    margin-top: 0;
  }

  .about__stats {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .contact-visit-layout {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .local-gallery-swiper {
    max-width: 100%;
    padding-inline: 0;
  }

  #bookingForm {
    width: 100%;
    max-width: 620px;
    justify-self: stretch;
  }
}

/* Responsive: movil */
@media (max-width: 760px) {
  :root {
    --content-gutter: 0.85rem;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-inline: var(--content-gutter);
  }

  .site-header .container,
  .hero .container,
  .section-shell .container,
  .site-footer .container {
    width: 100%;
    max-width: 100%;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0.75rem;
    left: 0.75rem;
    width: auto;
    background: rgba(0, 0, 0, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    padding: 0.85rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    box-shadow: var(--shadow-soft);
    max-height: min(78vh, 520px);
    overflow-y: auto;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    color: #ffffff;
    padding: 0.45rem 0.35rem;
    border-radius: 10px;
    transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease;
    transform-origin: center;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    transform: scale(1.05);
    background: rgba(255, 140, 17, 0.18);
    color: #ffd2a0;
  }

  .main-nav .btn-ghost {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: 92vh;
    padding-top: 6rem;
  }

  .section-shell {
    padding: 4.8rem 0;
  }

  .hero-offer {
    padding: 0.9rem;
    border-radius: 14px;
  }

  .hero-offer__btn {
    width: 100%;
  }

  .section-heading {
    margin-bottom: 1.5rem;
  }

  .tarjetas {
    padding: 1rem 0.35rem;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    gap: 1rem;
  }

  .card {
    width: min(100%, 320px);
    max-width: 100%;
    margin-inline: auto;
  }

  .reviews-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .about__images {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .about__images img {
    min-height: 220px;
  }

  .local-gallery-swiper {
    padding-inline: 1.1rem;
    padding-bottom: 2rem;
  }

  .local-gallery-swiper .swiper-slide-active {
    transform: scale(1);
  }

  .local-gallery-swiper .swiper-slide-prev,
  .local-gallery-swiper .swiper-slide-next {
    transform: scale(0.9);
  }

  .local-gallery-swiper .gallery-item {
    max-width: 300px;
    margin-inline: auto;
  }

  .gallery-item {
    border-radius: 12px;
  }

  .local-gallery-swiper .swiper-button-prev,
  .local-gallery-swiper .swiper-button-next {
    width: 38px;
    height: 38px;
  }

  .service-card__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .service-card__cta {
    width: 100%;
  }

  .review-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-form,
  .contact-form,
  .review-form,
  #quickBookingForm {
    padding: 1.05rem;
    gap: 0.65rem;
  }

  .booking-form input,
  .booking-form select,
  .booking-form textarea,
  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .review-form input,
  .review-form select,
  .review-form textarea,
  #quickBookingForm input,
  #quickBookingForm select,
  #quickBookingForm textarea {
    padding: 0.72rem 0.8rem;
  }

  .whatsapp-float,
  .call-float {
    width: 52px;
    height: 52px;
    font-size: 0.68rem;
  }

  .call-float {
    display: grid;
  }

  .site-footer {
    text-align: center;
  }

  .footer-cookie-link {
    text-align: center;
  }

  .cookie-banner {
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
    border-radius: 14px;
  }

  .cookie-banner .btn,
  .cookie-modal__actions .btn {
    width: 100%;
  }

  .cookie-modal__panel {
    width: min(680px, calc(100% - 1rem));
    padding: 0.9rem;
    gap: 0.8rem;
  }

  .cookie-group {
    align-items: flex-start;
  }

  .quick-booking-modal {
    padding: 0.5rem;
  }

  .quick-booking-panel {
    max-height: calc(100dvh - 1rem);
    margin: 0.5rem auto;
    border-radius: 14px;
  }

  .admin-toolbar input,
  .admin-auth input {
    min-width: 100%;
  }

  .booking-item,
  .calendar-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats-grid,
  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .admin-form-grid textarea,
  .admin-form-grid .admin-form-actions,
  .admin-form-grid label[for="bookingNotes"],
  .admin-form-grid label[for="serviceDescription"] {
    grid-column: span 1;
  }

  .calendar-shell {
    padding: 0.4rem;
  }

  .hours-interval-cell {
    min-width: 200px;
  }

  .hours-table {
    font-size: 0.82rem;
  }

  .business-prices li {
    flex-wrap: wrap;
    gap: 0.3rem;
  }

  .business-prices strong {
    width: 100%;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .main-nav {
    left: 1rem;
    right: 1rem;
    width: auto;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .works-swiper {
    width: 100%;
  }

  .local-gallery-swiper {
    padding-inline: 0.8rem;
  }

  .local-gallery-swiper .swiper-slide {
    width: 156px;
  }

  .local-gallery-swiper .swiper-slide-active {
    transform: scale(1.04);
  }

  .works-swiper .swiper-slide {
    width: min(78vw, 240px);
  }

  .works-swiper .swiper-slide img {
    height: 280px;
  }

  .works-swiper .swiper-button-prev,
  .works-swiper .swiper-button-next {
    display: none;
  }

  .map-card iframe {
    min-height: 200px;
  }

  #bookingForm input,
  #bookingForm select,
  #bookingForm textarea,
  .review-form input,
  .review-form select,
  .review-form textarea,
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
  }
}

@media (max-width: 360px) {
  .hero__text h1 {
    font-size: clamp(1.9rem, 8vw, 2.2rem);
  }

  .hero__text p,
  .section-heading p {
    font-size: 0.92rem;
  }

  .tarjetas {
    padding-inline: 0.2rem;
  }
}

/* ============================================================
   Seccion Nuestros Trabajos — Slider 3D Coverflow
   ============================================================ */
.works-slider {
  background: #000;
  overflow: hidden;
}

.works-eyebrow {
  color: #ff8c11 !important;
}

.works-heading {
  color: #fff;
}

.works-slider .section-heading h2,
.works-slider .section-heading p {
  color: #fff;
}

.works-slider .section-heading {
  text-align: center;
  margin-inline: auto;
}

.works-slider .container {
  display: grid;
  justify-items: center;
}

.works-swiper {
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
  padding-top: 1.5rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

.works-swiper .swiper-wrapper {
  align-items: center;
}

.works-swiper .swiper-slide {
  width: 280px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.7);
  position: relative;
  cursor: grab;
}

.works-swiper .swiper-slide:active {
  cursor: grabbing;
}

.works-swiper .swiper-slide img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transition: transform 0.5s ease;
  will-change: transform;
}

.works-swiper .swiper-slide-active img {
  transform: scale(1.03);
}

.works-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, transparent 100%);
  color: #fff;
  padding: 1.2rem 1rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Navegacion y paginacion del swiper */
.works-swiper .swiper-button-prev,
.works-swiper .swiper-button-next {
  color: #ff8c11;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
  transition: color 0.25s ease, transform 0.25s ease;
}

.works-swiper .swiper-button-prev:hover,
.works-swiper .swiper-button-next:hover {
  color: #ffb347;
  transform: scale(1.15);
}

.works-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
  transition: background 0.3s ease, transform 0.3s ease;
}

.works-swiper .swiper-pagination-bullet-active {
  background: #ff8c11;
  transform: scale(1.3);
}

/* Estado vacio del slider */
.works-empty-state {
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  padding: 3rem 0;
  font-size: 1rem;
}

/* ============================================================
   Panel admin — Gestion de fotos (Nuestros Trabajos)
   ============================================================ */
.gallery-upload-section {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(177, 144, 108, 0.3);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 1.2rem;
  margin-bottom: 1.2rem;
  display: grid;
  gap: 0.75rem;
}

.gallery-upload-header h2 {
  font-size: 1.3rem;
  margin-bottom: 0.15rem;
}

.gallery-upload-header p {
  font-size: 0.88rem;
  color: #665a4f;
}

.gallery-upload-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.admin-photo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.4rem;
}

.admin-photo-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(150, 118, 84, 0.25);
  background: #f5ede0;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease;
}

.admin-photo-item:hover {
  transform: translateY(-3px);
}

.admin-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.admin-photo-delete {
  position: absolute;
  top: 0.38rem;
  right: 0.38rem;
  background: rgba(160, 28, 28, 0.88);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  cursor: pointer;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
  line-height: 1;
}

.admin-photo-delete:hover {
  background: rgba(200, 30, 30, 1);
}

@media (max-width: 900px) {
  .admin-photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .works-swiper .swiper-slide {
    width: 240px;
  }

  .works-swiper .swiper-slide img {
    height: 300px;
  }

  .admin-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1440px) {
  .section-shell {
    padding: 6.8rem 0;
  }

  .hero__content {
    gap: 2.8rem;
  }

  .section-heading {
    max-width: 800px;
  }
}

@media (max-width: 1024px) {
  .section-shell {
    padding: 5.5rem 0;
  }

  .hero__content {
    gap: 1.4rem;
  }

  .hero__card {
    padding: 1.1rem;
  }

  .section-heading {
    margin-bottom: 1.6rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 5.8rem;
  }

  h2 {
    font-size: clamp(1.65rem, 6.4vw, 2.1rem);
  }

  .section-heading p,
  .hero__text p {
    font-size: 0.96rem;
  }

  .business-card,
  .booking-form,
  .contact-form,
  .review-form {
    border-radius: 14px;
  }
}

@media (max-width: 340px) {
  :root {
    --content-gutter: 0.55rem;
  }

  .section-shell {
    padding: 4.1rem 0;
  }

  .hero {
    min-height: 0;
  }

  .hero-offer,
  .hero__card {
    padding: 0.82rem;
    border-radius: 12px;
  }

  .btn {
    padding: 0.76rem 1rem;
    font-size: 0.84rem;
  }

  .gallery-item {
    min-height: 280px;
  }
}

@media (min-width: 761px) and (max-width: 1024px) {
  .hero__content {
    align-items: start;
  }

  .tarjetas {
    padding: 1.25rem;
    gap: 1rem;
  }

  .card {
    width: min(48%, 320px);
  }

  .about__images img {
    min-height: 260px;
  }

  .works-swiper {
    width: 100%;
  }
}

/* Override final: movil full width real */
@media (max-width: 768px) {
  .container {
    width: 100%;
    max-width: none;
    padding-inline: 0;
  }

  .section-shell .container,
  .hero .container,
  .site-footer .container,
  .site-header .container {
    padding-inline: 0.5rem;
  }

  .card,
  .review-card,
  .business-card,
  .map-card,
  .visit-photo-card,
  .booking-form,
  .review-form,
  .contact-form {
    width: 100%;
    max-width: none;
  }

  .tarjetas {
    width: 100%;
    padding-inline: 0;
  }

  .card {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .section-shell .container,
  .hero .container,
  .site-footer .container,
  .site-header .container {
    padding-inline: 0.35rem;
  }
}
