:root {
  --bg: #f4efe7;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --line: rgba(39, 34, 25, 0.12);
  --text: #1f1a16;
  --muted: #625649;
  --accent: #b55d33;
  --accent-dark: #8e401f;
  --forest: #234338;
  --gold: #d7a34c;
  --shadow: 0 24px 80px rgba(53, 36, 16, 0.12);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --max-width: 100%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(215, 163, 76, 0.35), transparent 28%),
    radial-gradient(circle at top right, rgba(35, 67, 56, 0.18), transparent 30%),
    linear-gradient(180deg, #f8f2e8 0%, #f4efe7 45%, #efe5d8 100%);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  width: 100%;
  margin: 0 auto;
  padding: 24px 24px 40px;
}

.topbar,
.navbar,
.hero-card,
.intro-card,
.room-card,
.amenity-card,
.explore-card,
.contact-card,
.footer {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 251, 247, 0.68);
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
}

.brand-mark,
.topbar-contact a {
  color: var(--muted);
  font-size: 0.95rem;
}

.topbar-contact {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.navbar {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 20px 0 36px;
  padding: 16px 20px;
  background: rgba(31, 26, 22, 0.88);
  color: #fffaf2;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-image {
  width: 62px;
  height: 62px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 18px;
  background: rgba(255, 248, 241, 0.94);
  padding: 4px;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo-subtext {
  color: rgba(255, 250, 242, 0.7);
  font-size: 0.84rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-menu a {
  color: rgba(255, 250, 242, 0.82);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: #ffffff;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #d07d4f);
  color: #fff8f1 !important;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle span + span {
  margin-top: 6px;
}

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

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

.section {
  margin: 0 0 28px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: stretch;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.hero-copy,
.hero-card {
  min-height: 100%;
}

.hero-copy {
  max-width: 920px;
  padding: 8px 24px 18px;
  margin: 0 auto;
  width: min(100%, 1320px);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
}

.hero-brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(39, 34, 25, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-brand-chip img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 251, 247, 0.9);
  padding: 4px;
}

.hero h1,
.section-heading h2,
.hero-panel-main h2,
.contact-card h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

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

.hero-text,
.hero-panel p,
.room-body p,
.amenity-card p,
.explore-card p,
.contact-card p,
.intro-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #d07d4f);
  color: #fff8f1;
  box-shadow: 0 16px 34px rgba(181, 93, 51, 0.24);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  color: var(--text);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.hero-stats article {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(39, 34, 25, 0.08);
}

.hero-stats strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.5rem;
}

.hero-stats span,
.panel-label {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-card {
  display: grid;
  gap: 16px;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.88), rgba(255, 247, 239, 0.68)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.08));
  box-shadow: none;
}

.hero-panel {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(39, 34, 25, 0.08);
}

.hero-panel-main {
  background:
    radial-gradient(circle at top right, rgba(215, 163, 76, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(35, 67, 56, 0.1), rgba(255, 255, 255, 0.85));
}

.hero-panel-main h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  margin-top: 12px;
}

.carousel-shell {
  padding: 0;
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  min-height: 680px;
}

.carousel-track {
  position: relative;
  min-height: 680px;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

.carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-video-slide .photo-film {
  position: absolute;
  inset: 0;
}

.carousel-video-slide .photo-film::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 52%, transparent 0%, rgba(24, 21, 17, 0.05) 42%, rgba(24, 21, 17, 0.2) 100%);
  animation: filmBreath 24s ease-in-out infinite;
}

.carousel-video-slide .photo-film img {
  position: absolute;
  inset: 0;
  opacity: 0;
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.08);
  transform-origin: center;
  will-change: opacity, transform;
}

.carousel-video-slide.is-active .photo-film img {
  animation-duration: 24s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.carousel-video-slide.is-active .photo-film img:nth-child(1),
.carousel-video-slide.is-active .photo-film img:nth-child(5) {
  animation-name: hoverDriftRight;
}

.carousel-video-slide .photo-film img:nth-child(2) {
  animation-delay: 3s;
}

.carousel-video-slide.is-active .photo-film img:nth-child(2),
.carousel-video-slide.is-active .photo-film img:nth-child(6) {
  animation-name: hoverDriftLeft;
}

.carousel-video-slide .photo-film img:nth-child(3) {
  animation-delay: 6s;
}

.carousel-video-slide.is-active .photo-film img:nth-child(3),
.carousel-video-slide.is-active .photo-film img:nth-child(7) {
  animation-name: hoverFloatUp;
}

.carousel-video-slide .photo-film img:nth-child(4) {
  animation-delay: 9s;
}

.carousel-video-slide.is-active .photo-film img:nth-child(4),
.carousel-video-slide.is-active .photo-film img:nth-child(8) {
  animation-name: hoverFloatDiagonal;
}

.carousel-video-slide .photo-film img:nth-child(5) {
  animation-delay: 12s;
}

.carousel-video-slide .photo-film img:nth-child(6) {
  animation-delay: 15s;
}

.carousel-video-slide .photo-film img:nth-child(7) {
  animation-delay: 18s;
}

.carousel-video-slide .photo-film img:nth-child(8) {
  animation-delay: 21s;
}

.carousel-video-slide.is-active .video-caption::before {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: #fff8f1;
  animation: videoProgress 24s linear infinite;
  transform-origin: left;
}

.carousel-video-slide.is-active .video-caption {
  animation: captionHover 24s ease-in-out infinite;
}

.carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(24, 21, 17, 0.04) 0%, rgba(24, 21, 17, 0.18) 38%, rgba(24, 21, 17, 0.72) 100%);
}

.carousel-caption {
  position: absolute;
  left: 24px;
  right: auto;
  bottom: 24px;
  z-index: 1;
  width: min(430px, calc(100% - 48px));
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(24, 21, 17, 0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff8f1;
}

.carousel-caption .panel-label {
  color: rgba(255, 248, 241, 0.86);
}

.carousel-caption h2 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.carousel-controls {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.carousel-button {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 248, 241, 0.24);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 248, 241, 0.42);
  cursor: pointer;
}

.carousel-dot.is-active {
  width: 34px;
  background: #fff8f1;
}

@keyframes hoverDriftRight {
  0% {
    opacity: 0;
    transform: scale(1.08) translateX(-2%) translateY(1%);
  }

  8%,
  20% {
    opacity: 1;
    transform: scale(1.1) translateX(1%) translateY(-1%);
  }

  30% {
    opacity: 0;
    transform: scale(1.14) translateX(4%) translateY(-2%);
  }

  100% {
    opacity: 0;
    transform: scale(1.14) translateX(4%) translateY(-2%);
  }
}

@keyframes hoverDriftLeft {
  0% {
    opacity: 0;
    transform: scale(1.08) translateX(2%) translateY(-1%);
  }

  8%,
  20% {
    opacity: 1;
    transform: scale(1.1) translateX(-1%) translateY(1%);
  }

  30% {
    opacity: 0;
    transform: scale(1.14) translateX(-4%) translateY(2%);
  }

  100% {
    opacity: 0;
    transform: scale(1.14) translateX(-4%) translateY(2%);
  }
}

@keyframes hoverFloatUp {
  0% {
    opacity: 0;
    transform: scale(1.08) translateY(2%);
  }

  8%,
  20% {
    opacity: 1;
    transform: scale(1.11) translateY(-1%);
  }

  30% {
    opacity: 0;
    transform: scale(1.15) translateY(-4%);
  }

  100% {
    opacity: 0;
    transform: scale(1.15) translateY(-4%);
  }
}

@keyframes hoverFloatDiagonal {
  0% {
    opacity: 0;
    transform: scale(1.08) translate(-2%, 2%);
  }

  8%,
  20% {
    opacity: 1;
    transform: scale(1.11) translate(1%, -1%);
  }

  30% {
    opacity: 0;
    transform: scale(1.15) translate(3%, -3%);
  }

  100% {
    opacity: 0;
    transform: scale(1.15) translate(3%, -3%);
  }
}

@keyframes videoProgress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes filmBreath {
  0%,
  100% {
    opacity: 0.88;
  }

  50% {
    opacity: 0.58;
  }
}

@keyframes captionHover {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .carousel-video-slide.is-active .photo-film img,
  .carousel-video-slide.is-active .photo-film::after,
  .carousel-video-slide.is-active .video-caption,
  .carousel-video-slide.is-active .video-caption::before {
    animation: none;
  }

  .carousel-video-slide .photo-film img:first-child {
    opacity: 1;
  }
}

.section-heading {
  max-width: 720px;
  margin-bottom: 20px;
}

.section-heading h2 {
  font-size: clamp(2rem, 3.8vw, 3.8rem);
}

.intro-layout,
.room-grid,
.amenities-grid,
.explore-list {
  display: grid;
  gap: 18px;
}

.intro,
#camere,
#facilitati,
#prahova,
#contact,
.footer {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.intro-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.intro-card,
.room-card,
.amenity-card,
.explore-card,
.contact-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.intro-card {
  padding: 26px;
}

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

.room-card {
  overflow: hidden;
}

.room-card-link {
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.room-card-link:hover,
.room-card-link:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 28px 90px rgba(53, 36, 16, 0.18);
}

.room-visual {
  min-height: 220px;
  background-size: cover;
  background-position: center;
}

.room-double {
  background-image: linear-gradient(135deg, rgba(181, 93, 51, 0.12), rgba(181, 93, 51, 0.02)), url("./assets/camera-dubla.jpg");
}

.room-triple {
  background-image: linear-gradient(135deg, rgba(215, 163, 76, 0.12), rgba(215, 163, 76, 0.02)), url("./assets/camera-tripla.jpg");
}

.room-body {
  padding: 22px;
}

.room-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  margin-bottom: 10px;
}

.room-meta span,
.room-meta strong {
  font-size: 1.05rem;
}

.room-body ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  color: var(--text);
}

.room-body li::before {
  content: "•";
  margin-right: 10px;
  color: var(--accent);
}

.room-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--accent-dark);
  font-weight: 700;
}

.room-link::after {
  content: "→";
  margin-left: 8px;
}

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

.amenity-card {
  overflow: hidden;
  padding: 24px;
}

.amenity-image {
  margin: -24px -24px 20px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.amenity-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenity-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 800;
}

.amenity-card h3,
.explore-card h3 {
  margin: 0 0 8px;
  font-size: 1.3rem;
}

.explore-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.explore-card {
  overflow: hidden;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.56)),
    radial-gradient(circle at top right, rgba(215, 163, 76, 0.18), transparent 40%);
}

.explore-card-link {
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.explore-card-link:hover,
.explore-card-link:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 28px 90px rgba(53, 36, 16, 0.18);
}

.explore-image {
  margin: -24px -24px 20px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.explore-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.explore-link {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  color: var(--accent-dark);
  font-weight: 700;
}

.explore-link::after {
  content: "→";
  margin-left: 8px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  padding: 32px;
  background:
    radial-gradient(circle at top left, rgba(35, 67, 56, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 252, 248, 0.88), rgba(255, 248, 240, 0.76));
}

.contact-link {
  align-self: center;
  color: var(--accent-dark);
  font-weight: 700;
}

.detail-page {
  max-width: 1320px;
  margin: 0 auto;
}

.room-detail,
.room-gallery,
.detail-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 28px;
}

.room-detail {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: stretch;
}

.room-detail-media,
.room-detail-copy {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.room-detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.room-detail-copy {
  padding: 32px;
}

.room-gallery {
  display: block;
}

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

.room-gallery-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.detail-list li::before {
  content: "•";
  margin-right: 10px;
  color: var(--accent);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 10px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 251, 247, 0.68);
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 1080px) {
  .contact-card,
  .room-detail,
  .detail-grid,
  .room-gallery-grid,
  .room-grid,
  .amenities-grid,
  .explore-list,
  .intro-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy {
    padding-right: 0;
  }
}

@media (max-width: 820px) {
  .site-shell {
    width: 100%;
    padding-top: 16px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero {
    width: auto;
    margin-left: -12px;
    margin-right: -12px;
  }

  .topbar {
    border-radius: 24px;
  }

  .topbar,
  .footer,
  .contact-card,
  .intro-layout,
  .room-grid,
  .room-gallery-grid,
  .amenities-grid,
  .explore-list {
    grid-template-columns: 1fr;
  }

  .navbar {
    flex-wrap: wrap;
    border-radius: 22px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 8px;
  }

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

  .nav-menu a {
    width: 100%;
  }

  .nav-cta {
    text-align: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .logo-image {
    width: 52px;
    height: 52px;
  }

  .contact-card {
    padding: 24px;
  }

  .carousel,
  .carousel-track {
    min-height: 520px;
  }

  .room-detail-media img {
    min-height: 420px;
  }

  .room-gallery-grid img {
    aspect-ratio: 16 / 9;
  }

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

@media (max-width: 560px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-contact {
    justify-content: flex-start;
    gap: 10px 16px;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .hero-copy {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-brand-chip {
    width: 100%;
    border-radius: 20px;
  }

  .section-heading h2,
  .contact-card h2 {
    font-size: 2rem;
  }

  .carousel,
  .carousel-track {
    min-height: 380px;
  }

  .carousel-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px;
    border-radius: 18px;
  }

  .carousel-controls {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .carousel-button {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .amenity-image {
    margin-left: -18px;
    margin-right: -18px;
  }

  .explore-image {
    margin-left: -18px;
    margin-right: -18px;
  }

  .room-detail-copy {
    padding: 24px 18px;
  }

  .hero-card,
  .intro-card,
  .room-body,
  .amenity-card,
  .explore-card,
  .contact-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-panel {
    padding: 20px;
  }

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