:root {
  --olive: #5f6b2f;
  --olive-dark: #3f471f;
  --cream: #cec7c5;
  --paper: #d8d0cc;
  --soft: #e7e0dc;
  --max: 1120px;
  --bs-body-font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: clamp(88px, 14vw, 120px);
}

html.reduce-motion {
  scroll-behavior: auto;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10000;
  background: var(--cream);
  color: var(--olive-dark);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
  outline: 2px solid var(--cream);
  outline-offset: 3px;
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 3px;
}

footer :focus-visible,
.panel :focus-visible {
  outline-color: var(--olive);
}

.hero-mini-logo {
  display: inline-block;
  font-weight: 900;
  color: var(--cream);
  transition: opacity 0.2s;
}

.hero-mini-logo:hover {
  opacity: 0.85;
}

body {
  font-family: var(--bs-body-font-family);
  background: var(--olive);
  color: var(--cream);
  overflow-x: hidden;
}

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

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

/* Hero */
.hero {
  position: relative;
  min-height: 86vh;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--cream);
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.35));
}

.hero-top {
  position: absolute;
  top: 26px;
  left: 32px;
  right: 32px;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 20px;
}

.hero-mini-logo img {
  height: 70px;
  width: auto;
}

.reserve-top {
  border: 1px solid var(--cream);
  color: var(--cream);
  padding: 10px 18px;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: 0.2s;
}

.reserve-top:hover,
.reserve-top:focus-visible {
  background: var(--cream);
  color: #111;
}

.lang {
  justify-self: end;
  display: flex;
  gap: 10px;
  align-items: center;
}

.lang button {
  background: transparent;
  border: 0;
  color: var(--cream);
  font-weight: 800;
  cursor: pointer;
  opacity: 0.7;
  font-size: 14px;
}

.lang button:hover,
.lang button:focus-visible {
  opacity: 1;
}

.lang button.active {
  opacity: 1;
  text-decoration: underline;
}

.menu-toggle {
  background: none;
  border: 0;
  color: var(--cream);
  cursor: pointer;
  margin-left: 10px;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle-icon {
  position: relative;
  width: 22px;
  height: 16px;
  display: block;
}

.menu-toggle-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}

.menu-toggle-bar:nth-child(1) { top: 0; }
.menu-toggle-bar:nth-child(2) { top: 7px; }
.menu-toggle-bar:nth-child(3) { top: 14px; }

.menu-toggle.is-open .menu-toggle-bar:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.menu-toggle.is-open .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open .menu-toggle-bar:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 36px));
  text-align: center;
  padding: 90px 0 40px;
}

.hero-logo {
  display: none;
}

/* Editorial */
.editorial {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 80px 0 40px;
}

.phrase {
  max-width: 1000px;
  margin: 90px auto;
  text-align: center;
  color: var(--cream);
  padding: 20px 0;
}

.phrase-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0 0 30px;
}

.phrase-text {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(22px, 2vw, 36px);
  line-height: 1.45;
  font-weight: 400;
}

/* Media */
.media-row {
  position: relative;
  min-height: 190px;
  margin: 28px 0 54px;
}

.media-box {
  width: 320px;
  height: 190px;
  background: rgba(95, 107, 47, 0.08);
  border: 1px solid rgba(95, 107, 47, 0.28);
  overflow: hidden;
  border-radius: 28px;
}

.media-box img {
  transition: transform 0.8s ease;
}

.media-box:hover img {
  transform: scale(1.03);
}

.media-box img,
.media-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-center {
  margin: 0 auto;
}

.media-left {
  margin-left: 9%;
}

.media-right {
  margin-left: auto;
  margin-right: 8%;
}

.media-large {
  width: 620px;
  max-width: 78%;
  height: 310px;
  margin: 0 auto;
}

.media-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
  margin: 38px 0 56px;
}

.media-pair .media-box {
  width: 100%;
  height: 210px;
}

/* Quick links */
.quick-links {
  text-align: center;
  margin: 28px auto 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  max-width: var(--max);
}

.quick-links a {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--cream);
  transition: opacity 0.25s ease, transform 0.25s ease;
  padding: 4px 0;
}

.quick-links a:hover,
.quick-links a:focus-visible {
  opacity: 0.75;
  color: var(--cream);
  transform: translateX(4px);
}

.quick-links a:active {
  opacity: 0.6;
  transform: translateX(2px);
}

/* Contact */
.contact-section {
  background: var(--olive);
  padding: 44px 0 86px;
}

.reserve-section {
  padding-bottom: 44px;
}

.contact-section#contacto {
  padding-top: 0;
}

#reserva,
#contacto {
  scroll-margin-top: clamp(88px, 14vw, 120px);
}

.panel-reserve {
  padding-bottom: 26px;
}

.reserve-iframe-wrap {
  margin-top: 12px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(95, 107, 47, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  line-height: 0;
  position: relative;
}

.reserve-iframe-wrap.is-loading {
  min-height: 420px;
}

.reserve-iframe-wrap.is-loading::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #f5f2ef 0%, #ebe4df 50%, #f5f2ef 100%);
  background-size: 200% 100%;
  animation: reserve-shimmer 1.15s ease-in-out infinite;
  pointer-events: none;
}

@keyframes reserve-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.reserve-iframe-wrap iframe,
.reserve-iframe {
  display: block;
  width: 100%;
  min-height: 550px;
  border: 0;
  background: #fff;
  overflow: hidden;
}

.reserve-iframe-wrap.is-ready iframe {
  position: relative;
  z-index: 2;
}

.panel-reserve .panel p:last-of-type {
  margin-bottom: 16px;
}

/* FAQ — contenido extractable para motores IA */
.faq-section {
  background: var(--cream);
  padding: 56px 0 64px;
  border-top: 1px solid rgba(95, 107, 47, 0.12);
}

.faq-wrap {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.entity-summary {
  max-width: 72ch;
  margin: 0 auto 28px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--olive);
  text-align: center;
}

.faq-heading {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.05;
  color: var(--olive);
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 18px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(231, 224, 220, 0.55);
  border: 1px solid rgba(95, 107, 47, 0.16);
  border-radius: 18px;
  padding: 18px 22px;
}

.faq-question {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.35;
  color: var(--olive);
}

.faq-answer {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(95, 107, 47, 0.92);
}

.contact-wrap {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.panel {
  background: rgba(231, 224, 220, 0.92);
  border: 1px solid rgba(95, 107, 47, 0.22);
  border-radius: 28px;
  padding: 30px;
  color: var(--olive);
  height: 100%;
}

.panel h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 0.95;
  color: var(--olive);
}

.panel p,
.panel label,
.panel strong,
.panel a {
  line-height: 1.65;
  margin: 0 0 20px;
  color: var(--olive);
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

label {
  font-size: 14px;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(95, 107, 47, 0.28);
  background: #eee8e4;
  color: var(--olive);
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(95, 107, 47, 0.18);
}

input.is-invalid,
textarea.is-invalid,
select.is-invalid {
  border-color: #b54a4a;
  box-shadow: 0 0 0 3px rgba(181, 74, 74, 0.15);
}

.send {
  border: 0;
  background: var(--olive);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  min-height: 48px;
  min-width: 180px;
  transition: background 0.2s, opacity 0.2s;
}

.send:hover:not(:disabled) {
  background: var(--olive-dark);
  color: var(--cream);
}

.send:disabled,
.send.is-loading {
  opacity: 0.72;
  cursor: wait;
}

.contact-alert {
  margin-bottom: 20px;
}

.contact-alert[hidden] {
  display: none !important;
}

.contact-recaptcha-note {
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 11px;
  line-height: 1.55;
  color: rgba(63, 71, 31, 0.65);
}

.contact-recaptcha-note a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.grecaptcha-badge {
  visibility: hidden;
}

.info-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.info-link:hover,
.info-link:focus-visible {
  opacity: 0.8;
}

.info-map-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(95, 107, 47, 0.35);
  background: rgba(95, 107, 47, 0.08);
  color: var(--olive);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}

.info-map-btn:hover,
.info-map-btn:focus-visible {
  background: rgba(95, 107, 47, 0.16);
  color: var(--olive);
}

/* Footer */
footer {
  background: var(--paper);
  color: var(--olive);
  padding: 56px 0 0;
}

.footer-logo {
  width: 320px;
  max-width: 100%;
  margin-bottom: 20px;
}

.footer p,
.footer li,
.footer-address {
  line-height: 1.72;
  color: var(--olive);
}

.footer-address {
  font-style: normal;
  margin: 0;
}

.footer-address a {
  color: inherit;
  text-decoration: none;
}

.footer-address a:hover {
  text-decoration: underline;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer h4 {
  margin: 0 0 14px;
  color: var(--olive);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 15px;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.socials a {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(95, 107, 47, 0.25);
  background: rgba(95, 107, 47, 0.08);
  color: var(--olive);
  font-weight: 900;
}

.site-credit-wrap {
  background: var(--cream);
  text-align: center;
  padding: 24px 12px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin: 0 0 14px;
}

.footer-legal a {
  color: var(--olive);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.footer-legal a:hover {
  color: var(--olive-dark);
  text-decoration: underline;
}

.site-credit {
  margin: 0;
  color: var(--olive);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-credit a {
  color: var(--olive);
}

/* Floating actions */
.floating-actions {
  position: fixed;
  right: max(18px, env(safe-area-inset-right, 0px));
  bottom: max(18px, env(safe-area-inset-bottom, 0px));
  z-index: 1040;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none;
}

.floating-actions > * {
  pointer-events: auto;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  font-weight: 900;
  flex-shrink: 0;
}

.wa {
  background: #25d366;
  color: #fff;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.wa:hover,
.wa:focus-visible {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.wa:active {
  transform: scale(0.96);
}

.wa-icon {
  width: 28px;
  height: 28px;
  display: block;
}

.top {
  background: var(--olive);
  color: var(--cream);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateY(8px);
}

.top.show {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.top[hidden] {
  display: flex !important;
}

/* Sticky CTA — mobile/tablet */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 98;
  padding: 10px 16px max(10px, env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, transparent, rgba(17, 17, 17, 0.55));
  pointer-events: none;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  transform: none;
}

.sticky-cta-btn {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(420px, 100%);
  margin: 0 auto;
  min-height: 48px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--olive-dark);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.15s ease;
}

.sticky-cta-btn:active {
  transform: scale(0.98);
}

@media (min-width: 801px) {
  .sticky-cta {
    display: none !important;
  }
}

/* Side menu */
.offcanvas-backdrop.show {
  opacity: 0.55;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .sticky-cta {
  opacity: 0 !important;
  pointer-events: none;
}

.offcanvas-lapepa {
  background: var(--olive);
  width: min(420px, 100vw) !important;
  border-left: 1px solid rgba(206, 199, 197, 0.12);
  display: flex;
  flex-direction: column;
}

.side-menu-header {
  padding: 24px 24px 8px;
  border-bottom: 0;
  align-items: center;
  justify-content: space-between;
}

.side-menu-logo-link {
  display: inline-flex;
  opacity: 0.95;
  transition: opacity 0.2s;
}

.side-menu-logo-link:hover,
.side-menu-logo-link:focus-visible {
  opacity: 1;
}

.side-menu-logo {
  height: 56px;
  width: auto;
}

.side-menu-close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(206, 199, 197, 0.35);
  border-radius: 999px;
  background: transparent;
  color: var(--cream);
  font-size: 28px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.side-menu-close:hover,
.side-menu-close:focus-visible {
  background: rgba(206, 199, 197, 0.12);
  border-color: var(--cream);
}

.side-menu-body {
  padding: 16px 28px 24px;
  flex: 1 1 auto;
  overflow-y: auto;
}

.side-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.side-menu-link {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 8px 4px;
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 6.5vw, 32px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(206, 199, 197, 0.1);
  opacity: 1;
  transform: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

@media (min-width: 801px) {
  .side-menu-link {
    font-size: 24px;
    min-height: 44px;
    padding: 6px 4px;
    white-space: nowrap;
  }

  .quick-links a {
    font-size: clamp(28px, 3.2vw, 42px);
    white-space: nowrap;
  }
}

.offcanvas-lapepa.show .side-menu-link {
  animation: sideMenuItemIn 0.3s ease both;
  animation-delay: calc(0.03s * var(--menu-i, 0) + 0.04s);
}

@keyframes sideMenuItemIn {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.side-menu-link:hover,
.side-menu-link:focus-visible {
  color: var(--cream);
  transform: translateX(4px);
}

.side-menu-link:active {
  opacity: 0.75;
}

.side-menu-footer {
  padding: 16px 24px max(20px, env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(206, 199, 197, 0.12);
}

.side-menu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  width: 100%;
  border-radius: 999px;
  background: var(--cream);
  color: var(--olive-dark);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.15s ease, background 0.2s;
}

.side-menu-cta:hover,
.side-menu-cta:focus-visible {
  background: #fff;
  color: var(--olive-dark);
  transform: translateY(-1px);
}

.side-menu-cta:active {
  transform: scale(0.98);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

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

/* Alert feedback */
.alert-lapepa {
  background: rgba(231, 224, 220, 0.95);
  border: 1px solid rgba(95, 107, 47, 0.22);
  color: var(--olive);
  border-radius: 16px;
  padding: 14px 16px;
}

.alert-lapepa-success {
  border-color: rgba(95, 107, 47, 0.45);
}

.alert-lapepa-error {
  border-color: rgba(181, 74, 74, 0.45);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .quick-links a:hover,
  .quick-links a:focus-visible {
    transform: none;
  }

  .media-box:hover img {
    transform: none;
  }

  .offcanvas-lapepa.show .side-menu-link {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .menu-toggle-bar {
    transition: none;
  }
}

/* Responsive — tablet & mobile */
@media (max-width: 800px) {
  .hero-top {
    top: 16px;
    left: 16px;
    right: 16px;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 12px 10px;
    text-align: left;
    justify-items: stretch;
  }

  .hero-mini-logo {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .hero-mini-logo img {
    height: 52px;
  }

  .lang {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    gap: 6px;
  }

  .reserve-top {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
  }

  .lang button {
    min-width: 40px;
    min-height: 44px;
    font-size: 13px;
  }

  .menu-toggle {
    min-width: 44px;
    min-height: 44px;
    margin-left: 4px;
  }

  .side-menu-body {
    padding: 12px 20px 18px;
  }

  .side-menu-link {
    font-size: clamp(24px, 6.5vw, 32px);
    min-height: 46px;
    padding: 6px 2px;
  }

  .side-menu-header {
    padding: 18px 18px 6px;
  }

  .side-menu-logo {
    height: 50px;
  }

  .side-menu-footer {
    padding: 16px 20px max(18px, env(safe-area-inset-bottom, 0px));
  }

  .side-menu-cta {
    min-height: 48px;
    font-size: 14px;
  }

  .hero {
    min-height: 72vh;
  }

  .hero-content {
    padding: 70px 0 32px;
  }

  .editorial {
    width: calc(100% - 32px);
    padding: 48px 0 24px;
  }

  .phrase {
    margin: 48px auto;
    padding: 12px 0;
  }

  .phrase-title {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1;
    margin-bottom: 20px;
    hyphens: auto;
    overflow-wrap: break-word;
  }

  .phrase-text {
    font-size: clamp(18px, 4.5vw, 22px);
    line-height: 1.5;
    padding: 0 4px;
  }

  .media-row {
    min-height: auto;
    margin: 20px 0 28px;
  }

  .media-box,
  .media-large {
    width: 100%;
    max-width: 100%;
    height: 220px;
    margin-left: auto !important;
    margin-right: auto !important;
    border-radius: 20px;
  }

  .media-left,
  .media-right,
  .media-center {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .media-pair {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 28px 0 40px;
  }

  .media-pair .media-box {
    height: 200px;
  }

  .quick-links {
    margin: 20px auto 48px;
    gap: 4px;
    padding: 0 8px;
  }

  .quick-links a {
    font-size: clamp(26px, 7vw, 36px);
    line-height: 1.15;
    max-width: 100%;
    overflow-wrap: break-word;
    transform: none;
    padding: 3px 0;
  }

  .quick-links a:hover {
    transform: none;
  }

  .contact-section {
    padding: 32px 0 calc(120px + env(safe-area-inset-bottom, 0px));
  }

  .reserve-iframe-wrap.is-loading {
    min-height: 360px;
  }

  .reserve-iframe-wrap {
    border-radius: 16px;
  }

  .contact-wrap {
    width: calc(100% - 32px);
  }

  .panel {
    padding: 22px;
    border-radius: 20px;
  }

  .panel h2 {
    font-size: 32px;
  }

  input,
  textarea,
  select {
    font-size: 16px;
  }

  footer {
    padding: 40px 0 0;
    overflow-x: clip;
  }

  footer .container-xl {
    padding-left: 18px;
    padding-right: 18px;
    max-width: 100%;
    overflow-x: clip;
  }

  footer .row.footer {
    --bs-gutter-x: 1.25rem;
    margin-left: 0;
    margin-right: 0;
  }

  .footer-logo {
    width: min(240px, 70vw);
  }

  .floating-actions {
    right: max(16px, env(safe-area-inset-right, 0px));
    bottom: max(16px, env(safe-area-inset-bottom, 0px));
  }

  body.sticky-visible .floating-actions {
    bottom: max(76px, calc(16px + env(safe-area-inset-bottom, 0px)));
  }

  body.menu-open .floating-actions {
    opacity: 0;
    pointer-events: none;
  }

  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .wa-icon {
    width: 26px;
    height: 26px;
  }
}

/* Small phones */
@media (max-width: 380px) {
  .hero-mini-logo img {
    height: 44px;
  }

  .lang button {
    min-width: 36px;
    font-size: 12px;
  }

  .phrase-title {
    font-size: clamp(30px, 9vw, 38px);
  }

  .quick-links a {
    font-size: clamp(24px, 6.5vw, 32px);
  }
}
