

/* ============================= */
/* HERO (fix: içerik taşmasını önle) */
/* ============================= */
.hero {
    position: relative;
    isolation: isolate;
    min-height: clamp(560px, 76vh, 860px);
    color: #fff;
    background: #000;
}

.hero__viewport {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero__track {
    display: flex;
    height: 100%;
    will-change: transform;
    transition: transform 600ms cubic-bezier(.2, .7, .2, 1);
}

.hero__slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    min-height: clamp(560px, 76vh, 860px);
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(.75) contrast(1.05);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .45) 60%, rgba(0, 0, 0, .55));
}

/* içerik altta “dots” ile çakışmasın */
.hero__content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin-inline: auto;
    padding: clamp(16px, 4vw, 28px);
    padding-bottom: calc(clamp(16px, 4vw, 28px) + 48px);
    display: grid;
    align-content: center;
    height: 100%;
}

.hero__inner {
    max-width: min(820px, 92vw);
}

.hero__title {
    font-size: clamp(26px, 4vw + 8px, 52px);
    line-height: 1.12;
    margin: 0 0 10px 0;
    color: #fff;
}

.hero__text {
    font-size: clamp(14px, 1.05vw + 10px, 20px);
    color: #e6e8eb;
    margin: 0 0 18px 0;
}

.hero__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero__cta .btn {
    max-width: 100%;
}

/* nav + dots */
.hero__nav {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 4;
}

.hero__nav a {
    pointer-events: auto;
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, .35);
    color: #fff;
    text-decoration: none;
    border: 1px solid #ffffff33;
    backdrop-filter: blur(4px);
}

.hero__prev {
    left: 12px
}

.hero__next {
    right: 12px
}

.hero__dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    translate: -50% 0;
    z-index: 4;
    display: flex;
    gap: 8px;
}

.hero__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ffffff55;
    border: 1px solid #ffffff88;
    text-indent: -9999px;
    overflow: hidden;
}

.hero__dot.is-active {
    background: var(--brand-gold);
    border-color: #0000
}

/* ============================= */
/* INTRO */
/* ============================= */
.lbn-intro {
    padding: clamp(28px, 5vw, 60px) 0;
}

.lbn-intro__box {
    background: var(--card);
    border: 1px solid var(--card-br);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(10, 35, 66, .06);
    padding: clamp(18px, 2.6vw, 32px);
    text-align: center;
}

.lbn-intro__title {
    margin: 0 0 8px 0;
}

.lbn-intro__text {
    color: var(--ink);
    margin: 0 0 14px 0;
    font-size: clamp(14px, 1.05vw + 10px, 18px);
}

.lbn-intro__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 10px;
}

.lbn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 18px;
    border-radius: 999px;
    border: 2px solid transparent;
    transition: .2s ease;
}

.lbn-btn--primary {
    background: var(--brand-gold);
    color: #1b1b1b;
}

.lbn-btn--primary:hover {
    background: #d8b454 !important;
    color: #1b1b1b !important;
}

.lbn-btn--ghost {
    background: transparent;
    color: var(--brand-navy);
    border-color: #d9dbe2;
    border-style: solid;
}

.lbn-btn--ghost:hover {
    background: #f2f3f7 !important;
    color: var(--brand-navy) !important;
}

/* özellikler */
.lbn-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.lbn-features--grid {
    grid-template-columns: repeat(4, 1fr);
}

.lbn-feature {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 10px;
    align-items: start;
    background: var(--pill);
    border: 1px solid #ead9bf;
    border-radius: 14px;
    padding: 12px;
}

.lbn-feature i {
    font-size: 22px;
    line-height: 1;
    color: var(--brand-navy);
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
}

.lbn-feature__body h3 {
    margin: 0 0 4px 0;
    color: var(--brand-navy);
    font-size: 17px;
}

.lbn-feature__body p {
    margin: 0;
    color: #6b604f;
    font-size: 14.5px;
}


/* =============================
   HOME – ROOMS GRID (9 cards)
   Prefix: lbn-
   ============================= */

.lbn-rooms-grid{
  max-width: 1200px;
  margin-inline: auto;
  padding: clamp(26px, 4vw, 56px) 20px;
}

.lbn-rooms-grid__head{
  max-width: 780px;
  margin: 0 auto 18px;
  text-align: center;
}

.lbn-rooms-grid__head p{
  color: var(--ink);
  margin: .35rem 0 0;
}

.lbn-rooms-grid__wrap{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

/* 3 sütun (desktop) */
.lbn-room{
  grid-column: span 4;
  border-radius: 18px;
  overflow: hidden;
  background: #fff0db;
  box-shadow: 0 10px 26px rgba(10, 35, 66, .14);
  transform: translateY(14px);
  opacity: .001;
}

.lbn-room.in{
  transform: none;
  opacity: 1;
  transition: transform 520ms cubic-bezier(.2, .7, .2, 1), opacity 520ms ease;
}

.lbn-room__link{
  display: block;
  text-decoration: none;
  color: inherit;
}

.lbn-room__media{
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  margin: 0;
}

.lbn-room__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 700ms cubic-bezier(.2, .7, .2, 1), filter 700ms ease;
  filter: brightness(.92) contrast(1.05);
}

.lbn-room__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.50) 70%, rgba(0,0,0,.62));
}

.lbn-room:hover .lbn-room__media img{
  transform: scale(1.08);
}

.lbn-room__body{
  position: relative;
  padding: 14px 16px 16px;
  display: grid;
  gap: 10px;
  background: #fff0db;
  border-top: 1px solid rgba(0,0,0,.06);
}

.lbn-room__title{
  margin: 0;
  color: var(--brand-navy);
  font-size: 18px;
  line-height: 1.25;
}

.lbn-room__meta{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.lbn-room__meta li{
  font-weight: 800;
  font-size: 12.5px;
  color: #6b604f;
  background: var(--pill);
  border: 1px solid #ead9bf;
  padding: 6px 10px;
  border-radius: 999px;
}

.lbn-room__cta{
  display: flex;
  justify-content: flex-end;
}

.lbn-room__btn,
.lbn-room__soon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13.5px;
}

.lbn-room__btn{
  background: var(--brand-gold);
  color: #1b1b1b;
}

.lbn-room__soon{
  background: transparent;
  border: 2px dashed rgba(10,35,66,.28);
  color: var(--brand-navy);
}

/* Yakında kartları: tıklanmasın, görsel biraz soluk */
.lbn-room.is-soon{
  opacity: .9;
}
.lbn-room.is-soon .lbn-room__media img{
  filter: brightness(.88) contrast(1.02) saturate(.9);
}
.lbn-room.is-soon .lbn-room__link{
  cursor: default;
}

/* Responsive */
@media (max-width: 992px){
  .lbn-room{ grid-column: span 6; } /* 2 sütun */
}

@media (max-width: 640px){
  .lbn-room{ grid-column: 1 / -1; } /* 1 sütun */
  .lbn-room__media{ aspect-ratio: 16 / 10; }
}



/* ===== Testimonials (bej uyumlu) ===== */
.lbn-testimonials {
    padding: clamp(28px, 5vw, 64px) 0;
    background-color: #c0c0c0;
}

.lbn-t__head {
    max-width: 820px;
    margin: 0 auto 18px;
    padding: 0 20px;
    text-align: center;

    h2 {
        color: #2b2f36 !important;
    }
}

.lbn-t__head p {
    color: #2b2f36;
    margin: .4rem 0 0;
}

.lbn-t__viewport {
    position: relative;
    overflow: hidden;
    padding: 10px 0 38px;
}

.lbn-t__track {
    display: flex;
    gap: 16px;
    padding: 0 20px;
    will-change: transform;
    transition: transform 600ms cubic-bezier(.2, .7, .2, 1);
}

.lbn-t__card {
    flex: 0 0 clamp(280px, 38vw, 520px);
    background: var(--card);
    border: 1px solid var(--card-br);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(10, 35, 66, .06);
    padding: 18px;
    transform: translateY(14px);
    opacity: .001;
}

.lbn-t__card.in {
    transform: none;
    opacity: 1;
    transition: transform 520ms cubic-bezier(.2, .7, .2, 1), opacity 520ms ease;
}

.lbn-t__quote {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #1b1b1b;
    background: linear-gradient(135deg, #f7e6a1, #fdf6d0);
    border: 1px solid #f0de99;
    margin-bottom: 10px;
}

.lbn-t__quote i {
    color: #86650f;
    font-size: 22px;
}

.lbn-t__text {
    color: #2b2f36;
    margin: 0 0 12px 0;
    font-size: 16px;
}

.lbn-t__meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lbn-t__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #f0f2f5;
}

.lbn-t__stars i {
    color: var(--brand-gold);
    font-size: 14px;
}

.lbn-t__nav a {
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-decoration: none;
    background: rgba(0, 0, 0, .35);
    color: #fff;
    border: 1px solid #ffffff33;
    backdrop-filter: blur(4px);
}

.lbn-t__prev {
    left: 6px
}

.lbn-t__next {
    right: 6px
}

.lbn-t__nav a:hover {
    background: rgba(0, 0, 0, .5) !important
}

.lbn-t__dots {
    position: absolute;
    left: 50%;
    bottom: 8px;
    translate: -50% 0;
    display: flex;
    gap: 8px;
}

.lbn-t__dots a {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    text-indent: -9999px;
    overflow: hidden;
    background: #cfd5df;
    border: 1px solid #9eacbf;
}

.lbn-t__dots a.is-active {
    background: var(--brand-gold);
    border-color: transparent;
}

/* ===== Amenities (kartlar) ===== */
.lbn-amenities {
    padding: clamp(28px, 5vw, 64px) 20px;
}

.lbn-amenities__head {
    max-width: 820px;
    margin: 0 auto 18px;
    text-align: center;
}

.lbn-amenities__head p {
    color: var(--ink);
    margin: .35rem 0 0;
}

.lbn-amenities__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(12, 1fr);
}

.lbn-am-card {
    grid-column: span 4;
    background: var(--card);
    border: 1px solid var(--card-br);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(10, 35, 66, .06);
    transform: translateY(16px);
    opacity: .001;
}

.lbn-am-card.in {
    transform: none;
    opacity: 1;
    transition: transform 520ms cubic-bezier(.2, .7, .2, 1), opacity 520ms ease;
}

.lbn-am-card__media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.lbn-am-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    transition: transform 700ms cubic-bezier(.2, .7, .2, 1), filter 700ms ease;
    filter: brightness(.92) contrast(1.06);
}

.lbn-am-card:hover .lbn-am-card__media img {
    transform: scale(1.08);
}

.lbn-am-card__tag {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #1b1b1b;
    font-weight: 700;
    font-size: 13.5px;
    background: linear-gradient(135deg, #f7e6a1, #fdf6d0);
    border: 1px solid #f0de99;
}

.lbn-am-card__tag i {
    color: #86650f;
}

.lbn-am-card__body {
    padding: 16px 16px 18px;
}

.lbn-am-card__body h3 {
    margin: 0 0 6px 0;
}

.lbn-am-card__body p {
    margin: 0 0 12px 0;
    color: var(--muted);
}

.amenities-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 999px;
    border: 2px solid transparent;
    font-size: 14.5px;
}

.amenities-btn--primary {
    background: var(--brand-gold);
    color: #1b1b1b;
}

.amenities-btn--primary:hover {
    background: #d8b454 !important;
    color: #1b1b1b !important;
}

.amenities-btn--ghost {
    background: transparent;
    color: var(--brand-navy);
    border-color: #d9dbe2;
    border-style: solid;
}

.amenities-btn--ghost:hover {
    background: #f4f6fa !important;
    color: var(--brand-navy) !important;
}

/* ===== Gallery ===== */
.lbn-gallery {
    padding: clamp(28px, 5vw, 64px) 20px;
}

.lbn-g__head {
    max-width: 820px;
    margin: 0 auto 10px;
    text-align: center;
}

.lbn-g__head p {
    color: var(--ink);
    margin: .35rem 0 0;
}

.lbn-g__filters {
    max-width: 1200px;
    margin: 4px auto 14px;
    padding: 0 8px;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    color: #9a8d7a;
    font-weight: 700;
}

.lbn-g__filters a {
    text-decoration: none;
    color: var(--brand-navy);
    padding: 4px 8px;
    border-radius: 10px;
}

.lbn-g__filters a:hover {
    background: #f3f5f9 !important;
}

.lbn-g__filters a.is-active {
    background: linear-gradient(135deg, #f7e6a1, #fdf6d0);
    color: #1b1b1b;
    border: 1px solid #f0de99;
}

.lbn-g__wrap {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.lbn-g__grid {
    column-count: 4;
    column-gap: 12px;
}

.lbn-g__item {
    display: block;
    margin: 0 0 12px;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--card-br);
    box-shadow: 0 8px 22px rgba(10, 35, 66, .06);
}

.lbn-g__item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 600ms cubic-bezier(.2, .7, .2, 1), filter 600ms ease;
    transform: scale(1.02);
    filter: brightness(.96) contrast(1.05);
}

.lbn-g__item:hover img {
    transform: scale(1.06);
}

.lbn-g__item.is-hidden {
    display: none;
}

.lbn-g__wrap.is-compact .lbn-g__grid {
    max-height: 520px;
    overflow: hidden;
}

.lbn-g__fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 58px;
    height: 120px;
    pointer-events: none;
    background: linear-gradient(0deg, var(--beige) 0%, rgba(255, 255, 255, 0) 100%);
    display: none;
}

.lbn-g__wrap.is-compact .lbn-g__fade {
    display: block;
}

.lbn-g__controls {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 12px;
}

.gallery-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 999px;
    border: 2px solid transparent;
    font-size: 14.5px;
}

.gallery-btn--primary {
    background: var(--brand-gold);
    color: #1b1b1b;
}

.gallery-btn--primary:hover {
    background: #d8b454 !important;
    color: #1b1b1b !important;
}

.gallery-btn--ghost {
    background: transparent;
    color: var(--brand-navy);
    border-color: #d9dbe2;
    border-style: solid;
}

.gallery-btn--ghost:hover {
    background: #f4f6fa !important;
    color: var(--brand-navy) !important;
}

/* Lightbox */
.lbn-g__lightbox {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: none;
    align-items: center;
    justify-content: center;
}

.lbn-g__lightbox.is-open {
    display: flex;
}

.lbn-g__lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(4px);
}

.lbn-g__lightbox-figure {
    position: relative;
    z-index: 2;
    max-width: min(92vw, 1200px);
    max-height: 86vh;
    display: grid;
    gap: 8px;
    justify-items: center;
    color: #e9edf3;
}

.lbn-g__lightbox-figure img {
    max-width: 100%;
    max-height: 86vh;
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .45);
}

.lbn-g__lightbox-figure figcaption {
    font-size: 14px;
    color: #cfd6e3;
}

.lbn-g__lb-close,
.lbn-g__lb-prev,
.lbn-g__lb-next {
    position: absolute;
    z-index: 3;
    text-decoration: none;
    color: #fff;
    background: rgba(0, 0, 0, .4);
    border: 1px solid #ffffff33;
    backdrop-filter: blur(4px);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 20px;
}

.lbn-g__lb-close {
    top: 20px;
    right: 20px;
}

.lbn-g__lb-prev {
    left: 16px;
    top: 50%;
    translate: 0 -50%;
}

.lbn-g__lb-next {
    right: 16px;
    top: 50%;
    translate: 0 -50%;
}

.lbn-g__lb-close:hover,
.lbn-g__lb-prev:hover,
.lbn-g__lb-next:hover {
    background: rgba(0, 0, 0, .6) !important;
}

/* ===== Blog (bej uyumlu) ===== */
.lbn-blog {
    padding: clamp(28px, 5vw, 72px) 20px;
    background: #c0c0c0;
    color: var(--ink);
}

.lbn-b__head {
    max-width: 820px;
    margin: 0 auto 18px;
    text-align: center;
}

.lbn-b__head p {
    color: var(--ink);
    margin: .35rem 0 0;
}

.lbn-b__filters {
    max-width: 1200px;
    margin: 10px auto 16px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.lbn-b__filters a {
    text-decoration: none;
    font-weight: 700;
    color: #3a3a3a;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid #ead9bf;
    background: var(--pill);
}

.lbn-b__filters a:hover {
    background: #f3e7cf !important;
}

.lbn-b__filters a.is-active {
    background: linear-gradient(135deg, #f7e6a1, #fdf6d0);
    color: #1b1b1b;
    border-color: #f0de99;
}

.lbn-b__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(12, 1fr);
}

.lbn-b__card {
    grid-column: span 4;
    display: grid;
    background: #FFF0DB;
    border: 1px solid var(--card-br);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 18px rgba(10, 35, 66, .10);
    transform: translateY(14px);
    opacity: 1;
    transform: none;
}

.lbn-b__card.in {
    transform: none;
    opacity: 1;
    transition: transform 520ms cubic-bezier(.2, .7, .2, 1), opacity 520ms ease;
}

.lbn-b__media {
    position: relative;
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.lbn-b__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    transition: transform 700ms cubic-bezier(.2, .7, .2, 1), filter 700ms ease;
    filter: brightness(.98) contrast(1.04);
}

.lbn-b__card:hover .lbn-b__media img {
    transform: scale(1.08);
}

.lbn-b__badge {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 2;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 12.5px;
    color: #1b1b1b;
    background: linear-gradient(135deg, #f7e6a1, #fdf6d0);
    border: 1px solid #f0de99;
}

.lbn-b__badge--gold {
    background: linear-gradient(135deg, #f7e6a1, #fdf6d0);
    border-color: #f0de99;
}

.lbn-b__body {
    padding: 14px 16px 18px;
    display: grid;
    gap: 8px;
}

.lbn-b__meta {
    font-size: 13px;
    color: #7b6d59;
}

.lbn-b__body h3 {
    margin: 2px 0 2px;
    font-size: clamp(16px, 1.2vw, 20px);
    color: var(--brand-navy);
}

.lbn-b__body h3 a {
    color: inherit;
    text-decoration: none;
}

.lbn-b__body h3 a:hover {
    text-decoration: underline !important;
}

.lbn-b__body p {
    margin: 0;
    color: #4a4e54;
}

/* CTA */
.blog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 999px;
    border: 2px solid transparent;
    font-size: 14.5px;
}

.blog-btn--primary {
    background: var(--brand-gold);
    color: #1b1b1b;
}

.blog-btn--primary:hover {
    background: #d8b454 !important;
    color: #1b1b1b !important;
}

.blog-btn--ghost {
    background: transparent;
    color: var(--brand-navy);
    border-color: #d9dbe2;
    border-style: solid;
}

.blog-btn--ghost:hover {
    background: #f2f3f7 !important;
    color: var(--brand-navy) !important;
}

.lbn-b__card.is-hidden {
    display: none;
}

/* ===== Media Queries (TEK BLOK) ===== */
@media (max-width: 1200px) {
    .lbn-g__grid {
        column-count: 3;
    }
}

@media (max-width: 992px) {
    .rooms-wrap {
        grid-template-columns: 1fr;
    }

    .rooms-right>.room-card {
        min-height: 420px;
    }

    .lbn-amenities__grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .lbn-am-card {
        grid-column: span 6;
    }

    .lbn-b__grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .lbn-b__card {
        grid-column: span 6;
    }

    .hero,
    .hero__slide {
        min-height: 76vh;
        height: 76vh;
    }

    .lbn-features--grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 800px) {
    .lbn-g__grid {
        column-count: 2;
    }
}

@media (max-width: 640px) {
    .lbn-t__nav a {
        display: none;
    }

    .rooms-left-bottom {
        grid-template-columns: 1fr;
    }

    .room-card--wide {
        height: 240px;
    }

    .room-card--small {
        height: 220px;
    }

    .rooms-right>.room-card {
        min-height: 360px;
    }

    .lbn-features--grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .lbn-g__grid {
        column-count: 1;
    }
}