:root{
  /* Logo-derived palette */
  --coffee-deep: #1F1208;        /* footer / deepest brown */
  --coffee:      #2E1B0E;        /* primary dark */
  --coffee-soft: #4A2E1A;        /* secondary brown */
  --coffee-warm: #6B4423;        /* accent brown */

  --gold:        #C9A24A;        /* logo gold */
  --gold-bright: #E5BE6E;        /* highlight gold */
  --gold-deep:   #9B7A36;        /* deep gold */
  --gold-pale:   #EBD9A8;        /* pale gold tint */

  --cream:       #F4ECDD;        /* page background */
  --cream-soft:  #FAF4E7;        /* section bg */
  --paper:       #EFE4CD;        /* warmer paper */
  --beige:       #DCC9A6;

  --ink:         #1F1208;        /* main text */
  --ink-muted:   #6B5A45;        /* muted text */
  --line:        rgba(201, 162, 74, 0.28);

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --serif-display: 'Italiana', 'Cormorant Garamond', serif;
  --sans: 'Manrope', 'Helvetica Neue', sans-serif;

  --shadow-soft: 0 14px 40px -18px rgba(31,18,8,.25);
  --shadow-deep: 0 30px 60px -25px rgba(31,18,8,.45);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle paper-grain texture overlay for the cream sections */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.42  0 0 0 0 0.30  0 0 0 0 0.18  0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: .55;
  mix-blend-mode: multiply;
}

/* Headings */
h1,h2,h3,h4,h5,h6,.serif{
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: .2px;
  color: var(--coffee);
  line-height: 1.18;
}
.display-serif{ font-family: var(--serif-display); font-weight: 400; letter-spacing: 1px; }
a{ text-decoration:none; color: inherit; transition: color .3s ease; }
a:hover{ color: var(--gold-deep); }

/* ----- Eyebrow label ----- */
.eyebrow{
  display:inline-flex; align-items:center; gap:14px;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow::before, .eyebrow::after{
  content:""; width: 28px; height: 1px; background: var(--gold);
  display:inline-block;
}
.eyebrow.left::before{ display:none; }
.eyebrow.left{ padding-left: 0; }
.eyebrow.left::after{ width: 40px; }

/* Section title block */
.section-heading{
  margin-bottom: 3.5rem;
}
.section-heading h2{
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  font-style: italic;
}
.section-heading h2 .accent{
  font-style: normal;
  color: var(--gold-deep);
}
.divider-ornament{
  display:flex; align-items:center; justify-content:center; gap: 14px;
  color: var(--gold);
  margin: 1.25rem 0 1.75rem;
}
.divider-ornament .line{ width:60px; height:1px; background: var(--gold); opacity:.7; }
.divider-ornament i{ font-size: .65rem; }

/* ----- Top strip ----- */
.top-strip{
  background: var(--coffee-deep);
  color: var(--cream);
  font-size: .78rem;
  letter-spacing: .15em;
  padding: 10px 0;
  position: relative;
  z-index: 1050;
}
.top-strip a{ color: var(--gold-bright); }
.top-strip a:hover{ color: #fff; }
.top-strip .sep{ color: var(--gold-deep); margin: 0 14px; }

/* ----- Navbar ----- */
.navbar-luxury{
  background: rgba(244, 236, 221, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .35s ease, box-shadow .35s ease, background .35s ease;
  position: sticky; top: 0; z-index: 1040;
}
.navbar-luxury.scrolled{
  padding: 10px 0;
  background: rgba(244, 236, 221, .98);
  box-shadow: 0 12px 36px -22px rgba(31,18,8,.3);
}

.brand-wrap{ display:flex; align-items:center; gap: 16px; }
.brand-logo{
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--coffee-deep);
  border: 2px solid var(--gold);
  box-shadow: 0 6px 18px -6px rgba(31,18,8,.45), inset 0 0 0 3px rgba(244,236,221,.08);
  overflow: hidden;
  display: grid; place-items:center;
  position: relative;
  flex-shrink: 0;
}
.brand-logo img{
  width: 100%; height: 100%; object-fit: cover;
  display:block;
}
.brand-logo::after{
  content:"";
  position:absolute; inset:-6px;
  border-radius:50%;
  border: 1px dashed rgba(201,162,74,.45);
}
.brand-text{ display:flex; flex-direction:column; line-height: 1.1; }
.brand-text .name{
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--coffee);
  letter-spacing: .5px;
}
.brand-text .name em{ font-style: italic; color: var(--gold-deep); font-weight: 500; }
.brand-text .tag{
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 2px;
}

.nav-link-luxury{
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--coffee) !important;
  padding: 10px 16px !important;
  position: relative;
}
.nav-link-luxury::after{
  content:"";
  position:absolute; left:50%; bottom: 4px;
  width: 0; height: 1px;
  background: var(--gold-deep);
  transition: all .35s ease;
  transform: translateX(-50%);
}
.nav-link-luxury:hover{ color: var(--gold-deep) !important; }
.nav-link-luxury:hover::after{ width: 24px; }

.btn-gold{
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 0;
  background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold) 50%, var(--gold-bright) 100%);
  color: var(--coffee-deep);
  border: 1px solid var(--gold-deep);
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, color .35s ease;
}
.btn-gold::before{
  content:""; position:absolute; inset:0;
  background: linear-gradient(135deg, var(--coffee) 0%, var(--coffee-soft) 100%);
  transform: translateY(101%);
  transition: transform .45s cubic-bezier(.7,0,.3,1);
  z-index: 0;
}
.btn-gold > *{ position:relative; z-index:1; }
.btn-gold:hover{ color: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 14px 28px -14px rgba(31,18,8,.5); }
.btn-gold:hover::before{ transform: translateY(0); }

.btn-outline-gold{
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 0;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(244,236,221,.7);
  transition: all .35s ease;
}
.btn-outline-gold:hover{
  background: var(--cream); color: var(--coffee-deep); border-color: var(--cream);
}

.btn-outline-coffee{
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 0;
  background: transparent;
  color: var(--coffee);
  border: 1px solid var(--coffee);
  transition: all .35s ease;
}
.btn-outline-coffee:hover{
  background: var(--coffee); color: var(--cream);
}

.navbar-toggler{ border: 1px solid var(--gold-deep); padding: 6px 10px; }
.navbar-toggler:focus{ box-shadow: none; }
.navbar-toggler-icon{
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%232E1B0E' stroke-width='2' stroke-linecap='round' d='M4 8h22M4 15h22M4 22h22'/%3E%3C/svg%3E");
}

/* ----- HERO ----- */
.hero{
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: #0a0604;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg{
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,6,4,.55) 0%, rgba(10,6,4,.45) 40%, rgba(10,6,4,.85) 100%),
    url('../assets/images/exterior-night.webp') center/cover no-repeat;
  z-index: -2;
  transform: scale(1.05);
  animation: heroZoom 16s ease-out forwards;
}
@keyframes heroZoom{ to{ transform: scale(1.0);} }

/* Decorative golden frame inside hero */
.hero-frame{
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(201,162,74,.35);
  pointer-events: none;
  z-index: 1;
}
.hero-frame::before, .hero-frame::after{
  content:"";
  position:absolute;
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
}
.hero-frame::before{ top:-8px; left:-8px; border-right:none; border-bottom:none; }
.hero-frame::after{ bottom:-8px; right:-8px; border-left:none; border-top:none; }

.hero-content{
  position: relative; z-index: 2;
  color: var(--cream);
  padding: 80px 0;
}
.hero-eyebrow{
  display:inline-flex; align-items:center; gap: 14px;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before, .hero-eyebrow::after{
  content:""; width: 36px; height: 1px; background: var(--gold-bright);
}
.hero h1{
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1.02;
  color: var(--cream);
  margin-bottom: 1.5rem;
  letter-spacing: -.5px;
}
.hero h1 .italic{ font-style: italic; color: var(--gold-bright); font-weight: 400; }
.hero .lead-luxe{
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: rgba(244,236,221,.85);
  max-width: 620px;
  margin: 0 auto 2.4rem;
  line-height: 1.6;
}
.hero-actions{ display:flex; gap: 14px; justify-content:center; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-meta{
  display:flex; gap: 36px; justify-content:center; flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,162,74,.25);
  max-width: 720px; margin: 0 auto;
}
.hero-meta .item{
  display:flex; align-items:center; gap: 10px;
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .12em;
  color: rgba(244,236,221,.85);
  text-transform: uppercase;
}
.hero-meta .item i{ color: var(--gold-bright); font-size: 1rem; }

/* Scroll cue */
.scroll-cue{
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  text-align:center;
  color: rgba(244,236,221,.7);
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .35em;
  text-transform: uppercase;
}
.scroll-cue .line{
  width:1px; height: 36px; margin: 10px auto 0;
  background: linear-gradient(to bottom, var(--gold-bright), transparent);
  position: relative; overflow: hidden;
}
.scroll-cue .line::after{
  content:""; position:absolute; top:-20px; left:0; width:1px; height: 20px;
  background: var(--cream);
  animation: scrollDown 2s infinite;
}
@keyframes scrollDown{ 0%{ top:-20px;} 100%{ top: 36px;} }

/* ----- Welcome bar (between hero and about) ----- */
.welcome-bar{
  background: var(--coffee-deep);
  color: var(--cream);
  padding: 28px 0;
  position: relative;
  border-top: 1px solid var(--gold-deep);
  border-bottom: 1px solid var(--gold-deep);
}
.welcome-bar .pill{
  display:flex; align-items:center; gap: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-bright);
}
.welcome-bar .pill i{ color: var(--gold); }

/* ----- ABOUT ----- */
.section{ padding: 110px 0; position: relative; z-index: 2; }
.section-cream{ background: var(--cream); }
.section-paper{ background: var(--paper); }

.about-img-wrap{
  position: relative;
}
.about-img-main{
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover;
  display:block;
  box-shadow: var(--shadow-deep);
  position: relative;
  z-index: 2;
}
.about-img-frame{
  position:absolute;
  top: 24px; left: 24px;
  right: -24px; bottom: -24px;
  border: 1px solid var(--gold);
  z-index: 1;
}
.about-stat{
  position:absolute;
  bottom: -40px; right: -20px;
  background: var(--coffee-deep);
  color: var(--cream);
  padding: 26px 32px;
  z-index: 3;
  border: 1px solid var(--gold);
  text-align:center;
  box-shadow: var(--shadow-deep);
}
.about-stat .num{
  font-family: var(--serif-display);
  font-size: 2.6rem;
  color: var(--gold-bright);
  line-height: 1;
}
.about-stat .label{
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-top: 6px;
}

.about-text h2{
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  margin-bottom: 1rem;
}
.about-text h2 em{ color: var(--gold-deep); }
.about-text p{ color: var(--ink-muted); margin-bottom: 1.2rem; font-size: 1.02rem; }
.about-text .signature{
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--coffee-soft);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.about-text .signature small{
  display:block;
  font-family: var(--sans);
  font-style: normal;
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 4px;
}

/* ----- ROOMS ----- */
.room-card{
  background: var(--cream-soft);
  position: relative;
  overflow: hidden;
  transition: transform .5s ease, box-shadow .5s ease;
  height: 100%;
  display:flex; flex-direction:column;
}
.room-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-deep); }
.room-img{
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.room-img img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.room-card:hover .room-img img{ transform: scale(1.07); }
.room-tag{
  position:absolute; top: 16px; left: 16px;
  background: var(--coffee-deep);
  color: var(--gold-bright);
  font-family: var(--sans);
  font-size: .64rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1px solid var(--gold);
}
.room-body{
  padding: 28px 28px 32px;
  display:flex; flex-direction:column; flex-grow:1;
}
.room-body h4{
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.room-meta{
  display:flex; gap: 18px; flex-wrap:wrap;
  font-family: var(--sans);
  font-size: .72rem;
  color: var(--ink-muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 12px 0 16px;
}
.room-meta i{ color: var(--gold-deep); margin-right: 6px; }
.room-body p{ color: var(--ink-muted); font-size: .95rem; margin-bottom: 1.2rem; flex-grow:1; }
.room-foot{
  display:flex; justify-content: space-between; align-items: center;
  padding-top: 4px;
}
.room-price{
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--coffee);
}
.room-price small{
  font-size: .68rem;
  font-family: var(--sans);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-left: 4px;
}
.room-link{
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
  display: inline-flex; align-items:center; gap: 8px;
}
.room-link i{ transition: transform .35s ease; }
.room-link:hover i{ transform: translateX(6px); }

/* ----- ROOFTOP RESTAURANT ----- */
.restaurant{
  background: var(--coffee-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.restaurant::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 20% 20%, rgba(201,162,74,.12), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(201,162,74,.08), transparent 50%);
  pointer-events:none;
}
.restaurant .section-heading h2{ color: var(--cream); }
.restaurant .section-heading h2 .accent{ color: var(--gold-bright); }
.restaurant p{ color: rgba(244,236,221,.78); }
.restaurant .eyebrow{ color: var(--gold-bright); }
.restaurant .eyebrow::before, .restaurant .eyebrow::after{ background: var(--gold-bright); }

.restaurant-img{
  position: relative;
  aspect-ratio: 5/6;
  overflow: hidden;
}
.restaurant-img img{ width:100%; height:100%; object-fit:cover; }
.restaurant-img::after{
  content:"";
  position: absolute; inset: 18px;
  border: 1px solid rgba(201,162,74,.45);
  pointer-events: none;
}

.menu-list{ list-style:none; padding:0; margin: 1.5rem 0 0; }
.menu-list li{
  display:flex; align-items: baseline; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(201,162,74,.25);
  font-family: var(--serif);
  font-size: 1.08rem;
}
.menu-list li:last-child{ border-bottom: none; }
.menu-list .name{ color: var(--cream); flex: 0 0 auto; }
.menu-list .dots{
  flex: 1 1 auto; height: 1px;
  background: linear-gradient(to right, transparent 0, transparent 50%, rgba(201,162,74,.4) 50%);
  background-size: 6px 1px;
  margin-bottom: 6px;
}
.menu-list .price{ color: var(--gold-bright); font-style: italic; flex: 0 0 auto; }
.menu-list .desc{
  display:block;
  font-family: var(--sans);
  font-size: .78rem;
  color: rgba(244,236,221,.55);
  letter-spacing: .05em;
  margin-top: 2px;
  font-style: normal;
}

/* ----- AMENITIES ----- */
.amenity-card{
  background: var(--cream-soft);
  text-align:center;
  padding: 44px 22px;
  border: 1px solid transparent;
  transition: all .45s ease;
  height: 100%;
  position: relative;
}
.amenity-card::before{
  content:""; position:absolute; inset:0;
  border: 1px solid var(--line);
  pointer-events:none;
  transition: all .45s ease;
}
.amenity-card:hover{ background: var(--coffee-deep); color: var(--cream); transform: translateY(-4px); }
.amenity-card:hover h5{ color: var(--gold-bright); }
.amenity-card:hover p{ color: rgba(244,236,221,.7); }
.amenity-card:hover .amenity-icon{ background: var(--gold); color: var(--coffee-deep); border-color: var(--gold); }
.amenity-card:hover .amenity-num{ color: rgba(201,162,74,.4); }

.amenity-num{
  position: absolute;
  top: 14px; right: 18px;
  font-family: var(--serif-display);
  font-size: 1.1rem;
  color: var(--gold-deep);
  opacity: .7;
  transition: color .35s ease;
}
.amenity-icon{
  width: 70px; height: 70px;
  margin: 0 auto 22px;
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  display:grid; place-items:center;
  border-radius: 50%;
  font-size: 1.5rem;
  position: relative;
  transition: all .45s ease;
}
.amenity-icon::after{
  content:""; position:absolute; inset: -6px;
  border: 1px dashed rgba(201,162,74,.45);
  border-radius: 50%;
}
.amenity-card h5{
  font-size: 1.1rem;
  margin-bottom: 8px;
  letter-spacing: .04em;
  transition: color .35s ease;
}
.amenity-card p{
  font-size: .85rem;
  color: var(--ink-muted);
  margin-bottom: 0;
  line-height: 1.55;
  transition: color .35s ease;
}

/* ----- GALLERY ----- */
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 140px;
  gap: 14px;
}
.gallery-item{
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.gallery-item::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 50%, rgba(31,18,8,.65) 100%);
  opacity: 0;
  transition: opacity .45s ease;
}
.gallery-item .label{
  position: absolute;
  bottom: 18px; left: 22px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  z-index: 2;
  transform: translateY(8px);
  opacity: 0;
  transition: all .45s ease;
}
.gallery-item .icon-zoom{
  position:absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.7);
  width: 50px; height: 50px;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  display: grid; place-items: center;
  border-radius: 50%;
  z-index: 2;
  opacity: 0;
  transition: all .5s ease;
}
.gallery-item:hover img{ transform: scale(1.08); }
.gallery-item:hover::after{ opacity: 1; }
.gallery-item:hover .label{ opacity: 1; transform: translateY(0); }
.gallery-item:hover .icon-zoom{ opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* Asymmetric gallery layout (desktop) */
.g-1{ grid-column: span 5; grid-row: span 3; }
.g-2{ grid-column: span 4; grid-row: span 2; }
.g-3{ grid-column: span 3; grid-row: span 2; }
.g-4{ grid-column: span 3; grid-row: span 2; }
.g-5{ grid-column: span 4; grid-row: span 2; }
.g-6{ grid-column: span 5; grid-row: span 2; }

@media (max-width: 991px){
  .gallery-grid{ grid-auto-rows: 120px; }
  .g-1{ grid-column: span 12; grid-row: span 2; }
  .g-2{ grid-column: span 6; }
  .g-3{ grid-column: span 6; }
  .g-4{ grid-column: span 6; }
  .g-5{ grid-column: span 6; }
  .g-6{ grid-column: span 12; }
}

/* ----- CTA BOOKING ----- */
.cta-booking{
  position: relative;
  background:
    linear-gradient(rgba(31,18,8,.78), rgba(31,18,8,.85)),
    url('../assets/images/gallery-2.webp') center/cover fixed no-repeat;
  color: var(--cream);
  padding: 130px 0;
  text-align: center;
  overflow: hidden;
}
.cta-booking::before{
  content:""; position:absolute; inset:30px;
  border: 1px solid rgba(201,162,74,.35);
  pointer-events:none;
}
.cta-booking h2{
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--cream);
  margin-bottom: 1rem;
}
.cta-booking h2 em{ color: var(--gold-bright); font-style: normal; }
.cta-booking p{
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(244,236,221,.85);
  max-width: 620px;
  margin: 0 auto 2.5rem;
}
.cta-actions{ display:flex; gap: 16px; justify-content:center; flex-wrap:wrap; }

/* ----- TESTIMONIAL ----- */
.testimonial{
  background: var(--cream);
  padding: 110px 0;
  text-align:center;
  position: relative;
}
.testimonial .quote-mark{
  font-family: var(--serif-display);
  font-size: 7rem;
  line-height: 1;
  color: var(--gold);
  opacity: .4;
}
.testimonial blockquote{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--coffee);
  max-width: 880px;
  margin: 1rem auto 2rem;
  line-height: 1.45;
}
.testimonial cite{
  display:block;
  font-family: var(--sans);
  font-style: normal;
  font-size: .78rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.testimonial cite::before{
  content:"";
  display:inline-block; width: 28px; height: 1px;
  background: var(--gold);
  margin-right: 14px;
  vertical-align: middle;
}

/* ----- FOOTER ----- */
.footer{
  background: var(--coffee-deep);
  color: rgba(244,236,221,.75);
  padding: 90px 0 0;
  position: relative;
}
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px; }
@media (max-width: 991px){ .footer-grid{ grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 575px){ .footer-grid{ grid-template-columns: 1fr; gap: 36px; } }

.footer h6{
  font-family: var(--sans);
  color: var(--gold-bright);
  font-size: .78rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.footer-brand{ display:flex; align-items:center; gap: 16px; margin-bottom: 1.4rem; }
.footer-brand .brand-logo{ width: 64px; height: 64px; }
.footer-brand-text{ color: var(--cream); }
.footer-brand-text .name{
  font-family: var(--serif);
  font-size: 1.3rem;
  letter-spacing: .04em;
  display: block;
}
.footer-brand-text .name em{ font-style: italic; color: var(--gold-bright); }
.footer-brand-text .tag{
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.footer p.about{
  color: rgba(244,236,221,.65);
  font-size: .92rem;
  line-height: 1.75;
}
.footer-links{ list-style: none; padding: 0; margin: 0; }
.footer-links li{
  padding: 6px 0;
  font-size: .9rem;
}
.footer-links a{
  color: rgba(244,236,221,.7);
  transition: all .25s ease;
  display: inline-flex; align-items: center; gap: 8px;
}
.footer-links a::before{
  content:"›"; color: var(--gold); transition: transform .25s ease;
}
.footer-links a:hover{ color: var(--gold-bright); }
.footer-links a:hover::before{ transform: translateX(4px); }

.footer-contact .ic{
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(201,162,74,.1);
  border: 1px solid rgba(201,162,74,.3);
  color: var(--gold-bright);
  display: grid; place-items: center;
  flex-shrink: 0;
  font-size: .9rem;
}
.footer-contact .row-c{
  display:flex; align-items:center; gap: 14px; margin-bottom: 1rem;
  color: rgba(244,236,221,.85);
  font-size: .92rem;
}
.footer-contact a{ color: rgba(244,236,221,.85); }
.footer-contact a:hover{ color: var(--gold-bright); }

.socials{ display:flex; gap: 10px; margin-top: 1.4rem; }
.socials a{
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,74,.4);
  color: var(--gold-bright);
  display: grid; place-items: center;
  transition: all .35s ease;
}
.socials a:hover{ background: var(--gold); color: var(--coffee-deep); border-color: var(--gold); transform: translateY(-3px); }

.footer-bottom{
  margin-top: 60px;
  border-top: 1px solid rgba(201,162,74,.18);
  padding: 24px 0;
  text-align:center;
  font-family: var(--sans);
  font-size: .78rem;
  color: rgba(244,236,221,.55);
  letter-spacing: .1em;
}
.footer-bottom .gold{ color: var(--gold-bright); }

/* ----- Floating CTAs ----- */
.float-call{
  position: fixed;
  right: 22px; bottom: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-bright));
  color: var(--coffee-deep);
  display: grid; place-items:center;
  box-shadow: 0 10px 24px -8px rgba(201,162,74,.6);
  z-index: 1030;
  font-size: 1.3rem;
  transition: transform .3s ease;
}
.float-call:hover{ transform: scale(1.08); color: var(--coffee-deep); }
.float-call::after{
  content:"";
  position:absolute; inset:-6px;
  border-radius:50%;
  border: 1px solid var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse{
  0%{ transform: scale(1); opacity:.7; }
  100%{ transform: scale(1.4); opacity:0;}
}

.float-whatsapp{
  position: fixed;
  right: 22px; bottom: 92px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid; place-items:center;
  box-shadow: 0 8px 22px -8px rgba(37,211,102,.7);
  z-index: 1030;
  font-size: 1.2rem;
  transition: transform .3s ease;
}
.float-whatsapp:hover{ color: #fff; transform: scale(1.1); }

/* Responsive tuning */
@media (max-width: 768px){
  .section{ padding: 80px 0; }
  .hero-frame{ inset: 16px; }
  .about-img-frame{ display: none; }
  .about-stat{ position: static; margin-top: 30px; display: inline-block; }
  .navbar-luxury .brand-text .tag{ display:none; }
  .brand-logo{ width: 52px; height: 52px; }
  .nav-link-luxury{ padding: 8px 0 !important; }
  .navbar-collapse{ padding-top: 14px; }
  .menu-list li{ font-size: .98rem; }
}

/* AOS entry tuning */
[data-aos]{ pointer-events: none; }
[data-aos].aos-animate{ pointer-events: auto; }
