@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@500;600&display=swap");

:root {
  --terracotta: #b35f31;
  --terracotta-dark: #8e4525;
  --terracotta-soft: #c47b54;
  --cream: #f5eee8;
  --cream-deep: #e9ddd4;
  --paper: #fffdfb;
  --ink: #29231f;
  --muted: #81766f;
  --line: rgba(70, 49, 38, 0.15);
  --shadow: 0 18px 48px rgba(58, 35, 23, 0.17);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button,
select,
input[type="date"] {
  cursor: pointer;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  padding: 128px 5vw 190px;
  display: flex;
  align-items: center;
  background:
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=2000&q=90")
    center 58% / cover no-repeat;
  isolation: isolate;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(31, 22, 17, 0.76) 0%,
      rgba(31, 22, 17, 0.42) 48%,
      rgba(31, 22, 17, 0.13) 78%
    ),
    linear-gradient(
      0deg,
      rgba(31, 22, 17, 0.26),
      transparent 48%
    );
}

/* =========================================================
   NAVBAR — VERSION ORDINATEUR
   ========================================================= */

.navbar {
  position: absolute;
  z-index: 20;
  top: 20px;
  left: 3.2vw;
  right: 3.2vw;

  min-height: 72px;
  padding: 8px 12px 8px 22px;

  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) max-content;
  align-items: center;
  column-gap: clamp(18px, 2.4vw, 42px);

  color: #fff;
  background: rgba(179, 95, 49, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(53, 30, 19, 0.2);
  backdrop-filter: blur(12px);
}

.brand {
  min-width: 0;
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;

  color: #fff;
  text-decoration: none;
  white-space: nowrap;

  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}

/*
  Structure attendue :

  <span class="brand__mark">
    <img src="assets/ton-logo.png" alt="">
  </span>
*/

.brand__mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;

  display: grid;
  place-items: center;
  overflow: hidden;

  background: #fff;
  border-radius: 50%;
}

/* Fonctionne avec une image placée dans le span */
.brand__mark img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;

  /* Change uniquement cette valeur si la cigale est trop petite */
  transform: scale(1.8);
  transform-origin: center;
}

/*
  Fallback : si ton ancien HTML contient encore directement
  <img class="brand__mark" ...>
*/
img.brand__mark {
  padding: 0;
  object-fit: contain;
  transform: scale(1);
}

.main-nav {
  position: static;
  min-width: 0;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.5vw, 46px);

  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.main-nav a {
  position: relative;
  padding: 8px 0;

  color: rgba(255, 255, 255, 0.94);
  text-decoration: none;
  white-space: nowrap;

  font-size: clamp(0.76rem, 0.85vw, 0.88rem);
  font-weight: 500;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;

  height: 1px;
  background: rgba(255, 255, 255, 0.82);

  opacity: 0;
  transition: opacity 130ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  opacity: 1;
}

.nav-cta {
  justify-self: end;

  min-height: 46px;
  padding: 12px 22px;

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

  color: #fff;
  background: #252220;
  border-radius: 12px;
  text-decoration: none;
  white-space: nowrap;

  font-size: 0.86rem;
  font-weight: 700;

  transition: background-color 130ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: #111;
}

.menu-toggle {
  display: none;
}

/* =========================================================
   CONTENU DU HERO
   ========================================================= */

.hero__content {
  width: min(760px, 100%);
  color: #fff;
}

.eyebrow {
  margin: 0 0 18px;

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

  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: var(--terracotta);
}

.hero h1,
.section h2,
.experience h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.2rem, 6.3vw, 6.6rem);
  line-height: 0.96;
  text-wrap: balance;
}

.hero__text {
  max-width: 640px;
  margin: 27px 0 0;

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

  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.65;
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  min-height: 52px;
  padding: 14px 22px;

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

  border-radius: 13px;
  text-decoration: none;

  font-size: 0.91rem;
  font-weight: 700;

  transition:
    background-color 130ms ease,
    border-color 130ms ease,
    color 130ms ease;
}

.button--primary {
  color: #fff;
  background: var(--terracotta);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--terracotta-dark);
}

.button--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(7px);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.button--light {
  color: var(--terracotta-dark);
  background: #fff;
}

.button--light:hover,
.button--light:focus-visible {
  background: #f3eae4;
}

.scroll-hint {
  position: absolute;
  right: 4vw;
  bottom: 112px;

  width: 46px;
  height: 66px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
}

.scroll-hint span {
  width: 8px;
  height: 8px;

  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;

  opacity: 0.85;
  transform: rotate(45deg) translate(-3px, -3px);
}

/* =========================================================
   CARTE DE RÉSERVATION
   ========================================================= */

.booking-card {
  position: absolute;
  z-index: 5;
  left: 3.2vw;
  right: 3.2vw;
  bottom: -76px;

  min-height: 172px;
  padding: 25px 32px;

  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) minmax(0, 2.2fr);
  align-items: center;
  gap: 35px;

  background: rgba(255, 253, 251, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.booking-card__heading p {
  margin: 0 0 6px;

  color: var(--muted);

  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-card__heading h2 {
  margin: 0;

  color: var(--terracotta);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.3vw, 2.35rem);
  line-height: 1.05;
  font-weight: 500;
}

.booking-form {
  min-width: 0;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: 22px 0;
}

.booking-field {
  min-width: 0;
  padding: 0 27px;

  display: grid;
  gap: 8px;

  border-left: 1px solid var(--line);
}

.booking-field span {
  color: var(--muted);

  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  min-width: 0;
  padding: 4px 0;

  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;

  font-size: 0.94rem;
  font-weight: 600;
}

.booking-field textarea {
  min-height: 76px;
  line-height: 1.5;
  resize: vertical;
  cursor: text;
}

.booking-field--message {
  grid-column: 1 / 3;
}

.search-button {
  grid-column: 3;
}
.search-button {
  min-height: 48px;
  margin-left: 24px;
  padding: 12px 18px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  color: #fff;
  background: var(--terracotta);
  border: 0;
  border-radius: 11px;

  font-weight: 700;

  transition: background-color 130ms ease;
}

.search-button:hover,
.search-button:focus-visible {
  background: var(--terracotta-dark);
}

.search-button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

/* =========================================================
   STATISTIQUES
   ========================================================= */

main {
  width: 100%;
}

.quick-stats {
  padding: 116px 3vw 32px;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;

  background: var(--cream);
}

.stat-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;

  padding: 30px;

  display: flex;
  align-items: flex-end;

  color: #fff;
  background-position: center;
  background-size: cover;
  border-radius: 24px;

  isolation: isolate;
}

.stat-card--pool {
  background-image:
    url("https://images.unsplash.com/photo-1572331165267-854da2b10ccc?auto=format&fit=crop&w=1000&q=88");
}

.stat-card--guests {
  background-image:
    url("https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?auto=format&fit=crop&w=1000&q=88");
}

.stat-card--location {
  background-image:
    url("https://images.unsplash.com/photo-1533104816931-20fa691ff6ca?auto=format&fit=crop&w=1000&q=88");
}

.stat-card__shade {
  position: absolute;
  inset: 0;
  z-index: -1;

  background:
    linear-gradient(
      90deg,
      rgba(145, 67, 32, 0.9),
      rgba(145, 67, 32, 0.39) 62%,
      rgba(145, 67, 32, 0.04)
    );
}

.stat-card div:last-child {
  display: grid;
  gap: 5px;
}

.stat-card strong {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
  font-weight: 500;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.84);
}

/* =========================================================
   SECTIONS GÉNÉRALES
   ========================================================= */

.section {
  padding: clamp(80px, 9vw, 145px) 5vw;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: clamp(45px, 7vw, 110px);

  background: var(--paper);
}

.intro__image {
  position: relative;
}

.intro__image img {
  width: 100%;
  aspect-ratio: 1.1;
  object-fit: cover;

  border-radius: 30px 30px 110px 30px;
  box-shadow: 0 24px 60px rgba(56, 37, 27, 0.16);
}

.image-badge {
  position: absolute;
  right: -24px;
  bottom: 35px;

  width: 145px;
  aspect-ratio: 1;

  padding: 20px;
  display: grid;
  place-items: center;

  color: #fff;
  background: var(--terracotta);
  border: 8px solid var(--paper);
  border-radius: 50%;

  text-align: center;
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.15;

  transform: rotate(-8deg);
}

.intro__content h2,
.section-heading h2 {
  max-width: 780px;

  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.7vw, 5.2rem);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.intro__content > p:not(.eyebrow) {
  margin: 23px 0 0;

  color: var(--muted);

  font-size: 1.02rem;
  line-height: 1.78;
}

.feature-list {
  margin: 31px 0;

  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-list span {
  padding: 10px 14px;

  color: var(--terracotta-dark);
  background: var(--cream);
  border: 1px solid rgba(173, 93, 49, 0.13);
  border-radius: 999px;

  font-size: 0.85rem;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  color: var(--terracotta);
  text-decoration: none;

  font-weight: 700;
}

.text-link:hover span,
.text-link:focus-visible span {
  opacity: 0.65;
}

/* =========================================================
   CHAMBRES
   ========================================================= */

.rooms {
  background: var(--cream);
}

.section-heading {
  margin-bottom: 48px;

  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading > p {
  max-width: 470px;
  margin: 0 0 8px;

  color: var(--muted);

  line-height: 1.7;
}

.section-heading--center {
  justify-content: center;
  text-align: center;
}

.room-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  gap: 20px;
}

.room-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;

  border-radius: 25px;

  isolation: isolate;
}

.room-card--large {
  grid-row: 1 / 3;
}

.room-card::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(28, 18, 13, 0.76),
      transparent 56%
    );
}

.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: filter 150ms ease;
}

.room-card:hover img {
  filter: brightness(0.96);
}

.room-card__info {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;

  padding: 25px 28px;

  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;

  color: #fff;
}

.room-card__info span {
  color: rgba(255, 255, 255, 0.67);

  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.room-card__info h3 {
  margin: 6px 0 0;

  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.5rem);
  font-weight: 500;
}

.room-card__info p {
  margin: 0;

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

  font-size: 0.82rem;
  text-align: right;
}

/* =========================================================
   ENVIRONS
   ========================================================= */

.experience {
  position: relative;
  min-height: 680px;
  padding: 8vw 6vw;

  display: flex;
  align-items: center;

  color: #fff;
  background:
    url("https://images.unsplash.com/photo-1564501049412-61c2a3083791?auto=format&fit=crop&w=2000&q=90")
    center / cover no-repeat fixed;

  isolation: isolate;
}

.experience__shade {
  position: absolute;
  inset: 0;
  z-index: -1;

  background:
    linear-gradient(
      90deg,
      rgba(39, 25, 17, 0.79),
      rgba(39, 25, 17, 0.19)
    );
}

.experience__content {
  max-width: 720px;
}

.experience h2,
.final-cta h2 {
  font-size: clamp(3rem, 5.8vw, 6.4rem);
  line-height: 0.98;
}

.experience__content > p:not(.eyebrow),
.final-cta__content > p:not(.eyebrow) {
  max-width: 650px;
  margin: 26px 0 32px;

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

  font-size: 1.04rem;
  line-height: 1.75;
}

.search-button:disabled {
  cursor: wait;
  opacity: 0.65;
}

/* =========================================================
   ÉQUIPEMENTS
   ========================================================= */

.amenities {
  background: var(--paper);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.amenity {
  min-height: 260px;
  padding: 30px;

  background: var(--cream);
  border: 1px solid rgba(77, 49, 33, 0.08);
  border-radius: 22px;

  transition:
    border-color 130ms ease,
    background-color 130ms ease;
}

.amenity:hover {
  background: #f2e8e0;
  border-color: rgba(173, 93, 49, 0.24);
}

.amenity__icon {
  width: 53px;
  height: 53px;

  display: grid;
  place-items: center;

  color: #fff;
  background: var(--terracotta);
  border-radius: 50%;

  font-size: 1.3rem;
}

.amenity h3 {
  margin: 30px 0 11px;

  font-family: var(--serif);
  font-size: 1.54rem;
  font-weight: 500;
}

.amenity p {
  margin: 0;

  color: var(--muted);

  line-height: 1.65;
}

/* =========================================================
   AVIS
   ========================================================= */

.testimonial {
  padding-top: 0;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;

  background: var(--paper);
}

.testimonial__card {
  min-height: 530px;
  padding: clamp(35px, 5vw, 72px);

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

  color: #fff;
  background: var(--terracotta);
  border-radius: 28px;
}

.quote-mark {
  height: 60px;

  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 1;

  opacity: 0.34;
}

.testimonial blockquote {
  margin: 22px 0 30px;

  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 4rem);
  line-height: 1.12;
}

.testimonial__card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.73);
}

.testimonial__visual {
  min-height: 530px;
  overflow: hidden;
  border-radius: 28px;
}

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

/* =========================================================
   APPEL À L'ACTION FINAL
   ========================================================= */

.final-cta {
  min-height: 590px;
  padding: 9vw 5vw;

  display: grid;
  place-items: center;

  color: #fff;
  text-align: center;

  background:
    linear-gradient(
      rgba(48, 25, 16, 0.63),
      rgba(48, 25, 16, 0.63)
    ),
    url("https://images.unsplash.com/photo-1564013799919-ab600027ffc6?auto=format&fit=crop&w=2000&q=90")
    center / cover no-repeat;
}

.final-cta__content {
  max-width: 840px;
}

.final-cta__content > p:not(.eyebrow) {
  margin-inline: auto;
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  min-height: 150px;
  padding: 45px 5vw;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 35px;

  color: #fff;
  background: #27211e;
}

.brand--footer {
  color: #fff;
}

.footer__links {
  display: flex;
  gap: 28px;
}

.footer__links a,
.footer__contact a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
}

.footer__links a:hover,
.footer__links a:focus-visible,
.footer__contact a:hover,
.footer__contact a:focus-visible {
  color: #fff;
}

.footer__contact {
  justify-self: end;

  display: grid;
  gap: 8px;

  text-align: right;
}

.footer__contact span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.81rem;
}

/* =========================================================
   TOAST
   ========================================================= */

.toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 26px;

  max-width: min(560px, calc(100% - 30px));
  padding: 14px 19px;

  color: #fff;
  background: #211e1c;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.24);

  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 14px);

  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Les anciens éléments .reveal restent visibles sans animation générique. */
.reveal {
  opacity: 1;
  transform: none;
}

/* =========================================================
   TABLETTES / PETITS ORDINATEURS
   La navbar reste horizontale.
   ========================================================= */

@media (max-width: 1120px) and (min-width: 821px) {
  .navbar {
    left: 2vw;
    right: 2vw;
    padding-left: 17px;
    column-gap: 14px;
  }

  .brand {
    gap: 8px;
    font-size: 0.78rem;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .main-nav {
    gap: clamp(13px, 1.8vw, 24px);
  }

  .main-nav a {
    font-size: 0.75rem;
  }

  .nav-cta {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 0.77rem;
  }

  .booking-card {
    left: 2vw;
    right: 2vw;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .booking-card__heading {
    text-align: center;
  }

  .quick-stats {
    padding-top: 148px;
  }

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

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 820px) {
  .hero {
    min-height: 930px;
    padding: 126px 6vw 315px;
    background-position: 64% center;
  }

  .navbar {
    top: 12px;
    left: 12px;
    right: 12px;

    min-height: 62px;
    padding: 7px 9px 7px 17px;

    grid-template-columns: minmax(0, 1fr) 44px;
    column-gap: 8px;
  }

  .booking-field--message,
  .search-button {
    grid-column: auto;
  }

  .brand {
    min-width: 0;
    font-size: 0.8rem;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;

    display: block;
    justify-self: end;

    padding: 0;
    border: 0;
    background: transparent;
  }

  .menu-toggle span {
    width: 23px;
    height: 2px;

    display: block;
    margin: 5px auto;

    background: #fff;
    border-radius: 999px;

    transition:
      transform 150ms ease,
      opacity 150ms ease;
  }

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

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

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

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;

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

    padding: 10px;

    background: rgba(142, 69, 37, 0.99);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 15px;
    font-size: 0.88rem;
  }

  .main-nav a::after {
    display: none;
  }

  .hero__content {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 13vw, 5rem);
  }

  .scroll-hint {
    display: none;
  }

  .booking-card {
    left: 4vw;
    right: 4vw;
    bottom: -236px;

    padding: 24px 21px;

    grid-template-columns: 1fr;
    gap: 24px;
  }

  .booking-card__heading {
    text-align: center;
  }

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

  .booking-field {
    padding: 0;
    border-left: 0;
  }

  .search-button {
    width: 100%;
    margin: 0;
  }

  .quick-stats {
    padding-top: 282px;
    grid-template-columns: 1fr;
  }

  .intro,
  .testimonial {
    grid-template-columns: 1fr;
  }

  .image-badge {
    right: 12px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .room-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .search-button {
  grid-column: auto;
  }

  .room-card,
  .room-card--large {
    min-height: 430px;
    grid-row: auto;
  }

  .experience {
    min-height: 620px;
    background-attachment: scroll;
  }

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

  .footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer__links {
    justify-self: end;
  }

  .footer__contact {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 970px;
    padding-top: 126px;
  }

  .brand {
    font-size: 0.74rem;
  }

  .brand__mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .hero__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .booking-card {
    bottom: -252px;
    min-height: 230px;
  }

  .quick-stats {
    padding-top: 300px;
  }

  .stat-card {
    min-height: 190px;
  }

  .section {
    padding-inline: 6vw;
  }

  .intro__image img {
    border-radius: 24px 24px 70px 24px;
  }

  .image-badge {
    width: 115px;
    right: -4px;
    bottom: 18px;

    border-width: 6px;

    font-size: 0.91rem;
  }

  .room-card,
  .room-card--large {
    min-height: 390px;
  }

  .room-card__info {
    align-items: start;
    flex-direction: column;
  }

  .room-card__info p {
    text-align: left;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .testimonial__card,
  .testimonial__visual {
    min-height: 420px;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .footer__links {
    justify-self: start;
    flex-wrap: wrap;
    gap: 17px;
  }

  .footer__contact {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
