:root {
  --bg: #f4f5f3;
  --bg-soft: #e7ebea;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #ffffff;
  --ink: #123948;
  --ink-soft: #4f6168;
  --line: rgba(24, 36, 42, 0.12);
  --brand: #148899;
  --brand-strong: #0d4758;
  --accent: #9aa1a6;
  --shadow: 0 20px 60px rgba(23, 36, 41, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  color: var(--ink);
  overflow-wrap: break-word;
  background:
    radial-gradient(circle at top left, rgba(20, 136, 153, 0.14), transparent 32%),
    linear-gradient(180deg, #f7f8f6 0%, #eef2f1 100%);
}

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(244, 245, 243, 0.82);
  border-bottom: 1px solid rgba(24, 36, 42, 0.06);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 1rem;
  gap: 1rem;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  color: var(--ink-soft);
}

.main-nav a {
  position: relative;
  padding: 0.4rem 0;
  white-space: nowrap;
  transition: color 0.2s ease;
}

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

.main-nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
}

.main-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

/* Menú móvil con <details>/<summary> — sin JavaScript */
.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  list-style: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.6);
}

.mobile-nav summary::-webkit-details-marker { display: none; }

.mobile-nav summary:focus-visible {
  outline: 3px solid #ffd54a;
  outline-offset: 2px;
}

.hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.mobile-nav-panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem;
  width: min(86vw, 320px);
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(18, 57, 72, 0.18);
  z-index: 30;
}

.mobile-nav-panel a {
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  color: var(--ink);
  font-weight: 600;
}

.mobile-nav-panel a:hover {
  background: rgba(20, 136, 153, 0.08);
}

.mobile-nav-panel a[aria-current="page"] {
  background: rgba(20, 136, 153, 0.12);
  color: var(--brand-strong);
}

.mobile-nav-panel .mobile-cta {
  margin-top: 0.4rem;
  text-align: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 70px rgba(13, 71, 88, 0.18);
  background: #0d6f80;
}

.button:focus-visible {
  outline: 3px solid #ffd54a;
  outline-offset: 3px;
}

.button:active {
  transform: translateY(0);
}

.button-small {
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
}

.button-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
  box-shadow: none;
}

.button-ghost:hover {
  background: rgba(20, 136, 153, 0.06);
  border-color: rgba(20, 136, 153, 0.4);
}

@media (prefers-reduced-motion: reduce) {
  .button { transition: none; }
  .button:hover { transform: none; }
  html { scroll-behavior: auto; }
}

/* Skip link de accesibilidad */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--brand-strong);
  color: #fff;
  padding: 0.85rem 1.2rem;
  border-radius: 0 0 12px 0;
  font-weight: 700;
}

.skip-link:focus {
  left: 0;
  outline: 3px solid #ffd54a;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.hero,
.subhero {
  padding: 6rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2rem;
  align-items: stretch;
}

.hero-copy h1,
.subhero h1,
.section h2,
.card h3,
.room-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  overflow-wrap: normal;
  hyphens: none;
}

.hero-copy h1 {
  font-size: clamp(3.3rem, 8vw, 6.3rem);
  max-width: 10ch;
}

.subhero h1 {
  font-size: clamp(3.3rem, 8vw, 6.3rem);
}

.hero-text,
.prose p,
.card p,
.faq-item p,
.room-card p,
.location-copy p {
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 1.05rem;
}

.hero-text {
  max-width: 40rem;
  margin: 1.5rem 0 0;
}

.narrow {
  max-width: 38rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-card,
.hero-panel,
.card,
.metric-panel,
.faq-item,
.reserve-panel,
.room-card {
  border-radius: var(--radius-xl);
}

.hero-panel {
  height: 100%;
  padding: 2rem;
  background:
    linear-gradient(145deg, rgba(18, 57, 72, 0.97), rgba(13, 71, 88, 0.97)),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.04));
  color: #fff;
  box-shadow: var(--shadow);
}

.panel-title {
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.7;
}

.feature-list {
  padding-left: 1.2rem;
  margin: 1rem 0 0;
  display: grid;
  gap: 1rem;
  line-height: 1.6;
}

.trust-strip {
  padding-bottom: 1rem;
}

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

.trust-grid p {
  margin: 0;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  text-align: center;
  color: var(--ink-soft);
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.36);
}

.section-dark {
  background: linear-gradient(180deg, #0d4758 0%, #123948 100%);
  color: #edf3f5;
}

.section-dark .eyebrow,
.section-dark .card p {
  color: rgba(237, 243, 245, 0.74);
}

.section-dark p,
.section-dark .location-copy p {
  color: rgba(237, 243, 245, 0.88);
}

.section-dark .metric-panel {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.section-dark .metric-panel div {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
}

.section-dark .metric-panel strong {
  color: #fff;
}

.section-dark .metric-panel span {
  color: rgba(237, 243, 245, 0.82);
}

.section-dark .text-link {
  color: #6fd8e6;
}

.section-heading {
  max-width: 52rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.two-column h2,
.location-copy h2 {
  font-size: clamp(2.3rem, 5vw, 4.1rem);
}

.two-column {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: start;
}

.card-grid,
.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.split-highlight,
.editorial-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.highlight-panel {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.62));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.highlight-panel h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.highlight-panel p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.mini-grid,
.feature-grid,
.info-grid,
.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.booking-widget-shell {
  display: grid;
  gap: 1.5rem;
}

.booking-experience {
  background: linear-gradient(150deg, #123948, #0d4758);
  color: #f4f7f8;
}

.booking-intro {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: end;
}

.booking-intro h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 5vw, 4.1rem);
  line-height: 0.98;
  color: #fff;
}

.booking-intro p {
  color: rgba(244, 247, 248, 0.8);
  line-height: 1.7;
}

.booking-intro .eyebrow {
  color: rgba(244, 247, 248, 0.65);
}

.booking-support {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.photo-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.photo-column {
  display: grid;
  gap: 1rem;
}

.photo-frame {
  margin: 0;
  min-height: 220px;
}

.photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.photo-frame figcaption {
  margin-top: 0.65rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.photo-frame.photo-wide img {
  min-height: 320px;
}
.photo-placeholder {
  min-height: 220px;
  padding: 1.2rem;
  border-radius: var(--radius-xl);
  border: 1px dashed rgba(18, 57, 72, 0.22);
  background:
    linear-gradient(145deg, rgba(20, 136, 153, 0.08), rgba(255, 255, 255, 0.82)),
    repeating-linear-gradient(
      135deg,
      rgba(18, 57, 72, 0.04),
      rgba(18, 57, 72, 0.04) 10px,
      rgba(255, 255, 255, 0.08) 10px,
      rgba(255, 255, 255, 0.08) 20px
    );
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.photo-placeholder strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.photo-placeholder span {
  color: var(--ink-soft);
  line-height: 1.6;
}

.photo-wide {
  min-height: 320px;
}

.photo-tall {
  min-height: 430px;
}

.mini-card,
.feature-card,
.info-card,
.guide-card,
.contact-card {
  padding: 1.3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

.mini-card strong,
.feature-card strong,
.info-card strong {
  display: block;
  margin-bottom: 0.55rem;
}

.mini-card span,
.feature-card p,
.info-card p,
.guide-card p,
.contact-card p,
.editorial-band p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.card,
.room-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.room-card:not(.room-featured) {
  border-top: 3px solid var(--brand);
  background: rgba(20, 136, 153, 0.05);
}

.card h3,
.room-card h2 {
  font-size: 2rem;
  margin-bottom: 0.85rem;
}

.card-kicker {
  margin: 0 0 0.7rem;
  color: var(--accent);
  font-weight: 700;
}

.card-dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.location-block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.metric-panel {
  padding: 1.5rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.6));
  border: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.metric-panel div {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.6);
}

.metric-panel strong {
  font-size: 1.15rem;
}

.metric-panel span {
  color: var(--ink-soft);
}

.text-link {
  display: inline-block;
  margin-top: 0.25rem;
  padding-block: 0.65rem;
  color: var(--brand);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1.4rem 1.5rem;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0 0 0.6rem;
  font-family: inherit;
  font-size: 0.97rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
  overflow-wrap: normal;
  hyphens: none;
}

.faq-item p,
.faq-item > div {
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 0.97rem;
  margin: 0;
}

.faq-item a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}

.faq-item a:hover {
  color: var(--brand-strong);
}

.reserve-section {
  padding-top: 1rem;
}

.reserve-panel {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 2rem;
  padding: 2rem;
  background: linear-gradient(150deg, #123948, #0d4758);
  color: #f4f7f8;
  box-shadow: var(--shadow);
}

.reserve-panel p {
  color: rgba(244, 247, 248, 0.8);
}

.reserve-panel .info-card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.reserve-panel .info-card strong {
  color: #fff;
}

.reserve-panel .info-card p {
  color: rgba(244, 247, 248, 0.78);
}

.reserve-panel .button.button-ghost {
  border-color: rgba(255, 255, 255, 0.55) !important;
  color: #fff !important;
}

.reserve-panel .button.button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.85) !important;
  color: #fff !important;
}

.booking-form {
  display: grid;
  gap: 1rem;
}

.booking-form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 700;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.footer-grid div:last-child {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand-footer {
  margin-bottom: 0.35rem;
}

.footer-brand img {
  height: 42px;
  width: auto;
}

.inline-list {
  padding-left: 1.1rem;
  margin: 1rem 0 1.5rem;
  color: var(--ink-soft);
}

.room-featured {
  background: linear-gradient(180deg, rgba(18, 57, 72, 0.98), rgba(20, 136, 153, 0.96));
  color: #fff;
}

.room-featured p,
.room-featured .inline-list {
  color: rgba(255, 255, 255, 0.82);
}

.room-featured .text-link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
}

.contact-card {
  padding: 1.5rem;
}

.contact-card strong {
  display: block;
  margin-bottom: 0.5rem;
}

.faq-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-items: start;
}

.widget-panel {
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
  min-height: 260px;
  overflow: hidden;
}

.booking-support .info-card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.booking-support .info-card strong {
  color: #fff;
}

.booking-support .info-card p {
  color: rgba(244, 247, 248, 0.78);
}


.brand-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand) 48%, #fff 48.2%, #fff 100%);
  color: #fff;
}

.brand-band::after {
  content: "";
  position: absolute;
  right: -7rem;
  bottom: -8rem;
  width: min(40vw, 28rem);
  aspect-ratio: 1;
  background: url("./assets/logo-icon.svg") center / contain no-repeat;
  opacity: 0.12;
  transform: rotate(-8deg);
  pointer-events: none;
}

.brand-band .container {
  position: relative;
  z-index: 1;
}

.brand-band h2,
.brand-band p {
  max-width: 42rem;
}

.brand-band p {
  color: rgba(255, 255, 255, 0.86);
}

.discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: var(--brand-strong);
  font-weight: 800;
  box-shadow: 0 18px 50px rgba(18, 57, 72, 0.14);
}

.brand-watermark {
  position: relative;
  overflow: hidden;
}

.brand-watermark::before {
  content: "";
  position: absolute;
  right: -5rem;
  top: -4rem;
  width: min(36vw, 24rem);
  aspect-ratio: 1;
  background: url("./assets/logo-icon.svg") center / contain no-repeat;
  opacity: 0.055;
  pointer-events: none;
}
/* Selector de idioma */
.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.3rem 0.4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.45);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.lang-switcher a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.lang-flag {
  width: 18px;
  height: 12px;
  display: inline-block;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
}

.lang-code {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.lang-switcher a:hover {
  background: rgba(20, 136, 153, 0.08);
  color: var(--ink);
}

.lang-switcher a[aria-current="true"] {
  background: var(--brand-strong);
  color: #fff;
}

.lang-switcher .lang-name {
  display: none;
}

@media (max-width: 1080px) {
  .lang-switcher {
    display: none;
  }
  .main-nav {
    gap: 1rem;
  }
}

.mobile-lang {
  margin-top: 0.2rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--line);
}

.mobile-lang .lang-switcher {
  display: inline-flex;
}

/* Iconos sociales y OTAs en footer (pildora horizontal con icono + nombre) */
.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.7rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.75rem 0.38rem 0.55rem;
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(20, 136, 153, 0.06);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: var(--brand-strong);
  color: #fff;
  transform: translateY(-1px);
}

.social-links svg {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}

.social-name {
  white-space: nowrap;
}

/* WhatsApp flotante */
.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.1rem;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 50px rgba(37, 211, 102, 0.45);
}

.whatsapp-float:focus-visible {
  outline: 3px solid #ffd54a;
  outline-offset: 3px;
}

.whatsapp-float svg { display: block; }

@media (max-width: 640px) {
  .whatsapp-float span { display: none; }
  .whatsapp-float {
    width: 56px; height: 56px;
    padding: 0;
    align-items: center;
    justify-content: center;
  }
}

/* Mapa embebido — /ubicacion/ */
.map-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--bg-soft);
}

.map-shell iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
}

/* Página 404 */
.error-page {
  text-align: center;
  padding: 5rem 0;
}

.error-page .error-code {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(5rem, 18vw, 12rem);
  line-height: 1;
  color: var(--brand);
  margin: 0;
}

@media (max-width: 960px) {
  .main-nav,
  .reserve-cta-desktop {
    display: none;
  }

  .mobile-nav {
    display: inline-block;
  }

  .hero-grid,
  .two-column,
  .location-block,
  .reserve-panel,
  .card-grid,
  .room-grid,
  .trust-grid,
  .split-highlight,
  .editorial-band,
  .mini-grid,
  .feature-grid,
  .info-grid,
  .guide-grid,
  .contact-layout,
  .faq-columns,
  .photo-layout,
  .booking-intro,
  .booking-support {
    grid-template-columns: 1fr;
  }

  .hero,
  .subhero {
    padding-top: 4rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero-copy h1,
  .subhero h1 {
    max-width: 12ch;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .nav-shell {
    min-height: 72px;
  }

  .brand {
    max-width: 220px;
  }

  .brand img {
    height: 42px;
  }

  .hero-copy h1,
  .subhero h1 {
    font-size: 3.1rem;
  }

  .button,
  .trust-grid p,
  .metric-panel div,
  .card,
  .faq-item,
  .room-card {
    border-radius: 22px;
  }

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

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 1rem), var(--container));
  }

  .hero-copy h1,
  .subhero h1 {
    font-size: 2.6rem;
  }

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

  .page-actions .button {
    text-align: center;
  }

  .payment-list li {
    font-size: 0.92rem;
  }
}




.breadcrumbs { padding-top: 1.25rem; color: var(--ink-soft); font-size: 0.92rem; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.breadcrumbs a { color: var(--brand-strong); font-weight: 700; }

/* Fotografias en guias - figuras con credito */
.photo-figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  background: var(--bg-soft);
  position: relative;
}

.photo-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(20, 136, 153, 0.06), rgba(255, 255, 255, 0.5));
}

.photo-figure figcaption {
  padding: 0.85rem 1rem 1rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
  background: rgba(255, 255, 255, 0.78);
  border-top: 1px solid var(--line);
}

.photo-figure .photo-credit {
  display: inline-block;
  margin-top: 0.3rem;
  font-size: 0.78rem;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Data tables ─────────────────────────────────────────── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 2rem 0;
  background: var(--surface);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.data-table thead tr {
  background: var(--brand);
  color: #fff;
}

.data-table thead th {
  padding: 0.85rem 1.1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.data-table tbody tr {
  border-top: 1px solid var(--line);
  transition: background 0.15s;
}

.data-table tbody tr:hover {
  background: rgba(20, 136, 153, 0.04);
}

.data-table td {
  padding: 0.75rem 1.1rem;
  color: var(--ink);
  vertical-align: top;
}

.data-table td:first-child {
  font-weight: 500;
}

.data-table .td-yes  { color: #1a7a50; font-weight: 600; }
.data-table .td-no   { color: #b94040; font-weight: 600; }
.data-table .td-note { color: var(--ink-soft); font-size: 0.88rem; }

@media (max-width: 640px) {
  .data-table { font-size: 0.88rem; }
  .data-table td, .data-table th { padding: 0.6rem 0.75rem; }
  .data-table thead th:last-child,
  .data-table td:last-child { display: none; }
}

/* ── Prose tables ─────────────────────────────────────────── */
.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
  line-height: 1.6;
  margin: 1.75rem 0;
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.prose table thead tr {
  background: var(--brand);
  color: #fff;
}

.prose table thead th {
  padding: 0.8rem 1.1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.prose table tbody tr {
  border-top: 1px solid var(--line);
}

.prose table tbody tr:nth-child(even) {
  background: rgba(20, 136, 153, 0.03);
}

.prose table td {
  padding: 0.85rem 1.1rem;
  color: var(--ink);
  vertical-align: top;
}

.prose table caption {
  display: table-caption;
  text-align: left;
  font-size: 0.82rem;
  color: var(--ink-soft);
  padding: 0.6rem 1.1rem;
  font-style: italic;
  background: rgba(20,136,153,0.06);
  border-bottom: 1px solid var(--line);
}

/* ── Prose dl/dt/dd ────────────────────────────────────────── */
.prose dl {
  margin: 1.5rem 0;
}

.prose dt {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 1.5rem;
  line-height: 1.5;
}

.prose dd {
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 1.05rem;
  margin-left: 0;
  margin-top: 0.4rem;
  padding-left: 1rem;
  border-left: 2px solid var(--line);
}

/* ── Uniform photo grid (equal-size) ──────────────────────── */
.photo-grid-uniform {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.photo-grid-uniform .photo-frame img {
  min-height: 240px;
}

@media (min-width: 900px) {
  .photo-grid-uniform {
    grid-template-columns: repeat(4, 1fr);
  }
}

.photo-figure .photo-credit:hover {
  color: var(--brand-strong);
}

.section-heading.narrow,
.container.narrow {
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

/* Foto hero de guia: ratio amplio para banner ligero */
.guide-hero-photo {
  padding-top: 1.5rem;
  padding-bottom: 0;
}
.photo-figure-wide img {
  aspect-ratio: 16 / 9;
}

/* Widget meteorológico AEMET */
.weather-block {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.weather-block iframe {
  display: block;
  width: 100%;
  border: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.weather-eyebrow {
  margin-bottom: 0.75rem;
  opacity: 0.75;
}

/* Bay webcam - iframe con aspect-ratio para no romper layout */
.bay-webcam-section .section-heading { margin-bottom: 1.5rem; }
.webcam-frame { margin: 0; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); background: var(--bg-soft); }
.webcam-aspect { position: relative; width: 100%; aspect-ratio: 16 / 9; background: linear-gradient(135deg, rgba(20, 136, 153, 0.06), rgba(255, 255, 255, 0.5)); }
.webcam-aspect iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.webcam-frame figcaption { padding: 0.75rem 1rem; font-size: 0.85rem; color: var(--ink-soft); background: rgba(255, 255, 255, 0.78); border-top: 1px solid var(--line); }
.webcam-frame figcaption a { color: var(--brand-strong); text-decoration: underline; text-underline-offset: 2px; }
