:root {
  --ink: #0b0b0d;
  --muted: #5f6068;
  --deep: #08002d;
  --green: #173d32;
  --accent: #d65f36;
  --soft: #f3f2ff;
  --cream: #faf9f6;
  --line: #d9d9de;
  --white: #fff;
  --radius: 24px;
  --radius-large: 40px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
select {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 18px;
  font-family: inherit;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 620px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(3.5rem, 4.5vw, 4.7rem);
  font-weight: 700;
}

h1 em {
  color: inherit;
  font-style: normal;
}

h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

h3 {
  font-size: 2rem;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--white);
}

.skip-link:focus {
  transform: translateY(0);
}

.section {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
  padding-block: 110px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0;
}

.eyebrow-light {
  color: var(--white);
}

.button {
  display: inline-flex;
  min-height: 55px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.1;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary,
.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-primary:hover,
.button-light:hover {
  background: #f0eff5;
}

.button-dark {
  background: var(--deep);
  color: var(--white);
}

.button-dark:hover {
  background: #160c4d;
}

.button-outline {
  border-color: var(--deep);
  background: transparent;
  color: var(--deep);
}

.button-outline:hover {
  background: var(--soft);
}

.button-small {
  min-height: 44px;
  padding: 11px 20px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 0.92rem;
  font-weight: 650;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.text-link-light {
  color: var(--white);
}

.site-header {
  position: relative;
  z-index: 100;
  display: flex;
  width: min(calc(100% - 80px), 1456px);
  height: 80px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
}

.site-header.scrolled,
.site-header.menu-active {
  height: 80px;
  background: transparent;
  box-shadow: none;
}

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

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
  letter-spacing: 0.17em;
}

.brand small {
  margin-top: 5px;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  opacity: 0.65;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.85rem;
  font-weight: 550;
}

.site-nav > a:not(.button) {
  transition: opacity 180ms ease;
}

.site-nav > a:not(.button):hover {
  opacity: 0.55;
}

.site-nav .button-light {
  border-color: var(--ink);
  background: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(11, 11, 13, 0.28);
  border-radius: 50%;
  background: var(--white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  width: min(calc(100% - 80px), 1456px);
  min-height: min(820px, calc(100svh - 110px));
  margin-inline: auto;
  align-items: end;
  overflow: hidden;
  border-radius: var(--radius);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 13, 29, 0.62) 0%, rgba(16, 13, 29, 0.24) 55%, rgba(16, 13, 29, 0.12) 100%),
    linear-gradient(0deg, rgba(13, 10, 24, 0.42), transparent 62%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 64px;
}

.hero-copy {
  max-width: 470px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  align-items: center;
}

.hero-facts {
  display: none;
}

.booking-finder {
  position: relative;
  z-index: 5;
  display: grid;
  width: min(calc(100% - 64px), 1060px);
  min-height: 132px;
  margin: -36px auto 20px;
  padding: 26px 32px;
  grid-template-columns: 1.3fr 1fr auto;
  align-items: center;
  gap: 30px;
  border: 1px solid #ecebf0;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 22px 60px rgba(16, 10, 44, 0.12);
}

.booking-finder h2 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.booking-finder .eyebrow {
  margin-bottom: 5px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.finder-control label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.finder-control select {
  width: 100%;
  min-height: 48px;
  padding: 0 42px 0 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline-color: var(--deep);
  background: transparent;
  color: var(--ink);
  font-weight: 600;
}

.intro {
  display: grid;
  max-width: 1040px;
  padding-top: 78px;
  padding-bottom: 84px;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 10%;
  align-items: end;
}

.intro-heading h2 {
  max-width: 600px;
  margin: 0;
  font-size: clamp(2.35rem, 3.2vw, 3.35rem);
}

.intro-copy {
  padding-bottom: 8px;
}

.intro-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.accommodations {
  padding-top: 58px;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  max-width: 1040px;
  margin: 0 auto 46px;
  grid-template-columns: 1fr 0.7fr;
  gap: 10%;
  align-items: end;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.3rem, 3vw, 3.1rem);
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
}

.faq {
  display: grid;
  padding-top: 40px;
  padding-bottom: 100px;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: start;
}

.faq-heading h2 {
  margin-bottom: 14px;
}

.faq-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--cream);
}

.faq-list summary {
  cursor: pointer;
  font-size: 1rem;
  font-weight: 650;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--muted);
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--muted);
}

.filter-feedback {
  max-width: 1040px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 0.86rem;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 24px;
}

.room-card {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  transition: transform 220ms ease;
}

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

.room-card[hidden] {
  display: none;
}

.room-card-featured {
  display: grid;
  min-height: 650px;
  margin-bottom: 72px;
  grid-column: 1 / -1;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.room-card-reverse .room-image {
  order: 2;
}

.room-image {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: var(--radius);
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.room-image .room-photo-portrait {
  object-position: center 40%;
}

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

.room-number {
  position: absolute;
  top: 24px;
  left: 24px;
  display: grid;
  min-width: 56px;
  height: 40px;
  padding: 0 16px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-weight: 650;
  backdrop-filter: blur(8px);
}

.room-content {
  display: flex;
  padding: 22px 0 4px;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.room-card-featured .room-content {
  padding: 36px 0;
}

.room-card-featured h3 {
  font-size: 2.4rem;
  font-weight: 500;
}

.room-content > div > p:last-child {
  max-width: 540px;
  color: var(--muted);
}

.room-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 9px 15px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.room-features {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.room-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  color: #303036;
  font-size: 0.95rem;
}

.feature-icon {
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  color: var(--deep);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.room-actions {
  display: grid;
  width: 100%;
  max-width: 560px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.room-actions .button {
  width: 100%;
  min-height: 50px;
  padding: 13px 16px;
  font-size: 0.86rem;
  text-align: center;
}

.room-card:not(.room-card-featured) .room-actions {
  max-width: none;
}

.room-card:not(.room-card-featured) h3 {
  font-size: 1.75rem;
  font-weight: 500;
}

.room-card:not(.room-card-featured) .room-image {
  aspect-ratio: 4 / 3.3;
}

.no-results {
  margin-top: 30px;
  padding: 36px;
  border-radius: var(--radius);
  background: var(--soft);
  text-align: center;
}

.no-results h3 {
  font-size: 1.5rem;
}

.exclusive-booking {
  display: grid;
  margin-top: 72px;
  padding: clamp(34px, 5vw, 64px);
  grid-template-columns: 1.2fr 0.8fr;
  gap: 9%;
  align-items: center;
  border-radius: var(--radius-large);
  background: var(--soft);
}

.exclusive-booking h3 {
  max-width: 580px;
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
}

.exclusive-booking p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
}

.exclusive-booking-details {
  display: grid;
}

.exclusive-booking-details > span {
  padding: 15px 0;
  border-bottom: 1px solid #d7d5e8;
}

.exclusive-booking-details .button {
  margin-top: 28px;
}

.amenities {
  width: min(calc(100% - 64px), var(--container));
  max-width: var(--container);
  margin-inline: auto;
  padding: 110px 0;
  background: var(--white);
  color: var(--ink);
}

.amenities .eyebrow-light {
  color: var(--ink);
}

.amenities-heading {
  display: grid;
  max-width: 1040px;
  margin: 0 auto 48px;
  grid-template-columns: 1fr 0.8fr;
  gap: 10%;
  align-items: end;
}

.amenities-heading h2 {
  margin-bottom: 0;
}

.amenities-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
}

.amenities-carousel {
  min-width: 0;
}

.gallery-viewport {
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  user-select: none;
}

.gallery-viewport::-webkit-scrollbar {
  display: none;
}

.gallery-viewport:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 6px;
  border-radius: var(--radius);
}

.gallery-track {
  display: flex;
  gap: 18px;
}

.gallery-track::after {
  content: "";
  flex: 0 0 calc(22% - 18px);
}

.gallery-item {
  position: relative;
  height: clamp(440px, 47vw, 570px);
  flex: 0 0 min(78%, 860px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--soft);
  cursor: zoom-in;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.gallery-item:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -6px;
}

.gallery-viewport.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.gallery-viewport.is-dragging .gallery-item {
  cursor: grabbing;
}

.gallery-controls {
  display: flex;
  margin-top: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.gallery-counter {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.gallery-buttons {
  display: flex;
  gap: 10px;
}

.gallery-buttons button {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.2rem;
  transition: border-color 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.gallery-buttons button:hover:not(:disabled) {
  border-color: var(--ink);
  background: var(--soft);
}

.gallery-buttons button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.gallery-buttons button:disabled {
  opacity: 0.3;
  cursor: default;
}

.amenity-list {
  display: grid;
  margin: 42px 0 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.amenity-list li {
  padding: 18px 14px;
  border-top: 1px solid var(--line);
  font-size: 1rem;
}

.amenity-list li:last-child {
  grid-column: 1 / -1;
}

.amenity-list span {
  margin-right: 14px;
  color: var(--muted);
  font-size: 0.72rem;
}

.story {
  display: grid;
  width: min(calc(100% - 64px), 1280px);
  max-width: 1280px;
  min-height: 690px;
  padding: 40px;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
  border-radius: var(--radius-large);
  background: var(--soft);
}

.story-copy {
  display: flex;
  max-width: 600px;
  padding: clamp(30px, 5vw, 70px) 30px;
  flex-direction: column;
  justify-content: center;
}

.story-copy h2 {
  font-size: clamp(2.4rem, 3.7vw, 3.8rem);
}

.story-copy p {
  color: var(--muted);
}

.story-copy blockquote {
  margin: 28px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid #d7d5e8;
  color: var(--deep);
  font-size: 1.08rem;
  font-weight: 550;
  line-height: 1.45;
}

.story-image {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: var(--radius);
}

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

.story-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  text-align: left;
}

.story-badge strong,
.story-badge span {
  display: inline;
}

.story-badge strong {
  margin-right: 5px;
  font-size: 1.1rem;
}

.story-badge span {
  font-size: 0.8rem;
}

.audiences {
  display: grid;
  padding-top: 120px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas:
    "image image work rest"
    "image image group group";
  gap: 20px;
}

.audience-card {
  display: flex;
  min-height: 320px;
  padding: 34px;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius);
  background: var(--cream);
}

.audience-card h3 {
  font-size: 2rem;
  font-weight: 500;
}

.audience-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.audience-number {
  margin-bottom: auto;
  font-size: 0.76rem;
  font-weight: 700;
}

.audience-card-image {
  min-height: 660px;
  padding: 0;
  grid-area: image;
  overflow: hidden;
}

.audience-card-work {
  grid-area: work;
}

.audience-card-rest {
  grid-area: rest;
}

.audience-card-group {
  grid-area: group;
}

.audience-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audience-card-accent {
  background: var(--deep);
  color: var(--white);
}

.audience-card-accent p {
  color: rgba(255, 255, 255, 0.72);
}

.audience-card-accent .text-link {
  align-self: flex-start;
  margin-top: 26px;
}

.final-cta {
  position: relative;
  display: grid;
  width: min(calc(100% - 80px), 1456px);
  min-height: 650px;
  margin: 20px auto 80px;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(8, 3, 31, 0.54), rgba(8, 3, 31, 0.54)),
    url("assets/images/pergolado-novo.webp") center / cover no-repeat;
  text-align: center;
}

.final-cta-content {
  position: relative;
  max-width: 900px;
  padding: 70px 24px;
  color: var(--white);
}

.final-cta h2 {
  font-size: clamp(3rem, 5.5vw, 5.8rem);
}

.lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 32px 84px 28px;
  border: 0;
  background: rgba(3, 2, 30, 0.96);
  color: var(--white);
}

.lightbox[open] {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
}

.lightbox::backdrop {
  background: rgba(3, 2, 30, 0.82);
}

.lightbox figure {
  display: grid;
  min-width: 0;
  height: 100%;
  margin: 0;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
}

.lightbox img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.lightbox figcaption {
  display: flex;
  width: 100%;
  max-width: 1100px;
  padding-top: 18px;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  color: rgba(255, 255, 255, 0.88);
}

.lightbox figcaption small {
  color: rgba(255, 255, 255, 0.58);
  white-space: nowrap;
}

.lightbox-close,
.lightbox-nav {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.18);
}

.lightbox-nav:disabled {
  opacity: 0.28;
  cursor: default;
}

.lightbox-nav:disabled:hover {
  background: rgba(255, 255, 255, 0.08);
}

.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 24px;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav {
  width: 52px;
  height: 52px;
  font-size: 2.3rem;
  line-height: 1;
}

.lightbox-prev {
  margin-right: 28px;
}

.lightbox-next {
  margin-left: 28px;
}

.site-footer {
  display: grid;
  padding: 80px max(32px, calc((100vw - var(--container)) / 2)) 32px;
  grid-template-columns: 1.5fr 0.7fr 0.7fr;
  gap: 8%;
  background: #03021e;
  color: var(--white);
}

.brand-footer {
  margin-bottom: 22px;
}

.footer-brand p {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.58);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.84rem;
}

.footer-links strong {
  margin-bottom: 8px;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.62);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  padding-top: 30px;
  grid-column: 1 / -1;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
}

.mobile-reserve {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

@media (max-width: 980px) {
  .site-header {
    width: calc(100% - 40px);
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    padding: 110px 24px 35px;
    transform: translateX(100%);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    font-size: 1.7rem;
    font-weight: 600;
    transition: transform 220ms ease;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav > a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .button {
    margin-top: 28px;
    font-size: 0.95rem;
  }

  .hero {
    width: calc(100% - 40px);
  }

  .booking-finder {
    grid-template-columns: 1fr 1fr;
  }

  .booking-finder .button {
    grid-column: 1 / -1;
  }

  .intro,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

  .room-card-featured {
    grid-template-columns: 1fr;
  }

  .room-card-featured .room-image {
    min-height: 560px;
  }

  .room-card-reverse .room-image {
    order: 0;
  }

  .exclusive-booking {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

  .gallery-item {
    flex-basis: 82%;
  }

  .gallery-track::after {
    flex-basis: calc(18% - 18px);
  }

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

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

  .story-image {
    min-height: 520px;
  }

  .audiences {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "image image"
      "work rest"
      "group group";
  }

  .audience-card-image {
    min-height: 520px;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 66px;
  }

  h1 {
    font-size: clamp(2.65rem, 11vw, 3.7rem);
  }

  h2 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .section {
    width: calc(100% - 32px);
    padding-block: 82px;
  }

  .site-header {
    width: calc(100% - 32px);
    height: 72px;
  }

  .site-header.scrolled,
  .site-header.menu-active {
    height: 72px;
  }

  .hero {
    width: calc(100% - 32px);
    min-height: 632px;
    border-radius: 20px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-content {
    padding: 34px 24px 42px;
  }

  .hero-copy {
    max-width: 340px;
    font-size: 0.94rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .booking-finder {
    width: calc(100% - 32px);
    margin: 24px auto 0;
    padding: 25px 22px;
    grid-template-columns: 1fr;
    gap: 22px;
    box-shadow: 0 12px 38px rgba(16, 10, 44, 0.09);
  }

  .booking-finder .button {
    grid-column: auto;
  }

  .intro {
    padding-top: 66px;
    padding-bottom: 70px;
  }

  .accommodations {
    padding-top: 46px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .faq {
    padding-top: 24px;
    padding-bottom: 76px;
  }

  .faq-list details {
    padding: 20px 20px 18px;
  }

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

  .room-card-featured {
    min-height: 0;
    margin-bottom: 50px;
    gap: 10px;
  }

  .room-card-featured .room-image {
    min-height: 410px;
  }

  .room-card-featured .room-content,
  .room-content {
    padding: 22px 0 4px;
  }

  .room-card-featured h3 {
    font-size: 2.2rem;
  }

  .room-card .button {
    width: 100%;
    text-align: center;
  }

  .exclusive-booking {
    margin-top: 52px;
    padding: 32px 22px;
    border-radius: 28px;
  }

  .exclusive-booking h3 {
    font-size: 2.2rem;
  }

  .amenities {
    width: calc(100% - 32px);
    padding: 82px 0;
  }

  .gallery-track {
    gap: 12px;
  }

  .gallery-track::after {
    flex-basis: calc(12% - 12px);
  }

  .gallery-item {
    height: 420px;
    flex-basis: 88%;
    border-radius: 20px;
  }

  .gallery-controls {
    margin-top: 16px;
  }

  .gallery-buttons button {
    width: 44px;
    height: 44px;
  }

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

  .story {
    width: calc(100% - 32px);
    padding: 20px;
    gap: 12px;
    border-radius: 28px;
  }

  .story-copy {
    padding: 34px 10px;
  }

  .story-image {
    min-height: 420px;
  }

  .audiences {
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "work"
      "rest"
      "group";
  }

  .audience-card,
  .audience-card-image {
    min-height: 340px;
  }

  .final-cta {
    width: calc(100% - 32px);
    min-height: 590px;
    margin-bottom: 50px;
  }

  .lightbox {
    padding: 68px 10px 24px;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
  }

  .lightbox-prev {
    margin-right: 2px;
  }

  .lightbox-next {
    margin-left: 2px;
  }

  .lightbox figcaption {
    padding: 14px 4px 0;
    justify-content: flex-end;
    font-size: 0.86rem;
  }

  .site-footer {
    padding-top: 62px;
    grid-template-columns: 1fr 1fr;
    gap: 48px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .mobile-reserve {
    position: fixed;
    z-index: 90;
    right: 12px;
    bottom: 9px;
    left: 12px;
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--deep);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(8, 0, 45, 0.24);
    font-size: 0.88rem;
    font-weight: 700;
  }
}

@media (max-width: 430px) {
  .room-actions {
    grid-template-columns: 1fr;
  }
}
