/* =========================================================
   EDWARDS INN — STYLES.CSS LIMPIO Y CONSOLIDADO
   Versión limpia y consolidada para index.html optimizado

   Estructura:
   01. Variables y reset
   02. SVG general
   03. Header
   04. Hero
   05. Botones
   06. Servicios destacados
   07. Secciones / Welcome
   08. Habitaciones
   09. Servicios incluidos
   10. Restaurante
   11. Platos
   12. Galería
   13. Contacto
   14. WhatsApp
   15. Footer
   16. Tablet
   17. Mobile
   ========================================================= */


/* =========================================================
   01. VARIABLES Y RESET
   ========================================================= */

* {
  box-sizing: border-box;
}

:root {
  --navy: #092640;
  --navy-2: #123852;

  --terra: #ad3d22;
  --terra-2: #c45131;

  --cream: #f7f1e8;
  --cream-2: #eee4d5;

  --ink: #172c40;
  --gold: #bd7b39;

  --white: #ffffff;

  --text: #18212b;
  --muted: #626a72;
  --line: #e4dacd;
  --card: #fffaf4;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: "Montserrat", Arial, sans-serif;
}

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

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

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--terra);
  outline-offset: 3px;
}

button {
  font-family: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}


/* =========================================================
   NAVEGACIÓN — ANCLAS CON HEADER STICKY
   ========================================================= */

#inicio,
#alojamiento,
#restaurante,
#servicios,
#ubicacion,
#contacto {
  scroll-margin-top: 105px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
}

svg {
  display: block;
}


/* =========================================================
   02. SVG — REGLA BASE
   ========================================================= */

.service-icon svg,
.feature-list span svg,
.amenities svg,
.included-grid svg,
.btn-icon,
.nav-wa-icon,
.info-icon svg,
.contact-title svg,
.floating-wa svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}


/* =========================================================
   03. HEADER
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;

  background: rgba(250, 246, 239, 0.97);
  border-bottom: 1px solid var(--line);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-wrap {
  height: 88px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}


/* LOGO */

.brand {
  width: 215px;
  height: 88px;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  overflow: visible;
}

.brand img {
  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: left center;

  transform: scale(1.08);
  transform-origin: left center;
}


/* MENÚ */

.nav {
  display: flex;
  align-items: center;
  gap: 28px;

  color: #132235;
  font-size: 12px;
  font-weight: 700;
}

.nav a {
  position: relative;

  padding: 33px 0 29px;

  letter-spacing: 0.25px;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.nav a:hover {
  color: var(--terra);
}

.nav a.active::after {
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  bottom: 21px;

  height: 2px;

  border-radius: 2px;
  background: var(--terra);
}


/* WHATSAPP HEADER */

.nav .nav-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  margin-left: 5px;
  padding: 13px 23px;

  border-radius: 6px;

  background: var(--terra);
  color: var(--white);

  box-shadow: 0 3px 10px rgba(173, 61, 34, 0.16);

  transition:
    transform 0.2s ease,
    filter 0.2s ease,
    box-shadow 0.2s ease;
}

.nav .nav-wa:hover {
  color: var(--white);
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: 0 5px 14px rgba(173, 61, 34, 0.22);
}

.nav .nav-wa::after {
  display: none;
}

.nav-wa-icon {
  width: 16px;
  height: 16px;

  margin: 0;

  stroke-width: 1.7;
}


/* MENÚ MÓVIL */

.menu-toggle {
  display: none;

  border: 0;
  background: none;

  color: var(--navy);
  font-size: 27px;

  cursor: pointer;
}


/* =========================================================
   04. HERO
   ========================================================= */

.hero {
  position: relative;

  height: 570px;

  overflow: hidden;

  color: var(--white);
}

.hero-image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(4, 16, 27, 0.72) 0%,
      rgba(4, 16, 27, 0.46) 42%,
      rgba(4, 16, 27, 0.27) 72%,
      rgba(4, 16, 27, 0.22) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;

  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding-top: 0;
  padding-bottom: 0;

  transform: translateY(-5px);
}

.eyebrow {
  margin: 0 0 7px;

  color: var(--terra);

  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.eyebrow.light {
  margin-bottom: 15px;

  color: #e5b86b;

  font-size: 17px;
  font-weight: 700;
  letter-spacing: 3px;
}

.hero h1 {
  max-width: 680px;

  color: var(--white);

  font-size: 64px;
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -1.4px;

  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.16);
}

.hero-text {
  max-width: 570px;

  margin: 22px 0 24px;

  color: rgba(255, 255, 255, 0.94);

  font-size: 17px;
  line-height: 1.65;

  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.18);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}


/* =========================================================
   05. BOTONES
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 50px;
  padding: 0 27px;

  border-radius: 5px;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;

  transition:
    transform 0.2s ease,
    filter 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-terra {
  background: var(--terra);
  color: var(--white);
}

.full {
  width: 100%;
}

.btn-icon {
  width: 16px;
  height: 16px;

  margin-right: 8px;

  stroke-width: 1.8;
}


/* =========================================================
   06. SERVICIOS DESTACADOS
   ========================================================= */

.quick-services {
  background: #fffaf4;
  border-bottom: 1px solid #e4d8c9;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);

  padding: 23px 0;
}

.quick-grid > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 10px;
  align-items: center;

  padding: 0 22px;

  border-right: 1px solid #ddcfbd;
}

.quick-grid > div:last-child {
  border-right: 0;
}

.service-icon {
  grid-row: span 2;

  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #f0e4d3;
  color: var(--terra);
}

.service-icon svg {
  width: 19px;
  height: 19px;
  stroke-width: 1.7;
}

.quick-grid strong {
  font-size: 13px;
}

.quick-grid small {
  color: #62676d;
  font-size: 11px;
}


/* =========================================================
   07. SECCIONES / WELCOME
   ========================================================= */

.section {
  padding: 66px 0;
}

.welcome {
  background: #f8f2e9;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 55px;

  align-items: center;
}

.welcome-photo {
  height: 350px;

  overflow: hidden;

  border-radius: 8px;
}

.welcome-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome-copy h2 {
  margin-bottom: 12px;
  font-size: 39px;
}

.welcome-copy > p:not(.eyebrow) {
  max-width: 560px;

  font-size: 15px;
  line-height: 1.65;
}


/* ICONOS WELCOME */

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 15px;

  margin-top: 25px;

  font-size: 14px;
  font-weight: 600;
}

.feature-list div {
  display: flex;
  align-items: center;
}

.feature-list span {
  width: 35px;
  height: 35px;

  display: grid;
  place-items: center;

  flex-shrink: 0;

  margin-right: 8px;

  border-radius: 50%;

  background: #efe1cf;
  color: var(--terra);
}

.feature-list span svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.7;
}


/* TÍTULOS DE SECCIÓN */

.section-heading {
  margin-bottom: 30px;
  text-align: center;
}

.section-heading h2 {
  color: var(--navy);

  font-size: 36px;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.section-heading p {
  margin: 10px 0 0;

  color: #56616b;

  font-size: 13px;
}


/* =========================================================
   08. HABITACIONES
   ========================================================= */

.rooms {
  padding-top: 28px;
  background: #f7f0e7;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 26px;
}

.room-card {
  display: flex;
  flex-direction: column;

  overflow: hidden;

  background: var(--card);

  border: 1px solid #eadfce;
  border-radius: 10px;

  box-shadow: 0 8px 24px rgba(36, 31, 24, 0.07);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.room-card:hover {
  transform: translateY(-4px);

  border-color: #dfcdb6;

  box-shadow: 0 14px 34px rgba(36, 31, 24, 0.11);
}

.room-card > img {
  width: 100%;
  height: 225px;

  object-fit: cover;

  transition: transform 0.45s ease;
}

.room-card:hover > img {
  transform: scale(1.025);
}

.room-body {
  display: flex;
  flex-direction: column;
  flex: 1;

  padding: 17px 21px 18px;

  text-align: center;
}

.room-body h3 {
  color: var(--navy);

  font-size: 24px;
  line-height: 1.1;
  letter-spacing: 0.2px;
}

.room-body p {
  margin: 7px 0 14px;

  color: #5d6470;

  font-size: 12px;
}

.room-body p span {
  margin: 0 5px;
  color: var(--terra);
}


/* SERVICIOS DE CADA HABITACIÓN
   Icono a la izquierda + texto a la derecha */

.amenities {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;

  width: 100%;

  gap: 9px;

  margin-top: 4px;
  margin-bottom: 16px;
  padding: 15px 12px 16px;

  border-top: 1px solid #e8dccd;

  color: var(--terra);
}

.amenities .amenity-item,
.amenities > span {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;

  width: 100%;
  min-height: 24px;

  flex: 0 0 auto;

  gap: 10px;

  margin: 0;
  padding: 0;

  text-align: left;
}

.amenities .amenity-icon {
  display: block;

  width: 18px;
  height: 18px;
  min-width: 18px;
  max-width: 18px;

  flex: 0 0 18px;

  margin: 0;
  padding: 0;

  color: var(--terra);

  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.amenities .amenity-label {
  display: block;

  width: auto;
  height: auto;
  min-width: 0;

  margin: 0;
  padding: 0;

  color: #59636c;

  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.25;

  text-align: left;
  white-space: nowrap;
}

.amenities svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.7;
}

.amenities small {
  display: block;
  color: #5f6871;

  font-family: "Montserrat", Arial, sans-serif;
  font-size: 8.5px;
  font-weight: 500;
  line-height: 1.25;

  white-space: normal;
}


/* BOTÓN DE HABITACIÓN */

.room-card .btn {
  min-height: 46px;

  border-radius: 5px;

  box-shadow: 0 3px 10px rgba(173, 61, 34, 0.10);

  font-size: 11.5px;
  letter-spacing: 0.4px;
}

.room-card .btn:hover {
  box-shadow: 0 6px 15px rgba(173, 61, 34, 0.17);
}

.room-body .btn {
  margin-top: auto;
}

.fine-print {
  margin: 11px 0 0;

  color: #5e6268;

  font-size: 10px;

  text-align: center;
}


/* =========================================================
   09. SERVICIOS INCLUIDOS
   ========================================================= */

.included {
  padding: 32px 0 30px;
  background: #efe5d8;
  border-top: 1px solid rgba(180, 150, 115, 0.16);
  border-bottom: 1px solid rgba(180, 150, 115, 0.16);
  text-align: center;
}

.included .container {
  width: min(980px, 92%);
  margin: 0 auto;
}

.included-heading {
  width: 100%;
  margin: 0 auto 24px;
  text-align: center;
}

.included-heading .eyebrow {
  margin: 0 0 5px;
  color: var(--terra);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.2px;
  line-height: 1.2;
  text-align: center;
}

.included-heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.2px;
  text-align: center;
}

.included-heading > p:last-child {
  max-width: 560px;
  margin: 9px auto 0;
  color: #5d666d;
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
}

/*
   4 servicios en la primera fila
   3 servicios perfectamente centrados en la segunda.
   Usamos 12 columnas para que el centrado no dependa
   de desplazamientos con transform.
*/
.included-grid {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 10px;
  row-gap: 17px;
  align-items: start;
}

.included-item {
  grid-column: span 3;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

/* Segunda fila: 3 elementos centrados */
.included-item:nth-child(5) {
  grid-column: 2 / 5;
}

.included-item:nth-child(6) {
  grid-column: 5 / 8;
}

.included-item:nth-child(7) {
  grid-column: 8 / 11;
}

.included-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  margin: 0 0 6px;
  padding: 0;
  border-radius: 50%;
  background: #f7eee2;
  color: var(--terra);
  box-shadow: inset 0 0 0 1px rgba(173, 61, 34, 0.05);
}

.included-icon svg {
  width: 16px;
  height: 16px;
  margin: 0;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.included-name {
  display: block;
  width: auto;
  margin: 0;
  padding: 0;
  color: #4f5962;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
}

.included-item:hover .included-icon {
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(173, 61, 34, 0.08), 0 3px 8px rgba(80, 55, 32, 0.06);
}

.included-icon {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}


/* =========================================================
   10. RESTAURANTE — VERSIÓN PREMIUM
   ========================================================= */

.restaurant {
  padding: 0;
  background: #fbf7f1;
}

.restaurant-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  min-height: 470px;
  align-items: stretch;
}

/* BLOQUE DE INFORMACIÓN */

.restaurant-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 68px 56px 68px 8px;
}

.restaurant-copy .eyebrow {
  margin: 0 0 10px;
  color: var(--terra);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.4px;
}

.restaurant-copy h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 46px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.6px;
}

.restaurant-subtitle {
  margin: 0 0 18px;
  color: var(--terra);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.restaurant-description {
  max-width: 465px;
  margin: 0;
  color: #3f4b56;
  font-size: 14px;
  line-height: 1.75;
}

/* HORARIO */

.restaurant-info {
  margin: 26px 0 28px;
}

.restaurant-info-item,
.restaurant-info > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;

  display: grid;
  place-items: center;

  border-radius: 50%;
  background: #efe1cf;
  color: var(--terra);

  box-shadow: inset 0 0 0 1px rgba(173, 61, 34, 0.05);
}

.info-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.65;
}

.restaurant-info strong {
  display: block;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.25;
}

.restaurant-info small {
  display: block;
  margin-top: 3px;
  color: #6a7178;
  font-size: 11.5px;
  line-height: 1.3;
}

/* BOTÓN */

.restaurant-copy > .btn,
.restaurant-btn {
  align-self: flex-start;
  min-height: 48px;
  padding: 0 25px;
}

/* FOTOGRAFÍA */

.restaurant-photo {
  min-height: 470px;
  overflow: hidden;
}

.restaurant-photo img {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;
  object-position: center center;

  transition: transform 0.55s ease;
}

.restaurant-photo:hover img {
  transform: scale(1.018);
}


/* =========================================================
   11. PLATOS DESTACADOS
   ========================================================= */

.food-section {
  padding: 72px 0 82px;

  background: #f7f0e7;
}

.food-heading {
  margin: 0 auto 36px;

  text-align: center;
}

.food-heading .eyebrow {
  margin: 0 0 8px;

  color: var(--terra);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.3px;
}

.food-heading h2 {
  margin: 0;

  color: var(--navy);

  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -0.35px;
}

.food-heading p:last-child {
  max-width: 650px;

  margin: 10px auto 0;

  color: #5f6870;

  font-size: 12px;
  line-height: 1.5;
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 20px;
}

.food-card {
  overflow: hidden;

  background: var(--card);

  border: 1px solid rgba(173, 61, 34, 0.08);
  border-radius: 10px;

  box-shadow: 0 6px 20px rgba(31, 30, 25, 0.065);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.food-card:hover {
  transform: translateY(-5px);

  border-color: rgba(173, 61, 34, 0.16);

  box-shadow: 0 13px 30px rgba(31, 30, 25, 0.12);
}

.food-image {
  width: 100%;
  height: 210px;

  overflow: hidden;

  background: #e9dece;
}

.food-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition: transform 0.5s ease;
}

.food-card:hover .food-image img {
  transform: scale(1.045);
}

.food-body {
  min-height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 12px 12px 15px;

  text-align: center;
}

.food-body h3 {
  margin: 0;

  color: var(--navy);

  font-size: 19px;
  font-weight: 600;
  line-height: 1.15;
}


/* =========================================================
   12. GALERÍA — NUESTRA EXPERIENCIA
   ========================================================= */

.gallery {
  padding: 76px 0 82px;
  background: #fbf7f1;
}

/* ENCABEZADO */
.gallery-heading,
.gallery .section-heading {
  width: 100%;
  max-width: 760px;
  margin: 0 auto 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.gallery-heading .eyebrow,
.gallery .section-heading .eyebrow {
  width: 100%;
  margin: 0 0 9px;
  color: var(--terra);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  line-height: 1.2;
  text-align: center;
}

.gallery-heading h2,
.gallery .section-heading h2 {
  width: 100%;
  margin: 0;
  color: var(--navy);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.25px;
  text-align: center;
}

.gallery-heading > p:last-child,
.gallery .section-heading > p:last-child {
  width: 100%;
  max-width: 620px;
  margin: 11px auto 0;
  color: #626b73;
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}

/* MOSAICO */
.gallery-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  grid-template-rows: 235px 235px;
  gap: 8px;
  margin: 0 auto;
}

/* TARJETAS / IMÁGENES */
.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(173, 61, 34, 0.08);
  border-radius: 8px;
  background: #ddd;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: 0 5px 18px rgba(31, 30, 25, 0.055);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.gallery-item:hover {
  border-color: rgba(173, 61, 34, 0.18);
  box-shadow: 0 10px 26px rgba(31, 30, 25, 0.11);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    transform 0.55s ease,
    filter 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

/* DISTRIBUCIÓN */
.gallery-main {
  grid-column: 1;
  grid-row: 1 / 3;
}

.gallery-side {
  grid-column: 2 / 4;
  grid-row: 1;
}

.gallery-grid .gallery-item:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.gallery-grid .gallery-item:nth-child(4) {
  grid-column: 3;
  grid-row: 2;
}

/* OVERLAY */
.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 18px;
  background:
    linear-gradient(
      to top,
      rgba(4, 16, 27, 0.62) 0%,
      rgba(4, 16, 27, 0.20) 42%,
      rgba(4, 16, 27, 0) 72%
    );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 35px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 4px;
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.4px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* LIGHTBOX */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(3, 12, 20, 0.90);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gallery-lightbox img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 5px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.gallery-close {
  position: absolute;
  top: 20px;
  right: 25px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.gallery-close:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: rotate(90deg);
}

/* =========================================================
   13. CONTACTO / UBICACIÓN
   ========================================================= */

.contact {
  padding: 46px 0 38px;
  background: var(--navy);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr 0.95fr;
  gap: 34px;
  align-items: center;
}


/* TÍTULOS */

.contact-title {
  display: flex;
  align-items: center;
  gap: 9px;

  max-width: 340px;

  margin: 0 0 16px;

  color: #e2a552;

  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.65px;
  line-height: 1.3;

  text-align: left;
}

.contact-title svg {
  width: 17px;
  height: 17px;

  flex: 0 0 17px;

  color: #e2a552;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* BLOQUE DE UBICACIÓN */

.contact-grid > div:first-child {
  padding-right: 10px;
}

.contact-grid > div:first-child > p:not(.contact-title) {
  margin: 0 0 22px;

  color: rgba(255, 255, 255, 0.88);

  font-size: 13px;
  line-height: 1.75;
}


/* MAPA */

.map-wrap {
  width: 100%;
  height: 195px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 9px;

  background: #dfe4e8;

  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;

  border: 0;
}


/* BLOQUE DE RESERVA */

.contact-grid > div:last-child {
  padding-left: 4px;
}

.contact-grid > div:last-child .contact-title {
  max-width: 340px;
}

.contact-grid > div:last-child > p:not(.contact-title) {
  max-width: 300px;

  margin: 0 0 17px;

  color: rgba(255, 255, 255, 0.88);

  font-size: 13px;
  line-height: 1.65;
}


/* TELÉFONO */

.phone {
  display: block;

  margin: 2px 0 17px;

  color: #e7b25e;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 31px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.2px;
}


/* BOTONES */

.contact .btn {
  min-height: 47px;
  padding: 0 22px;

  border-radius: 5px;

  font-size: 11px;
  letter-spacing: 0.45px;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.contact .btn:hover {
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.18);
}

/* =========================================================
   14. WHATSAPP FLOTANTE
   ========================================================= */

.floating-wa {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 40;

  width: 58px;
  height: 58px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #20c66b;
  color: var(--white);

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.floating-wa:hover {
  transform: translateY(-3px);

  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.27);
}

.floating-wa svg {
  width: 27px;
  height: 27px;

  stroke-width: 1.8;
}


/* =========================================================
   15. FOOTER
   ========================================================= */

footer {
  background: #071b2d;
  color: #c9d0d7;

  font-size: 11px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;

  padding: 16px 0;
}


/* =========================================================
   16. TABLET — HASTA 950px
   ========================================================= */

@media (max-width: 950px) {

  /* HEADER */

  .nav {
    gap: 17px;
    font-size: 11px;
  }

  .nav .nav-wa {
    padding: 11px 13px;
  }

  .brand {
    width: 165px;
    height: 78px;
  }

  .brand img {
    transform: scale(1.04);
  }


  /* HERO */

  .hero {
    height: 520px;
  }

  .hero h1 {
    font-size: 54px;
  }


  /* SERVICIOS DESTACADOS */

  .quick-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 15px;
  }

  .quick-grid > div:nth-child(3) {
    border-right: 0;
  }

  .quick-grid > div:nth-child(4),
  .quick-grid > div:nth-child(5) {
    padding-top: 15px;
    border-top: 1px solid #ddcfbd;
  }


  /* HABITACIONES */

  .room-grid {
    gap: 18px;
  }

  .amenities {
    padding: 15px 10px 16px;
  }

  .amenities .amenity-label {
    font-size: 10.5px;
  }


  /* SERVICIOS INCLUIDOS */

  .included {
    padding: 28px 0 26px;
  }

  .included .container {
    width: min(760px, 92%);
  }

  .included-grid {
    column-gap: 8px;
    row-gap: 16px;
  }

  .included-name {
    font-size: 10px;
  }


  /* RESTAURANTE */

  .restaurant-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .restaurant-copy {
    padding: 58px 8% 50px;
  }

  .restaurant-copy h2 {
    font-size: 42px;
  }

  .restaurant-description {
    max-width: 640px;
  }

  .restaurant-photo {
    height: 400px;
    min-height: 400px;
  }


  /* PLATOS */

  .food-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }


  /* GALERÍA */

  .gallery {
    padding: 65px 0 70px;
  }

  .gallery-heading,
  .gallery .section-heading {
    margin-bottom: 30px;
  }

  .gallery-heading h2,
  .gallery .section-heading h2 {
    font-size: 37px;
  }

  .gallery-grid {
    grid-template-columns: 1.35fr 1fr;
    grid-template-rows: 210px 210px 170px;
  }

  .gallery-main {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .gallery-side {
    grid-column: 2;
    grid-row: 1;
  }

  .gallery-grid .gallery-item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .gallery-grid .gallery-item:nth-child(4) {
    grid-column: 1 / 3;
    grid-row: 3;
  }


  /* CONTACTO */

  .contact {
    padding: 40px 0 32px;
  }

  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 28px;
  }

  .contact-grid > div:last-child {
    grid-column: 1 / -1;
    padding-left: 0;
    padding-top: 4px;
  }

  .map-wrap {
    height: 195px;
  }
}


/* =========================================================
   17. MOBILE — HASTA 720px
   ========================================================= */

@media (max-width: 720px) {

  /* HEADER */

  .nav-wrap {
    height: 74px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;

    display: none;
    flex-direction: column;
    align-items: stretch;

    gap: 0;

    padding: 10px 5%;

    background: #fbf7f0;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 14px 0;

    border-bottom: 1px solid #eadfce;
  }

  .nav a.active::after {
    display: none;
  }

  .nav .nav-wa {
    margin: 8px 0;
    padding: 13px;

    text-align: center;

    border: 0;
  }

  .brand {
    width: 145px;
    height: 65px;
  }

  .brand img {
    transform: scale(1);
  }


  /* HERO */

  .hero {
    height: 570px;
  }

  .hero-content {
    justify-content: center;
    padding: 34px 5% 42px;
    transform: translateY(-2px);
  }

  .hero .eyebrow.light {
    margin-bottom: 12px;
    font-size: 14px;
    letter-spacing: 2.6px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 44px;
    line-height: 0.99;
    letter-spacing: -0.9px;
  }

  .hero-text {
    max-width: 330px;
    margin: 18px 0 21px;
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 11px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 50px;
  }


  /* SERVICIOS DESTACADOS */

  .quick-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 8px;
    row-gap: 0;
    padding: 12px 12px 15px;
  }

  .quick-grid > div {
    min-width: 0;

    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 9px;
    align-items: center;

    padding: 10px 4px;

    border-right: 0 !important;
    border-top: 0 !important;
  }

  .quick-grid > div:nth-child(5) {
    grid-column: 1 / -1;
    width: 50%;
    justify-self: center;
  }

  .service-icon {
    width: 40px;
    height: 40px;
  }

  .quick-grid strong {
    font-size: 12px;
    line-height: 1.15;
  }

  .quick-grid small {
    margin-top: 2px;
    font-size: 10px;
    line-height: 1.2;
  }


  /* WELCOME */

  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .welcome-photo {
    height: 275px;
  }

  .welcome-copy h2 {
    font-size: 33px;
  }

  .welcome-copy > p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.65;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }


  /* HABITACIONES */

  .section {
    padding: 45px 0;
  }

  .room-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .room-card > img {
    height: 225px;
  }

  .room-body {
    padding: 20px 18px 18px;
  }

  .amenities {
    gap: 8px;
    padding: 14px 10px 15px;
  }

  .amenities .amenity-item,
  .amenities > span {
    min-height: 23px;
    gap: 9px;
  }

  .amenities .amenity-icon,
  .amenities svg {
    width: 18px;
    height: 18px;

    flex-basis: 18px;
  }

  .amenities .amenity-label {
    font-size: 11px;
    white-space: nowrap;
  }


  /* SERVICIOS INCLUIDOS */

  .included {
    padding: 28px 0 26px;
  }

  .included-heading {
    margin-bottom: 22px;
  }

  .included-heading h2 {
    font-size: 21px;
  }

  .included-heading > p:last-child {
    max-width: 320px;
    font-size: 9px;
  }

  .included-grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 12px;
    row-gap: 16px;
  }

  .included-item,
  .included-item:nth-child(5),
  .included-item:nth-child(6),
  .included-item:nth-child(7) {
    grid-column: auto;
  }

  .included-item:nth-child(7) {
    grid-column: 1 / -1;
  }

  .included-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    flex-basis: 32px;
  }

  .included-icon svg {
    width: 15px;
    height: 15px;
  }

  .included-name {
    font-size: 10px;
    white-space: normal;
  }


  /* RESTAURANTE */

  .restaurant-copy {
    padding: 50px 6% 44px;
  }

  .restaurant-copy h2 {
    font-size: 36px;
  }

  .restaurant-subtitle {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .restaurant-description {
    max-width: none;
    font-size: 14px;
    line-height: 1.7;
  }

  .restaurant-info {
    margin: 24px 0 26px;
  }

  .restaurant-copy > .btn,
  .restaurant-btn {
    width: 100%;
  }

  .restaurant-photo {
    height: 300px;
    min-height: 300px;
  }


  /* PLATOS */

  .food-section {
    padding: 54px 0 60px;
  }

  .food-heading {
    margin-bottom: 25px;
  }

  .food-heading h2 {
    font-size: 31px;
  }

  .food-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .food-image {
    height: 230px;
  }


  /* GALERÍA */

  .gallery {
    padding: 55px 0 60px;
  }

  .gallery-heading,
  .gallery .section-heading {
    margin-bottom: 26px;
    padding: 0 10px;
  }

  .gallery-heading .eyebrow,
  .gallery .section-heading .eyebrow {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .gallery-heading h2,
  .gallery .section-heading h2 {
    font-size: 32px;
  }

  .gallery-heading > p:last-child,
  .gallery .section-heading > p:last-child {
    max-width: 340px;
    margin-top: 10px;
    font-size: 11px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 175px 175px 145px;

    gap: 6px;
  }

  .gallery-main {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }

  .gallery-side {
    grid-column: 1;
    grid-row: 3;
  }

  .gallery-grid .gallery-item:nth-child(3) {
    grid-column: 2;
    grid-row: 3;
  }

  .gallery-grid .gallery-item:nth-child(4) {
    display: none;
  }

  .gallery-overlay {
    display: none;
  }

  .gallery-lightbox {
    padding: 18px;
  }

  .gallery-lightbox img {
    max-width: 94vw;
    max-height: 82vh;
  }

  .gallery-close {
    top: 15px;
    right: 15px;

    width: 42px;
    height: 42px;

    font-size: 28px;
  }


  /* CONTACTO */

  .contact {
    padding: 38px 0 30px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-grid > div:first-child,
  .contact-grid > div:last-child {
    padding: 0;
  }

  .contact-grid > div:last-child {
    grid-column: auto;
  }

  .map-wrap {
    height: 230px;
  }

  .contact-title {
    max-width: 100%;
    font-size: 12px;
    letter-spacing: 0.55px;
  }

  /* ANCLAS — MOBILE */
  #inicio,
  #alojamiento,
  #restaurante,
  #servicios,
  #ubicacion,
  #contacto {
    scroll-margin-top: 88px;
  }

  .phone {
    font-size: 29px;
  }

  .contact .btn {
    width: 100%;
  }


  /* FOOTER */

  .footer-inner {
    flex-direction: column;
    gap: 5px;
  }


  /* WHATSAPP */

  .floating-wa {
    right: 18px;
    bottom: 18px;
  }
}
