:root{
  /* Brand / Colors */
  --clr-bg-dark: #0b0b0b;
  --clr-text-light: #f5f5f5;
  --clr-gold: #c2a36b;

  /* Light blocks palette */
  --bg: #E4E0DC;
  --text: #443e37;
  --muted: #6a655d;

  /* Layout */
  --gutter: 60px;

  /* Typography */
  --font-body: 'Montserrat', system-ui, sans-serif;
  --font-display: 'Marcellus', serif;
  --font-serif: 'Times New Roman', serif;

  /* Hero BG */
  --bg-image: url("../images/home/7R502701-HDR-Edit-1-scaled.webp");
  --overlay-top: .55;
  --overlay-bottom: .35;
}

/* GLOBAL STYLES */
*,
*::before,
*::after { box-sizing: border-box; }

html, body { height: 100%; }

html { scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--clr-bg-dark);
  color: var(--clr-text-light);
  font-family: var(--font-body);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* UTILITIES */
.u-center {
  display: grid;
  place-items: center;
}
.u-max-content {
  max-width: max-content;
  margin-inline: auto;
}

/* BACKGROUND IMAGE */
.bg-fixed {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;;
}
.bg-fixed__img {
  position: absolute;
  inset: 0;
  background: var(--bg-image) center/cover no-repeat;
  transform: scale(1.02);
  height: 95vh;
  width: 100%;
  will-change: transform, background-position;
}
.bg-fixed__ov {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      120% 80% at 50% 10%,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.05) 38%,     /* 🟢 lighter overlay */
      rgba(0, 0, 0, 0.12) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.08),
      rgba(0, 0, 0, 0.10) 46%,
      rgba(0, 0, 0, 0) 70%
    );
  opacity: 1;
  will-change: opacity;
}


/* HERO */
.hero{
  position: relative;
  min-height: 95vh;
  display: grid;
  place-items: center;
  text-align: center;
  background: transparent;
  overflow: hidden;
}
.hero::before{
  content: "";
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.35);
  /* backdrop-filter: blur(1px); */
  pointer-events: none;
}
.hero-content{
  position: relative;
  z-index: 2;
  padding: 0 4vw;
}
.hero-title{
  font-family: var(--font-display);
  font-size: clamp(40px, 6.8vw, 110px);
  font-weight: 400;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 22px;
  text-shadow: 0 2px 22px rgba(0,0,0,.35);
  transform-origin: center bottom;
  will-change: transform, opacity;
}
.hero-title .line {
  display: block;
  will-change: transform;
}
.hero-meta{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: rgba(255,255,255,.1);
  padding: 10px 16px;
  color: #fff;
  border-radius: 20px;
}
.hero-meta svg {
  opacity: .9;
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255,255,255,.8);
  border-radius: 14px;
}
.scroll-cue::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  width: 4px;
  height: 7px;
  background: #fff;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: drop 1.8s ease-in-out infinite;
}

/* ABOUT */
.about-section {
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  grid-auto-flow: row;
  grid-column-gap: var(--gutter);
  grid-row-gap: 0;
  padding: 80px 20px 10px;
  max-width: max-content;
  margin: 0 auto;
}
.about-left {
  grid-column: 1 / 2;
  grid-row: 1 / span 2;
  overflow: hidden;
  margin-left: -20px;
}
.about-left img {
  width: 100%;
  height: 650px;
  max-height: 1200px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.about-title {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  align-self: start;
  margin-bottom: 100px;
  max-width: max-content;
}
.about-title h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.3;
  margin: 0 0 14px;
  color: var(--text);
}
.about-title .divider {
  width: 100%;
  height: 1px;
  background: var(--text);
  margin-bottom: 18px;
}
.about-title p {
  margin: 0 0 12px;
  font-size: 15px;
  font-family: var(--font-serif);
  color: var(--muted);
}
.about-right {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  max-height: 400px;
}
.about-right img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}
.about-caption {
  margin-top: 170px;
  grid-column: 1 / 2;
  grid-row: 2 / 4;
  align-self: center;
  text-align: center;
  font-size: 25px;
  font-family: var(--font-display);
  color: gray;
}
.about-caption span {
  display: block;
}

.about-view-more {
  font-family: var(--font-serif);
  font-style: italic;
  display: block;
  width: 100%;
  text-align: right;
  gap: 10px;
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #8a847b;
  position: relative;
  overflow: hidden;
  transition: color .3s ease;
}
.about-view-more svg {
  transition: transform .25s ease;
}
.about-view-more:hover svg {
  transform: translateX(3px);
}
.about-view-more::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  height: 1px;
  width: 12%;
  background: rgba(0, 0, 0, .08);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
}
.about-view-more:hover::after {
  transform: scaleX(1);
}

/* STAY */
.stay-section {
  background: var(--bg);
  padding: 10px 24px 100px;
  max-width: max-content;
  margin: 0 auto;
}
.stay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.stay-card {
  display: flex;
  flex-direction: column;
}
.stay-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #d9d3c8;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.stay-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.stay-card:hover .stay-media img {
  transform: scale(1.03);
}
.stay-section .eyebrow {
  margin: 18px 0 8px;
  font-size: 10px;
  font-family: var(--font-serif);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #8a847b;
  font-weight: 500;
}
.stay-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  margin: 0 0 14px;
  line-height: 1.2;
  color: var(--text);
}
.stay-section .divider {
  height: .25px;
  background: #443e37;
  width: 100%;
  margin: 8px 0 18px;
}
.view-more {
  font-family: var(--font-serif);
  font-style: italic;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-end;
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #8a847b;
  position: relative;
  overflow: hidden;
  transition: color .3s ease;
}
.view-more svg {
  transition: transform .25s ease;
}
.view-more:hover svg {
  transform: translateX(3px);
}
.view-more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 1px;
  width: 100%;
  background: rgba(0, 0, 0, .08);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.view-more:hover::after {
  transform: scaleX(1);
}

/* BOOKING */
.booking-section {
  background: var(--bg);
  padding: 10px 24px 20px;
  margin: 0 auto;
}


/* Header */
.header-section {
  text-align: center;
  padding: 0;
  background-color: #E4E0DC;
}

.book-separator-line {
  width: 100%;
  height: 1px;
  background-color: #443e37;
  margin-bottom: 18px;
}

.section-heading {
  text-align: center;
  font-size: .8em;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 15px 0 30px 0;
  font-weight: 300;
  color: #555;
}

/* MAIN WRAPPER */
.booking-layout-container {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #ffffff;
}

/* HERO IMAGE */
.booking-layout-hero {
  position: relative;
  width: 100%;
  height: clamp(260px, 45vw, 550px);
  overflow: hidden;
}

/* background image */
.booking-layout-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/superior_king/big_563dsc_9355-edit.webp");
  background-size: cover;
  background-position: center center;
}

/* gradient fade */
.booking-layout-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.85) 0%,
    rgba(255,255,255,0.55) 35%,
    rgba(255,255,255,0.00) 70%
  );
}

/* LEFT HEADING */
.booking-layout-heading {
  position: absolute;
  left: 6%;
  top: 60%;
  transform: translateY(-50%);
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 3.4vw, 3rem);
  line-height: 1.1;
  color: var(--text);
  z-index: 2;
}

/* BOTTOM BEIGE PANEL */
.booking-layout-bottom {
  background: #ffffff;
  text-align: center;
  padding: 40px 8% 50px;
}

.booking-layout-bottom-title {
  margin: 0 0 18px;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  letter-spacing: 0.08em;
  color: var(--text);
  text-transform: uppercase;
}

.booking-layout-bottom-text {
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--font-serif);
  line-height: 1.8;
  color: #5d4b3f;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: .02em;
}

/* BLACK BORDER BUTTON */
.booking-layout-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 32px;
  
  font-family: var(--font-serif);
  font-style: italic;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: .15em;
  font-size: 0.95rem;
  color: #000;
  border: 1px solid #000;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.25s ease;
}

.booking-layout-btn:hover {
  background: #000;
  color: #fff;
}




/* .booking-layout-container {
  display: flex;
  background-color: #fcfcfc;
  border: 1px solid #f0f0f0;
  box-shadow: 0 0 20px rgba(0, 0, 0, .03);
}
.booking-image-column {
  flex: 1.2;
  max-height: 400px;
  overflow: hidden;
}
.booking-image-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.booking-text-column {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.text-content-wrapper {
  max-width: max-content;
  margin: 0 auto;
}
.booking-main-title {
  font-family: var(--font-serif);
  font-size: 1.3em;
  font-weight: 400;
  margin: 0 0 15px;
  line-height: 1.2;
  color: #222;
}
.title-separator {
  width: 100%;
  height: 1px;
  background: #e5e5e5;
  margin: 0 0 25px;
}
.booking-description-text {
  font-size: .95em;
  line-height: 1.8;
  color: #666;
  font-family: var(--font-serif);
  margin-bottom: 35px;
  font-weight: 300;
}
.cta-container {
  margin-bottom: 25px;
  padding-top: 10px;
}
.book-now-button {
  display: inline-block;
  width: 100%;
  padding: 15px 40px;
  border: 1px solid #333;
  color: #333;
  font-size: .8em;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background-color .3s, color .3s;
  text-align: center;
}
.book-now-button:hover {
  background: #333;
  color: #fff;
}*/
.all-booking-link {
  display: block;
  text-align: center;
  font-size: .90em;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: gray;
  text-decoration: none;
  margin-top: 20px;
  margin-bottom: 20px;
  transition: color .3s;
}
.all-booking-link:after {
  content: ' →';
  display: inline-block;
  margin-left: 5px;
}
.all-booking-link:hover{ color: #000; }

/* GALLERY */
.gallery-section {
  position: relative;
  width: 100%;
  height: 60vh;
  background: url('../images/home/711557459.webp') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .28);
  z-index: 1;
}
.gallery-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  animation: fadeIn 1.6s ease both;
}
.gallery-content .separator-line {
  width: 100%;
  height: 1px;
  background: #fff;
  margin-bottom: 18px;
}
.gallery-content h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.3;
  color: #fff;
  margin: 0 0 10px;
}
.gallery-content p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  color: rgba(255, 255, 255, .9);
  margin: 0 0 28px;
  letter-spacing: .04em;
}
.gallery-btn {
  font-family: var(--font-serif);
  font-style: italic;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .15em;
  background: #b3a89b;
  color: #fff;
  padding: 12px 38px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .3s ease;
}
.gallery-btn:hover{ background: #9f9386; }




/* ===============================
   EVENTS FULL WIDTH SPLIT SECTION
   =============================== */

/* eyebrow */
.package-eyebrow{
  font-family: var(--font-serif);
  text-align: center;
  font-size: 15px;
  background: #E4E0DC;
  letter-spacing: .22em;
  color: #8a847b;
  text-transform: uppercase;
  margin: 0;
  padding: 22px 0;
}

/* section wrapper */
.split-section.split-single{
  display: flex;
  width: 100%;
  height: 70vh;
  position: relative;
  overflow: hidden;
  font-family: var(--font-display);
}

/* full width card */
.split-half.split-full{
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* background image */
.split-half.split-full .split-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 20% 80%;
  transition: transform .6s ease;
}

/* dark overlay */
.split-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1;
  transition: background .4s ease;
}

/* center content */
.split-content{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 24px;
  color: #fff;
}

/* subtitle */
.split-subtitle{
  font-size: .9rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: rgba(255,255,255,.85);
}

/* title */
.split-title{
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 400;
  margin-bottom: 18px;
  line-height: 1.3;
}

/* text */
.split-text{
  max-width: 720px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.75;
  letter-spacing: .02em;
  color: rgba(255,255,255,.9);
  margin-bottom: 26px;
}

/* CTA button */
.split-btn{
  display: inline-block;
  padding: 12px 34px;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-style: italic;
  background: rgba(250,248,246,.85);
  color: #2f2620;
  border-radius: 5px;
  text-decoration: none !important;
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

/* hover effects */
.split-half.split-full:hover .split-image{
  transform: scale(1.07);
}
.split-half.split-full:hover .split-overlay{
  background: rgba(0,0,0,.55);
}
.split-btn:hover{
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 22px 46px rgba(0,0,0,.4);
  color: #000;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 1024px){
  .split-text{
    font-size: .95rem;
  }
}

@media (max-width: 768px){
  .split-section.split-single{
    height: 420px;
  }

  .split-title{
    font-size: 1.6rem;
  }
  
  .split-half.split-full .split-image{
    object-position: center center;
  }

  .split-text{
    font-size: .85rem;
    margin-bottom: 18px;
  }

  .split-btn{
    padding: 10px 26px;
    font-size: .72rem;
  }
}

@media (max-width: 480px){
  .split-section.split-single{
    height: 360px;
  }

  .split-title{
    font-size: 1.35rem;
  }

  .split-subtitle{
    font-size: .75rem;
  }

  .split-text{
    font-size: .75rem;
  }
}




/* DINING */
.dining-section{
  background: #E4E0DC; color: #443e37; font-family: var(--font-serif);
  padding: 40px 2vw 30px; width: 100%;
}
.dining-heading{
  text-align: center; font-size: 15px; letter-spacing: .22em; color: #8a847b; text-transform: uppercase; margin-bottom: 30px;
}
.dining-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; justify-content: center; }
.dining-card{ background: #fff; display: flex; flex-direction: column; border: 1px solid rgba(0,0,0,0.08); }
.dining-img{ width: 100%; height: 340px; overflow: hidden; }
.dining-img img{ width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.02); transition: transform .6s ease; }
.dining-card:hover img{ transform: scale(1.05); }
.dining-info{ text-align: center; padding: 26px 20px 30px; }
.dining-eyebrow{ font-size: 12px; letter-spacing: .22em; color: #8a847b; text-transform: uppercase; margin-bottom: 2px; }
.dining-title{ font-size: 22px; letter-spacing: .02em; color: #443e37; margin-bottom: 2px; }
.dining-meta{ font-size: 10px; color: #9c9289; letter-spacing: .15em; }
.dining-meta span + span::before{ content: "•"; margin: 0 8px; opacity: .5; }

.dining-view-more{ display: flex; justify-content: center; align-items: center; text-align: center; margin-top: 30px; font-family: var(--font-serif); font-style: italic; width: 100%; }
.dining-view-more a{
  color: #8a847b; text-transform: uppercase; text-decoration: none; font-size: 12px; letter-spacing: .28em; display: inline-flex; align-items: center; gap: 8px; padding-bottom: 4px; position: relative;
}
.dining-view-more a::after{
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: rgba(0,0,0,.15);
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.dining-view-more a:hover::after{ transform: scaleX(1); }
.dining-view-more svg{ transition: transform .3s ease; }
.dining-view-more a:hover svg{ transform: translateX(5px); }

/* Contact Us */
.contact-section {
  background: var(--bg);
  padding: .5px 0 10px;
}
.betulum-ui-section {
  /* background:#ffffff; */
  margin: 50px 20px;
}

.header-section {
  text-align: center;
  padding: 0;
  /* background:#ffffff; */
}
.separator-line {
  width: 100%;
  height: 1px;
  background-color: #443e37;
  margin-bottom: 18px;
}
.section-heading {
  text-align: center;
  font-size: .8em;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 15px 0 30px 0;
  font-weight: 300;
  color: #555;
}



.contact-orbit-wrap{
  max-width:1830px;
  margin:0 auto;
  position:relative;
}

/* SQUARE IMAGE */
.contact-orbit-photo-wrap{
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  width:600px;
  height:460px;
  border-radius:8px;
  background:#e8d7c7;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 20px 65px rgba(0,0,0,0.22);
  overflow:hidden;
}

.contact-orbit-photo{
  width:100%;
  height:100%;
  border-radius:8px;
  background-image:url("../images/home/contact.webp");
  background-size:cover;
  background-position:center;
}

/* MAIN CARD */
.contact-orbit-card{
  margin-left:550px;
  background: #ffffff;
  text-decoration: none;
  border-radius:8px;
  border:1px solid rgba(169,144,118,0.28);
  box-shadow:0 22px 60px rgba(0,0,0,0.14);
  padding:34px 36px 38px;
  position:relative;
  overflow:hidden;
}

.contact-orbit-card::before{
  content:"";
  position:absolute;
  width:100%;
  height:150px;
  border-radius:50%;
  background: rgba(188, 174, 167, 0.5);
  /* background: rgba(16, 70, 34, 0.2); */
  filter:blur(45px);
  right:-80px;
  top:-80px;
}

.contact-orbit-card::after{
  content:"";
  position:absolute;
  width:100%;
  height:150px;
  border-radius:50%;
  background: rgba(188, 174, 167, 0.5);
  /* background: rgba(16, 70, 34, 0.2); */
  filter:blur(45px);
  left:-80px;
  bottom:-80px;
  z-index:1;
}

.contact-orbit-eyebrow{
  font-size:0.75rem;
  font-family: var(--font-body);
  letter-spacing:0.18em;
  text-transform:uppercase;
  color: #7c6857;
}

.contact-orbit-title{
  font-size:clamp(1.8rem,2.6vw,2.4rem);
  font-family: var(--font-display);
  line-height: 1.1;
  color: var(--text);
  margin:10px 0 8px;
}

.contact-orbit-subtitle{
  font-size:1rem;
  color:#6a5a4b;
  font-family: var(--font-serif);
  font-style: italic;
  letter-spacing: .02em;
  line-height:1.75;
  max-width:720px;
  margin:0 0 26px;
}

/* INFO ROW */
.contact-orbit-info-row{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
  text-decoration: none;
  margin-bottom:26px;
}

.contact-orbit-icon{
  width:34px;
  height:34px;
  border-radius:50%;
  border:1px solid rgba(99,78,60,0.35);
  display:flex;
  color: #000;
  align-items:center;
  justify-content:center;
  background:#faf5ef;
  margin-bottom:9px;
}

.contact-orbit-label{
  font-size:0.8rem;
  font-family: var(--font-body);
  text-decoration: none;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:#7c6857;
}

.contact-orbit-value{
  font-size:1rem;
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: .02em;
  text-decoration: none;
  color:#3a2f27;
  line-height:1.7;
}

.contact-orbit-value a{
  color:inherit;
  text-decoration:none;
}

.contact-orbit-value a:hover{
  border-bottom:0.5px solid rgba(0,0,0,0.7);
}

.contact-orbit-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  border-top:1px dashed rgba(141,117,92,0.4);
  padding-top:14px;
}
.contact-orbit-bottom .contact-orbit-label{
  margin-bottom:6px;
}

.contact-orbit-social{
  display:flex;
  gap:10px;
}

.contact-orbit-social a{
  width:34px;
  height:34px;
  text-decoration: none;
  border-radius:50%;
  border:1px solid rgba(70,55,40,0.5);
  display:flex;
  align-items:center;
  justify-content:center;
  background:#E4E0DC;
  color:#443e37;
  transition:.22s ease;
}

.contact-orbit-social a:hover{
  text-decoration: none;
  background:#000;
  color:#fff;
  transform:translateY(-2px);
}

.contact-btn{
  margin-top:12px;
}

.contact-orbit-cta{
  padding:9px 25px;
  text-decoration: none;
  font-family: var(--font-serif);
  font-style: italic;
  border-radius:1px;
  border:1px solid rgba(70,55,40,0.5);
  background:#E4E0DC;
  color:#443e37;
  font-size:0.8rem;
  letter-spacing:0.16em;
  text-transform:uppercase;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:.22s ease;
}

.contact-orbit-cta:hover{
  text-decoration: none;
  background:#000;
  color:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,0.22);
}

/* 🔻 TABLET + MOBILE: FROM 768px DOWN */
@media(max-width:768px){
  .contact-orbit-photo-wrap{
    position:static;
    transform:none;
    margin:0 auto 24px;
    width:380px;
    height:260px;
    border-radius:8px;
  }
  .contact-orbit-card{
    margin-left:0;
    padding:32px 24px 34px;
  }
  
}

@media(max-width:720px){
  .contact-orbit-info-row{
    grid-template-columns:1fr;
  }
  .contact-orbit-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}

/* keep local theming only inside the section */
/* .betulum-ui-section .themed * {
  box-sizing: border-box;
  background-color: #f7f5f1;
  font-family: 'Georgia', serif;
  color: #333;
}

.contact-layout-container {
  display: flex;
  background-color: #fcfcfc;
  border: 1px solid #f0f0f0;
  box-shadow: 0 0 20px rgba(0, 0, 0, .03);
}
.contact-image-column {
  flex: 1.2;
  max-height: 400px;
  overflow: hidden;
}
.contact-image-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-text-column {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.text-content-wrapper {
  max-width: max-content;
  margin: 0 auto;
}
.contact-main-title {
  font-family: var(--font-serif);
  font-size: 1.3em;
  font-weight: 400;
  margin: 0 0 15px;
  line-height: 1.2;
  color: #222;
}
.title-separator {
  width: 100%;
  height: 1px;
  background: #e5e5e5;
  margin: 0 0 25px;
}
.contact-description-text {
  font-size: .95em;
  line-height: 1.8;
  color: #666;
  font-family: var(--font-serif);
  margin-bottom: 35px;
  font-weight: 300;
}
.cta-container {
  margin-bottom: 25px;
  padding-top: 10px;
}
.contact-now-button {
  display: inline-block;
  width: 100%;
  padding: 15px 40px;
  border: 1px solid #333;
  color: #333;
  font-size: .8em;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background-color .3s, color .3s;
  text-align: center;
}
.contact-now-button:hover {
  background: #333;
  color: #fff;
}
.all-contact-link {
  display: block;
  text-align: center;
  font-size: .70em;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: gray;
  text-decoration: none;
  margin-top: 20px;
  transition: color .3s;
}
.all-contact-link:after {
  content: ' →';
  display: inline-block;
  margin-left: 5px;
}
.all-contact-link:hover{ color: #000; }

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    width: 25px;
    height: 25px;
    fill: #6a655d;
    transition: fill 0.3s;
}


.social-icon:hover {
    fill: #3b5998;
}

.social-icon.instagram:hover {
    fill: #E1306C;
} */


/* WHATSAPP FLOAT */
.whatsapp-float{
  position: fixed;
  bottom: 25px;
  right: 18px;
  width: 60px;
  height: 60px;
  /* background: #25D366; */
  background: #104622;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(0,0,0,.3);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  z-index: 999;
  transition: transform .3s ease, box-shadow .3s ease;
  text-decoration: none !important;
}
.whatsapp-float:hover{
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0,0,0,.4);
}
.whatsapp-icon{
  /* color: #fff; */
  color: #dcd6cc;
}

/* ANIMATIONS (keyframes) */
@keyframes drop{
  0%{ transform: translate(-50%,0); opacity: 1; }
  80%{ transform: translate(-50%,12px); opacity: 0; }
  100%{ opacity: 0; }
}
@keyframes fadeIn{
  from{ opacity: 0; transform: translateY(25px); }
  to{ opacity: 1; transform: translateY(0); }
}

/* Mobile Responsive Styles */

/* Hero */
@media (max-width: 768px){
  .hero-title{
    font-size:clamp(32px, 9vw, 72px);
  }
  .hero-meta{
    font-size: 12px;
    padding: 8px 12px;
  }
}

/* About */
@media (max-width: 768px){
  .about-section{
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    padding: 40px 15px;
    grid-column-gap: 0;
    grid-row-gap: 25px;
  }
  .about-left{
    grid-column: 1;
    grid-row: 1;
    margin-left: 0;
  }
  .about-left img{
    height: auto;
    max-height: 420px;
  }
  .about-title{
    grid-column: 1;
    grid-row: 2;
    max-width: 100%;
    margin-bottom: 0;
  }
  .about-title h1{ font-size: 24px; }
  .about-title p{ font-size: 13px; }
  .about-right{
    grid-column: 1;
    grid-row: 3;
    max-height: 300px;
  }
  .about-right img{ max-height: 300px; }
  .about-caption{
    grid-column: 1;
    grid-row: 4;
    margin-top: 30px;
    font-size: 18px;
  }
  .about-view-more{
    font-size: 11px;
    letter-spacing: .2em;
  }
  .about-view-more::after{
    width: 30%;
  }
}

/* Stay */
@media (max-width: 768px){
  .stay-section{ padding: 60px 16px 80px; }
  .stay-grid{
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .stay-media{ aspect-ratio: 4 / 3; }
  .stay-title{ font-size: 26px; }
  .stay-section .eyebrow{
    font-size: 11px;
    letter-spacing: .14em;
  }
  .view-more{
    font-size: 11px;
    letter-spacing: .2em;
  }
}

/* Booking */
/* RESPONSIVE */
@media (max-width: 900px) {
  .booking-layout-heading {
    left: 7%;
    top: 65%;
    font-size: 1.7rem;
  }
  .booking-layout-bottom {
    padding: 30px 20px 40px;
  }
}


/* Gallery */
@media (max-width: 768px){
  .gallery-section{ height: 80vh; }
  .gallery-content h2{ font-size: 26px; }
  .gallery-content p{ font-size: 13px; }
  .gallery-btn{
    font-size: 11px;
    padding: 10px 30px;
  }
}



/* Events */


/* DINING */
@media (max-width: 1100px){
  .dining-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .dining-title{ font-size: 20px; }
}
@media (max-width: 768px){
  .dining-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .dining-title{ font-size: 18px; }
  .dining-img{ height: 260px; }
}

/* Contact Us */
@media (max-width: 900px){
  .contact-layout-container{ flex-direction: column; }
  .contact-text-column{ padding: 30px; }
  .contact-image-column{
    height: 300px;
    max-height: none;
  }
}

/* WhatsApp */
@media (max-width: 768px){
  .whatsapp-float{
    bottom: 20px;
    right: 18px;
    width: 50px;
    height: 50px;
    font-size: 24px;
    padding: 12px;
  }

  
}


/* ========== GALA WELCOME OVERLAY ========== */

/* ========== GALA WELCOME OVERLAY ========== */

body.no-scroll {
  overflow: hidden;
}

/* full screen dim background */
.welcome-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* hide state (JS එකෙන් add/remove වෙනවා) */
.welcome-overlay.hide {
  opacity: 0;
  visibility: hidden;
}

/* inner card */
.welcome-overlay-inner {
  max-width: 760px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 32px 30px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(248,243,234,0.68) 0%, rgba(248,243,234,0.68) 100%), url("https://res.cloudinary.com/dzcfc1ggo/image/upload/v1770297401/henry-lai-Y4bTfD2Qrko-unsplash-2_lqhcwu.jpg") center/contain no-repeat;
  box-shadow: 0 24px 80px rgba(0,0,0,0.75);
  border: 1px solid rgba(180,140,90,0.4);
  font-family: "Montserrat", sans-serif;
  text-align: center;
  animation: gala-pop 0.7s ease-out;
}

/* subtle frame look to match poster */
.gala-theme {
  position: relative;
}

.gala-theme::before,
.gala-theme::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(180,140,90,0.6);
  pointer-events: none;
}

.gala-theme::after {
  inset: 10px;
  border-style: dashed;
  border-color: rgba(180,140,90,0.35);
}

/* header texts */
.gala-eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-display);
  color: #7b6450;
  margin-bottom: 10px;
}

.gala-eyebrow span {
  font-weight: 700;
  color: #b22626;
  font-size: 1.5em;
  text-transform: none;
}

.gala-price-per-person {
  font-size: 12px;
  color: #4b3b31;
  margin-bottom: 18px;
  font-family: var(--font-display);
}

.gala-main-title {
  font-family: "Marcellus", serif;
  font-size: 40px;
  letter-spacing: 0.08em;
  color: #b22626;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.gala-with {
  font-size: 20px;
  color: #4b3b31;
  margin-bottom: 4px;
  font-family: "Marcellus", serif;
}

.gala-with span {
  font-weight: 700;
  font-size: 24px;
  font-family: "Marcellus", serif;
}

.gala-time {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7b6450;
  font-family: var(--font-display);
  margin-bottom: 14px;
}

.gala-divider {
  width: 80px;
  height: 2px;
  margin: 0 auto 18px;
  background: linear-gradient(to right, transparent, #b08b57, transparent);
}

/* grid with details */
.gala-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  text-align: left;
  margin-bottom: 22px;
}

.gala-block h3 {
  font-size: 14px;
  font-family: "Marcellus", serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7b6450;
  margin-bottom: 6px;
}

.gala-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #3f332b;
}

.gala-block li::before {
  content: "•";
  margin-right: 6px;
  color: #b08b57;
}

.gala-highlight {
  color: #b22626;
  font-weight: 600;
}

/* bottom area */
.gala-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.gala-price {
  font-size: 15px;
  font-weight: 600;
  color: #4b3b31;
}

.gala-price span {
  color: #b22626;
  font-size: 18px;
  font-family: "Marcellus", serif;
  margin-left: 6px;
}

.gala-contact {
  font-size: 13px;
  color: #4b3b31;
}

.gala-contact a {
  color: #4b3b31;
  text-decoration: none;
  font-weight: 600;
}

.gala-contact a:hover {
  text-decoration: underline;
}

/* Button row wrapper */
.gala-btn-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

/* BUY TICKETS button */
.gala-buy-btn {
  display: inline-block;
  padding: 11px 34px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: "Marcellus", serif;
  color: #fff;
  background: linear-gradient(120deg, #b08b57, #7f5a2a);
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.gala-buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.6);
  background: linear-gradient(120deg, #7f5a2a, #b08b57);
}

/* button */
.welcome-btn.gala-btn {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 11px 34px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: "Marcellus", serif;
  background: linear-gradient(120deg, #b22626, #7f1b1b);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.welcome-btn.gala-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.6);
  background: linear-gradient(120deg, #7f1b1b, #b22626);
}

/* animation */
@keyframes gala-pop {
  0% { opacity: 0; transform: translateY(20px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* ========== MOBILE RESPONSIVE (768px DOWN) ========== */
@media (max-width: 768px) {
  .welcome-overlay-inner {
    max-width: 90vw;
    padding: 28px 20px 24px;
    border-radius: 16px;
    max-height: 85vh;
    background: linear-gradient(135deg, rgba(248,243,234,0.78) 0%, rgba(248,243,234,0.78) 100%);
  }

  .gala-main-title {
    font-size: 28px;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
  }

  .gala-with {
    font-size: 16px;
    margin-bottom: 2px;
  }

  .gala-with span {
    font-size: 18px;
  }

  .gala-eyebrow {
    font-size: 11px;
    letter-spacing: 0.16em;
    margin-bottom: 8px;
  }

  .gala-time {
    font-size: 11px;
    letter-spacing: 0.14em;
    margin-bottom: 10px;
  }

  .gala-divider {
    width: 60px;
    margin: 0 auto 14px;
  }

  .gala-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 16px;
  }

  .gala-block h3 {
    font-size: 12px;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
  }

  .gala-block ul {
    font-size: 12px;
    line-height: 1.5;
  }

  .gala-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
  }

  .gala-price {
    font-size: 14px;
  }

  .gala-price span {
    font-size: 16px;
  }

  .gala-contact {
    font-size: 12px;
  }

  .gala-btn-row {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 14px;
  }

  .gala-buy-btn,
  .welcome-btn.gala-btn {
    width: 100%;
    padding: 10px 28px;
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .gala-theme::before,
  .gala-theme::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .welcome-overlay {
    padding: 16px;
  }

  .welcome-overlay-inner {
    max-width: 100%;
    padding: 20px 16px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(248,243,234,0.78) 0%, rgba(248,243,234,0.78) 100%);
  }

  .gala-main-title {
    font-size: 24px;
  }

  .gala-with {
    font-size: 14px;
  }

  .gala-with span {
    font-size: 16px;
  }

  .gala-eyebrow {
    font-size: 10px;
  }

  .gala-time {
    font-size: 10px;
  }

  .gala-divider {
    width: 50px;
    margin: 0 auto 12px;
  }

  .gala-block h3 {
    font-size: 11px;
  }

  .gala-block ul {
    font-size: 11px;
  }

  .gala-buy-btn,
  .welcome-btn.gala-btn {
    padding: 9px 24px;
    font-size: 11px;
  }
}

/* Blogs Section */

.blogs-section {
  background: #E4E0DC;
  color: #443e37;
  line-height: 1.65;
  padding: 46px 24px 10px;
  max-width: 100%;
  margin: 0 auto;
}
.blogs-eyebrow {
  font-family: var(--font-serif);
  text-align: center;
  font-size: 15px;
  letter-spacing: .22em;
  color: #8a847b;
  text-transform: uppercase;
  margin: 0 0 22px;
}
.blogs-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 15px;
}
.blogs-card{
  display: flex;
  flex-direction: column;
}
.blogs-media{
  margin: 0;
  border: 1px solid rgba(0,0,0,.06);
  overflow: hidden;
  background: #dcd6cc;
  height: 265px;
}
.blogs-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform .6s ease;
}
.blogs-card:hover .blogs-media img{ transform: scale(1.04); }
.blogs-title{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 25px;
  line-height: 1.22;
  margin: 18px 0 10px;
}
.blogs-copy{
  margin: 0 0 14px;
  font-size: 15px;
  color: #6e685f;
  font-family: var(--font-serif);
}
.blogs-more{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #8a847b;
  text-decoration: none;
  align-self: flex-end;
  font-family: var(--font-serif);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: 12px;
  padding: 6px 0;
  position: relative;
}
.blogs-more::after{
  content: "";
  position: absolute;
  left: 0;bottom: 0; height: 1px; width: 100%; background: rgba(0,0,0,.1);
  bottom: 0;
  height: 1px;
  width: 100%;
  background: rgba(0,0,0,.1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.blogs-more:hover::after{ transform: scaleX(1); }
.blogs-more svg{ transition: transform .25s ease; }
.blogs-more:hover svg{ transform: translateX(6px); }

@media (max-width: 1100px){
  .blogs-grid{ grid-template-columns: repeat(2, 1fr); }
  .blogs-title{ font-size: 30px; }
}
@media (max-width: 768px){
  .blogs{ padding: 40px 16px 70px; }
  .blogs-grid{
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 0;
  }
  .blogs-title{ font-size: 26px; }
  .blogs-copy{ font-size: 13px; }
  .blogs-more{
    font-size: 11px;
    letter-spacing: .22em;
  }
}

/* BLOGS VIEW MORE BUTTON */
.blogs-viewmore {
  display: flex;
  justify-content: center;
  margin-top: 35px;
  margin-bottom: 15px;
}

.blogs-viewmore__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  text-decoration: none;
  color: #8a847b;
  padding: 10px 0;
  position: relative;
}

.blogs-viewmore__btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,.15);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.blogs-viewmore__btn:hover::after {
  transform: scaleX(1);
}

.blogs-viewmore__btn svg {
  transition: transform .25s ease;
}

.blogs-viewmore__btn:hover svg {
  transform: translateX(6px);
}

.blogs-separator-line {
  width: 100%;
  height: 1px;
  background-color: #443e37;
  /* margin-bottom: 18px; */
}

.amenities-separator-line{
  width: 100%;
  height: 1px;
  background-color: #443e37;
  /* margin-bottom: 18px; */
  margin-top: 40px;
}


/* AMENITIES */
.amenities{
  background: #E4E0DC;
  color: #443e37;
  padding: 22px 24px 40px;
}

.amenities-wrap{
  max-width: 100%;
  margin: 0 auto;
}

.amenities-head{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.amenities-kicker{
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #8a847b;
  margin: 0 0 10px;
}

.amenities-heading{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.12;
  margin: 0 0 10px;
}

.amenities-sub{
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: #6e685f;
  margin: 0;
}

/* GRID */
.amenities-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: stretch;
}

/* CARD  */
.amenity-card{
  display: grid;

  grid-template-columns: 60% 40%;

  height: 300px;
  width: 100%;

  background: rgba(255,255,255,.45);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 5px;
  overflow: hidden;

  transition: transform .25s ease, box-shadow .25s ease;
}

/* IMAGE */
.amenity-img{
  height: 100%;
  width: 100%;
}

.amenity-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* FORCE bottom part visible – 4th card desktop only */
.amenities-grid .amenity-card:nth-child(4) .amenity-img{
  overflow: hidden;
}

.amenities-grid .amenity-card:nth-child(4) .amenity-img img{
  width: 100%;
  height: 155%;
  object-fit: cover;
  object-position: bottom;
  transform: translateY(-5%);
}


/* BODY */
.amenity-body{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  padding: 36px 30px;
  height: 100%;
}

.amenity-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
}




.amenity-title{
  font-size: 26px;
  line-height: 1.2;
  margin: 0 0 10px;
}

.amenity-text{
  font-size: 15px;
  line-height: 1.7;
  color: #6e685f;
  margin: 0;
}


.amenity-pill{
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #7a736a;

  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.25);
  padding: 7px 10px;
  border-radius: 999px;
}

/* MOBILE */
@media (max-width: 980px){
  .amenities-grid{
    grid-template-columns: 1fr;
  }

  .amenity-card{
    grid-template-columns: 1fr;
    grid-template-rows: 240px auto;
    height: auto;
  }

  .amenity-img{
    height: 240px;
  }

  .amenity-body{
    padding: 22px 20px 26px;
  }
}

@media (max-width: 980px){
  .amenities-grid .amenity-card:nth-child(4) .amenity-img img{
    object-position: center;
  }
}

