/* =========================================
   layout.css · Estructura común del sitio
   Depende de variables en general.css
   ========================================= */

html,
body{
  max-width: 100%;
  overflow-x: hidden;
}

/* ---- Contenedor base ---- */
.container{
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* ---- Espaciado secciones ---- */
.section{
  padding: 3rem 0;
}
.section--tight{ padding: 1.75rem 0; }
.section--loose{ padding: 4.5rem 0; }

/* ---- Utilidades mínimas ---- */
.sr-only{
  position:absolute !important; width:1px; height:1px;
  padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}
.only-mobile{ display:none; }
@media (max-width: 900px){ .only-mobile{ display:initial; } }
.hide-mobile{ display:initial; }
@media (max-width: 900px){ .hide-mobile{ display:none; } }

/* =========================================
   HEADER + NAV · DISEÑO PARTIDO (logo fijo)
   ========================================= */

/* Header encima del hero */
.site-header--split{
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  background: transparent;
  border: 0;
  box-shadow: none;
  pointer-events: none;
}
.site-header--split > *{ pointer-events: auto; }

/* --- Círculo con logo --- */
.brand-badge{
  position: absolute;
  top: 20px; 
  left: 40px;
  background: transparent;   /* elimina el círculo rosa */
  border: none;
  border-radius: 0;
  box-shadow: var(--shadow-1);
  display: block;
  width: auto;
  height: auto;
}

/* Logo con tamaño fijo */
.brand-badge img{
  width: 180px;               /* controla aquí el tamaño del logo */
  height: auto;
  display: block;
}

/* --- Barra de navegación tipo “pastilla” --- */
.nav--split{
  position: absolute;
  top: 80px;
  right: 30px;
}
.nav--split .nav__menu{
  display: inline-flex;           /* en vez de flex -> shrink-to-fit */
  align-items: center;
  gap: .9rem;
  padding: 14px 12px 14px 8px;    /* puedes afinarlo */
  background: var(--color-primary);
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow-1);
  margin-left: auto;              /* la empuja a la derecha */
  width: auto;                    /* explícito */
  justify-content: initial;       /* ya no hace falta flex-end */
}

.nav--split .nav__menu a{
  color: var(--color-tertiary);
  font-weight: 800;
  font-size: 1.05rem;          /* antes: hereda ~1rem → más grande y legible */
  padding: .85rem 1.25rem;     /* más aire arriba/abajo y entre texto */
  letter-spacing: 0.2px;
  line-height: 1;
  text-decoration: none;
  border-radius: 999px;
  transition: background .2s ease, opacity .2s ease;
}
.nav--split .nav__menu a:hover{
  background: rgba(255,255,255,.45);
}

/* ==== Desplegable de idioma ==== */
.nav__lang {
  position: relative;
}

.nav__lang-btn {
  background: transparent;
  border: none;
  font-weight: 800;
  color: var(--color-tertiary);
  cursor: pointer;
  padding: .7rem 1.1rem;
  border-radius: 999px;
  transition: background .2s ease;
}

.nav__lang-btn:hover {
  background: rgba(255,255,255,.45);
}

/* Lista interna */
.nav__lang-menu {
  position: absolute;
  top: 110%;
  right: 0;
  background: var(--color-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
  list-style: none;
  padding: .5rem 0;
  min-width: 160px;
  z-index: 20;
}

.nav__lang-menu li a {
  display: block;
  padding: .5rem 1rem;
  color: var(--text-main);
  text-decoration: none;
}

.nav__lang-menu li a:hover {
  background: var(--color-primary);
}

.nav__lang-menu a.is-active {
  font-weight: 800;
  color: var(--color-tertiary);
  background: color-mix(in srgb, var(--color-primary) 60%, white);
  pointer-events: none;
}

/* CTA */
.nav--split .nav__cta{
  background: var(--color-tertiary);
  color: #fff !important;
  padding: .7rem 1.1rem;
  border-radius: 999px;
  box-shadow: var(--shadow-1);
}

/* Botón hamburguesa: OCULTO en desktop, visible en móvil */
.nav__toggle{
  position: absolute;
  top: 0;
  right: 0;
  display: none;          /* ✅ oculto por defecto (desktop) */
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1200px){
  .nav--split{ width: clamp(520px, 60vw, 720px); }
}

@media (max-width: 900px){
  .brand-badge{
    width: 120px;
    height: 120px;
    top: 12px; left: 12px;
  }
  .brand-badge img{
    width: 70px;              /* tamaño fijo también en móvil */
  }

  .nav--split{
    top: 20px; right: 12px;
    width: auto;
  }

  .nav--split .nav__menu{
    position: absolute;
    right: 0; left: auto;
    inset: calc(100% + 8px) 0 auto auto;
    width: min(92vw, 440px);
    border-radius: 16px;
    display: grid; gap: .5rem;
    padding: .9rem;
    transform: translateY(-12px);
    opacity: 0; pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }
  .is-open .nav__menu{
    transform: translateY(0);
    opacity: 1; pointer-events: auto;
  }

  .nav__toggle{ display: inline-block; }

  .nav__lang-menu {
    position: static;
    background: var(--color-primary);
    border: none;
    box-shadow: none;
    padding: 0;
  }
  .nav__lang-menu li a {
    padding: .6rem .8rem;
  }
}

/* Blindaje frente al header clásico */
.site-header{ background: transparent; border: 0; box-shadow: none; }
.nav{ gap: 0; padding: 0; }


/* Blindaje frente al header clásico */
.site-header{ background: transparent; border: 0; box-shadow: none; }
.nav{ gap: 0; padding: 0; }


/* ===== Botón flotante de reserva ===== */
.floating-book{
  position: fixed;
  right: clamp(14px, 2.2vw, 24px);
  bottom: calc(60px + env(safe-area-inset-bottom));
  z-index: 50;
  padding: 1rem 1.8rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  border-radius: 999px;
  border: none;
  color: #fff;
  cursor: pointer;
  background: #FF4B2A;
  box-shadow: 0 8px 20px rgba(0,0,0,.16);
  overflow: hidden;
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Estado visible */
.floating-book.is-visible{
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.floating-book::after {
  content: "";
  position: absolute;
  /* un poco más grande para que no se corte el destello en los bordes */
  inset: -20% -40%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.35) 35%,
    rgba(255,255,255,0.65) 45%,
    transparent 60%
  );
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  pointer-events: none;        /* no bloquea clics */
  will-change: transform;
}

/* 🔹 efecto hover */
.floating-book:hover {
  transform: translateY(-3px) scale(1.04);
}
.floating-book:hover::after {
  transform: translateX(120%);
}

/* 🔹 click */
.floating-book:active {
  transform: translateY(1px) scale(0.98);
}

/* 🔹 animación de pulso opcional (si quieres mantenerla) */
@keyframes pulseBtn {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,75,42, 0.4); }
  50%      { box-shadow: 0 0 0 10px rgba(255,75,42, 0); }
}

.floating-book {
  animation: pulseBtn 2.8s ease-in-out infinite;
}

@keyframes bounceIn {
  0%   { transform: translateY(40px); opacity: 0; }
  60%  { transform: translateY(-10px); opacity: 1; }
  80%  { transform: translateY(5px); }
  100% { transform: translateY(0); }
}

@keyframes gradientMove {
  0% { background-position: 0%; }
  50% { background-position: 100%; }
  100% { background-position: 0%; }
}

/* Opcional: ocultarlo en pantallas muy pequeñas si molesta */
@media (max-width: 360px){
  .floating-book{ bottom: 10px; padding: .75rem 1rem; }
}

/* ===========================
   HERO CAROUSEL 
   =========================== */

.hero--carousel{
  position: relative;
  min-height: clamp(420px, 70vh, 820px);
  isolation: isolate;               /* para el overlay */
  color: var(--text-on-dark);
  padding-top: 9rem;
}

/* Capa de slides a pantalla completa */
.hero__slides{
  position: absolute; inset: 0;
  overflow: hidden;
  --count: 4;          /* nº de imágenes (ajustable también inline) */
  --duration: 24s;     /* duración total del ciclo */
  --step: calc(var(--duration) / var(--count));
}

/* Cada slide ocupa todo y se va mostrando con cross-fade */
.hero__slides .slide{
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  animation: heroFade var(--duration) linear infinite;
  animation-delay: calc(var(--i) * var(--step));
  transform: scale(1.02);           /* sutil zoom fijo (opcional) */
}

/* Overlay para legibilidad del texto */
.hero--carousel::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.55) 100%);
  z-index: 1;
}

/* Texto centrado verticalmente */
.hero__content{
  position: relative; z-index: 2;
  display: grid; align-content: center; gap: .75rem;
  min-height: inherit;
  text-align: center;
}
.hero__content h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 900;
  letter-spacing: 1px;
  text-shadow: 0 4px 18px rgba(0,0,0,.5); /* profundidad */
}
.hero__content h2 {
  color: #F7ADC8;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.hero__actions{ margin-top: .75rem; }

/* Cross-fade: cada slide tiene una ventana de visibilidad */
@keyframes heroFade{
  0%   { opacity: 0; }
  5%   { opacity: 1; }   /* fade-in */
  45%  { opacity: 1; }   /* visible */
  50%  { opacity: 0; }   /* fade-out */
  100% { opacity: 0; }
}

.hero__content h1, .hero__content h2 {
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Accesibilidad/soporte reducido de movimiento */
@media (prefers-reduced-motion: reduce){
  .hero__slides .slide{ animation: none; opacity: 1 }
}


/* =========================================
   Booking Form (Hero)
   ========================================= */

.hero {
  position: relative;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15); /* sombra inferior difusa */
  z-index: 1; /* por si otros elementos tienen sombras también */
}

.hero .booking-form{
  margin-top: 1.5rem;
  max-width: min(900px, 92%);
  margin-inline: auto;
  background: #F8E1E9;
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  padding: 1rem 1.2rem;
}

.hero .booking-form__row{
  display: grid;
  /* 3 campos + botón; cada campo puede encoger sin solaparse */
  grid-template-columns: repeat(3, minmax(160px, 1fr)) minmax(180px, auto);
  gap: .9rem;
  align-items: center;
}

/* 🔑 Sin esto, los hijos de grid NO encogen y se pisan */
.hero .booking-form__row > *{
  min-width: 0;
  box-sizing: border-box;
}

.hero .booking-form input,
.hero .booking-form select{
  appearance: none;
  width: 100%;
  height: 48px;
  padding: .8rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
  color: var(--text-main);
  background: var(--color-white);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.hero .booking-form input:focus,
.hero .booking-form select:focus{
  outline: none;
  border-color: var(--color-tertiary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-tertiary) 20%, transparent);
}

/* 1) Borra cualquier estilo previo del botón del form */
.booking-form__submit{
  all: unset; /* resetea TODO en ese botón concreto */
}

/* 2) Reaplica el estilo genérico del sistema a ese botón, dentro del form */
.booking-form .btn.btn--primary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;

  height: 48px;            /* coherente con inputs */
  width: 100%;             /* hace de “columna” del grid */
  padding: .75rem 1.1rem;
  border-radius: var(--radius-pill);

  /* mismas variables que tu sistema de botones */
  border: 2px solid var(--color-tertiary);
  background: var(--color-tertiary);
  color: var(--color-white);

  font-weight: 800;
  letter-spacing: .2px;
  cursor: pointer;
  transition: transform .06s ease, filter .15s ease, background .2s ease;
  box-shadow: var(--shadow-1);

  /* por si algún estilo anterior dejó un gradiente */
  background-image: none;
}
.booking-form .btn.btn--primary:hover{ filter: brightness(0.97); }
.booking-form .btn.btn--primary:active{ transform: translateY(1px); }


/* Responsive fino */
@media (max-width: 900px){
  .hero .booking-form__row{
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }
  .hero .booking-form__submit{ grid-column: 1 / -1; }
}
@media (max-width: 520px){
  .hero .booking-form__row{ grid-template-columns: 1fr; }
}

/* =========================================
   FOOTER · 3 columnas + línea inferior
   ========================================= */
.site-footer{
  background: var(--color-offwhite);
  border-top: 1px solid var(--border);
  color: var(--text-main);
  padding: 1.6rem 0 1.2rem;
  font-size: var(--fs-300);
}

.footer__grid{
  display: grid;
  grid-template-columns: 1fr auto 1fr;         /* contacto | logo | CTA */
  align-items: center;
  column-gap: 1rem;
  row-gap: 1rem;
}

/* --- Contacto (izquierda) --- */
.footer__contact address{
  font-style: normal;
  line-height: 1.35;
  color: var(--text-muted);
}
.footer__contact a{
  color: var(--color-tertiary);
  font-weight: 700;
  text-decoration: none;
}
.footer__contact a:hover{ opacity:.85; }

/* --- Logo (centro) --- */
.footer__logo{
  justify-self: center;
}
.footer__logo img{
  width: 160px; height: auto; display: block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.06));
}

/* --- CTA (derecha) --- */
.footer__cta{
  justify-self: end;
}
/* === BOTÓN DESTACADO (footer__cta) === */
.footer__cta .btn {
  position: relative;
  display: inline-block;
  padding: 1rem 1.8rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  border: none;
  border-radius: 999px;
  color: #fff;
  background: #FF4B2A;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .16);
  animation: pulseBtn 2.8s ease-in-out infinite;
}

/* ✨ brillo diagonal (mismo efecto que el botón flotante) */
.footer__cta .btn::after {
  content: "";
  position: absolute;
  inset: -20% -40%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.35) 35%,
    rgba(255,255,255,0.65) 45%,
    transparent 60%
  );
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  pointer-events: none;
  will-change: transform;
}

/* 🔹 hover vistoso */
.footer__cta .btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 24px rgba(255,75,42,0.45);
  filter: brightness(1.05);
}
.footer__cta .btn:hover::after {
  transform: translateX(120%);
}

/* 🔹 click */
.footer__cta .btn:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 4px 10px rgba(255,75,42,0.4);
}

/* 🔹 animación de pulso (misma que el flotante) */
@keyframes pulseBtn {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,75,42, 0.4); }
  50%      { box-shadow: 0 0 0 10px rgba(255,75,42, 0); }
}


/* --- Línea inferior única --- */
.footer__bottom{
  grid-column: 1 / -1;                       /* ocupa todo el ancho */
  display: flex;
  align-items: center;
  justify-content: center;                    /* todo centrado */
  gap: .6rem;
  margin-top: .6rem;
  padding-top: .8rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
}
.footer__legal{
  display: inline-flex;
  gap: .6rem;
  flex-wrap: nowrap;                          /* misma línea */
}
.footer__legal a{
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
}
.footer__legal a:hover{ color: var(--color-tertiary); }
.footer__copy{ margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .footer__grid{
    grid-template-columns: 1fr 1fr;           /* contacto | CTA */
    grid-template-rows: auto auto;            /* logo en fila aparte */
    row-gap: .8rem;
  }
  .footer__logo{
    grid-column: 1 / -1;                      /* logo centrado en su fila */
    order: -1;
    margin-bottom: .2rem;
  }
  .footer__cta{ justify-self: end; }
  .footer__contact{ justify-self: start; }
  .footer__bottom{ padding-top: .7rem; }
}



/* =========================================
   BLOQUES COMUNES (hero & breadcrumbs opcional)
   ========================================= */
.hero{
  background: var(--color-offwhite);
}
.hero__inner{
  display: grid; gap: 1rem; grid-template-columns: 1.15fr .85fr;
  align-items: center; padding: 2.5rem 0;
}
@media (max-width: 900px){
  .hero__inner{ grid-template-columns: 1fr; }
}

.breadcrumbs{
  font-size: var(--fs-300); color: var(--text-muted);
}
.breadcrumbs a{ color: var(--color-tertiary); text-decoration: none; }
.breadcrumbs a:hover{ opacity:.9; }


/* =========================================
   FIX SCROLL HORIZONTAL EN MÓVIL (≤640px)
   ========================================= */
@media (max-width: 640px){

  /* Blindaje general */
  html,
  body{
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  /* --- HEADER / LOGO / HAMBURGUESA --- */

  .brand-badge{
    position: absolute;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
  }
  .brand-badge img{
    width: 120px;
    height: auto;
  }

  .nav__toggle{
    position: absolute;
    top: 1rem;
    right: 1.1rem;
    z-index: 21;
    width: 46px;
    height: 38px;
    border-radius: 999px;
    border: none;
    background: #FF4B2A;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(0,0,0,.25);
  }
  .nav__toggle span[aria-hidden="true"]{
    position: relative;
    display: block;
    width: 22px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 7px 0 #fff, 0 -7px 0 #fff;
    transition: all .25s ease;
  }
  body.is-open .nav__toggle span[aria-hidden="true"]{
    background: transparent;
    box-shadow: none;
  }
  body.is-open .nav__toggle span[aria-hidden="true"]::before,
  body.is-open .nav__toggle span[aria-hidden="true"]::after{
    content:"";
    position:absolute;
    inset:0;
    width:22px;
    height:3px;
    background:#fff;
    border-radius:3px;
  }
  body.is-open .nav__toggle span[aria-hidden="true"]::before{ transform:rotate(45deg); }
  body.is-open .nav__toggle span[aria-hidden="true"]::after{ transform:rotate(-45deg); }

  /* Bocadillo del menú: pegado a la derecha, sin salirse */
  .nav--split .nav__menu{
    position: fixed;
    inset-block-start: 0;
    inset-inline-end: 0;
    inset-inline-start: auto;
    max-width: calc(100vw - 20px);   /* nunca más ancho que la pantalla */
    width: max-content;
    min-width: 135px;

    margin: 5.2rem 10px 0 0;
    padding: .6rem .7rem .65rem;
    background: rgba(255,213,227,0.75);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,.35);

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .45rem;
    text-align: right;

    transform: translateX(120%);
    opacity: 0;
    pointer-events: none;
    z-index: 19;
    transition: transform .28s ease, opacity .2s ease;
  }
  body.is-open .nav--split .nav__menu{
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__menu > li > a{
    color: #FF4B2A;
    font-size: .95rem;
    font-weight: 600;
  }
  .nav__lang-btn{
    color:#FF4B2A;
    font-weight:600;
    font-size:.9rem;
  }
  .nav__lang-menu{
    background: rgba(255,255,255,.8);
    border-radius:.75rem;
  }
  .nav__lang-menu a{
    color:#FF4B2A;
    font-size:.9rem;
  }

  /* --- HERO A PANTALLA COMPLETA (sin scroll lateral) --- */

  .hero--carousel{
    position: relative;
    min-height: 100vh;
    padding-top: 0;
    width: 100%;
    max-width: 100%;
    color: var(--text-on-dark);
    overflow: hidden;          /* nada se puede salir del hero */
  }

  .hero__slides{
    position:absolute;
    inset:0;
    width:100%;
    max-width:100%;
    overflow:hidden;
    --count:1 !important;
  }
  .hero__slides .slide{
    position:absolute;
    inset:0;
    width:100%;
    max-width:100%;
    display:none;
    opacity:0;
    animation:none;
    transform:none !important;   /* 🔑 sin scale(1.02) en móvil */
  }
  .hero__slides .slide:nth-child(1){
    display:block;
    opacity:1;
    background-image:url("../images/feature-3.webp") !important;
    background-size:cover;
    background-position:center;
  }

  .hero--carousel::after{
    content:"";
    position:absolute;
    inset:auto 0 0 0;
    height:55%;
    background:linear-gradient(to top, rgba(0,0,0,.55), transparent);
    pointer-events:none;
    z-index:1;
  }

  .hero__content{
    position:relative;
    min-height:100vh;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    padding:11rem 1.4rem 2rem;
    text-align:center;
    box-sizing:border-box;
  }
  .hero__content > *{
    position:relative;
    z-index:2;
  }

  .hero__content h1{
    margin-top:.3rem;
    font-size:2.35rem;
    line-height:1.28;
    letter-spacing:1.3px;
    word-spacing:12px;
    text-transform:uppercase;
    color:#fff;
    text-shadow:
      0 0 8px rgba(0,0,0,0.45),
      0 2px 12px rgba(0,0,0,0.35);
  }
  .hero__content h2{
    display:none !important;
  }

  /* --- FORMULARIO HERO --- */

  .hero .booking-form{
    margin-top:10rem;
    max-width:calc(100% - 2rem);
    background:rgba(255,255,255,0.75); /* más transparente */
    backdrop-filter:blur(6px);
    border-radius:18px;
    padding:1rem 1rem .9rem;
    box-shadow:0 16px 36px rgba(0,0,0,.35);
  }

  .hero .booking-form__row{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    grid-template-areas:
      "checkin checkout"
      "guests  guests"
      "submit  submit";
    column-gap:.7rem;
    row-gap:.6rem;
    align-items:center;
  }

  .hero .booking-form input[name="checkin"]{ grid-area:checkin; }
  .hero .booking-form input[name="checkout"]{ grid-area:checkout; }
  .hero .booking-form select[name="adults"]{ grid-area:guests; }

  .hero .booking-form input,
  .hero .booking-form select{
    width:100%;
    border-radius:11px;
    border:1px solid rgba(0,0,0,.08);
    padding:.55rem .75rem;
    font-size:.9rem;
    box-sizing:border-box;
  }

  .hero .booking-form__submit{
    grid-area:submit;
    width:100%;
    border-radius:999px;
    padding:.8rem 1rem;
    font-size:.95rem;
    font-weight:800;
  }
}
