/* ==========================================================================
   Destiny Hotel — One Page Site
   Palette derived from the brand mark: near-black ground + antique gold,
   warm ivory for content sections, charcoal for supporting text.
   ========================================================================== */

:root{
  /* Color tokens (sampled from the provided logo) */
  --black:        #0c0b09;
  --charcoal:     #17140f;
  --charcoal-2:   #201c15;
  --gold:         #c6a15b;
  --gold-deep:    #9c7a3c;
  --gold-light:   #e8d6a8;
  --cream:        #f7f2e8;
  --cream-2:      #efe6d3;
  --ink:          #2a2621;
  --muted:        #7c7468;
  --muted-on-dark:#b8ae9c;
  --line-on-dark: rgba(198,161,91,0.28);
  --line-on-light:rgba(42,38,33,0.12);

  /* Type */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Jost', 'Segoe UI', Arial, sans-serif;

  /* Fluid type scale */
  --fs-eyebrow: clamp(0.7rem, 0.6rem + 0.3vw, 0.8rem);
  --fs-h1: clamp(2.4rem, 1.5rem + 4.2vw, 5.2rem);
  --fs-h2: clamp(1.9rem, 1.4rem + 2vw, 3rem);
  --fs-h3: clamp(1.3rem, 1.1rem + 0.8vw, 1.7rem);
  --fs-body: clamp(0.98rem, 0.93rem + 0.2vw, 1.08rem);
  --fs-small: clamp(0.82rem, 0.8rem + 0.1vw, 0.9rem);

  /* Layout */
  --container: 1220px;
  --pad-inline: clamp(1.25rem, 3vw + 0.5rem, 3.5rem);
  --section-pad: clamp(4rem, 3rem + 4vw, 7.5rem);
  --radius: 2px;
  --nav-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{
  scroll-behavior: smooth;
  overflow-x: hidden;
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body{
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4{ margin: 0; font-family: var(--font-display); font-weight: 600; color: var(--ink); }
p{ margin: 0; }
button{ font-family: inherit; cursor: pointer; }
input, textarea, select{ font-family: inherit; font-size: 1rem; }

/* Visible keyboard focus everywhere */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container{
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-inline);
}

/* ==========================================================================
   Motion — shared keyframes used across hero, cards, buttons & carousel
   ========================================================================== */
@keyframes fadeUp{
  from{ opacity: 0; transform: translateY(26px); }
  to{ opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn{
  from{ opacity: 0; }
  to{ opacity: 1; }
}
@keyframes kenburns{
  0%{ transform: scale(1) translate(0,0); }
  100%{ transform: scale(1.12) translate(-1%,-1%); }
}
@keyframes floaty{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-8px); }
}
@keyframes pulseRing{
  0%{ box-shadow: 0 0 0 0 rgba(198,161,91,0.55); }
  70%{ box-shadow: 0 0 0 14px rgba(198,161,91,0); }
  100%{ box-shadow: 0 0 0 0 rgba(198,161,91,0); }
}
@keyframes spin{
  to{ transform: rotate(360deg); }
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow::before{
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex: none;
}
.on-dark .eyebrow{ color: var(--gold-light); }
.on-dark .eyebrow::before{ background: var(--gold); }
/* FIX: headings on dark sections were inheriting the near-black --ink
   color (meant for light backgrounds), making them unreadable on
   black/charcoal sections. Force cream on any .on-dark heading. */
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4{ color: var(--cream); }

.section-head{
  max-width: 640px;
  margin-bottom: clamp(2.25rem, 1.7rem + 2vw, 3.5rem);
}
.section-head h2{ margin-top: 0.9rem; font-size: var(--fs-h2); line-height: 1.12; }
.section-head p{ margin-top: 1.1rem; color: var(--muted); font-size: var(--fs-body); }
.on-dark .section-head p{ color: var(--muted-on-dark); }
.section-head.center{ margin-inline: auto; text-align: center; }
.section-head.center .eyebrow{ justify-content: center; }
.section-head.center .eyebrow::before{ display: none; }

/* ---------- Buttons ---------- */
.btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.45) 48%, transparent 66%);
  transform: translateX(-120%);
  transition: transform .65s ease;
  pointer-events: none;
}
.btn:hover::before{ transform: translateX(120%); }
.btn-gold{
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  color: var(--black);
}
.btn-gold:hover{ filter: brightness(1.06); transform: translateY(-2px); box-shadow: 0 14px 26px -14px rgba(198,161,91,0.65); }
.btn-ghost-dark{
  border-color: rgba(247,242,232,0.55);
  color: var(--cream);
}
.btn-ghost-dark:hover{ border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }
.btn-outline{
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover{ border-color: var(--gold-deep); color: var(--gold-deep); transform: translateY(-2px); }
.btn-block{ width: 100%; }

/* ---------- Corner-frame signature element ---------- */
.frame{
  position: relative;
  padding: 14px;
}
.frame::before, .frame::after,
.frame .corner-a, .frame .corner-b{
  content:"";
  position:absolute;
  width: 34px; height: 34px;
  border: 1px solid var(--gold);
  /*z-index: 2;*/
}
.frame::before{ top:0; left:0; border-right:none; border-bottom:none; }
.frame::after{ bottom:0; right:0; border-left:none; border-top:none; }
.frame .corner-a{ top:0; right:0; border-left:none; border-bottom:none; }
.frame .corner-b{ bottom:0; left:0; border-right:none; border-top:none; }
.frame img{ width: 100%; height: 100%; object-fit: cover; }
.frame .frame-media{ overflow:hidden; width:100%; height:100%; }

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav{
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 500;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgba(12,11,9,0.85), rgba(12,11,9,0));
  transition: background-color .35s ease, height .35s ease, box-shadow .35s ease;
}
.nav.is-solid{
  background: rgba(12,11,9,0.96);
  backdrop-filter: saturate(140%) blur(6px);
  height: 68px;
  box-shadow: 0 1px 0 var(--line-on-dark);
}
.nav .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand{
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex: none;
}
.brand img{ width: 40px; height: 40px; flex: none; transition: transform .5s ease, width .35s ease, height .35s ease; }
.brand:hover img{ transform: rotate(-12deg) scale(1.08); }

/* Larger logo in the header nav bar specifically (footer logo unchanged) */
.nav .brand img{ width: 62px; height: 62px; }
.nav.is-solid .brand img{ width: 50px; height: 50px; }
.brand-text{
  font-family: var(--font-display);
  color: var(--cream);
  line-height: 1;
}
.brand-text .b1{
  display:block;
  font-size: 1.28rem;
  letter-spacing: 0.24em;
  font-weight: 600;
}
.brand-text .b2{
  display:block;
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: 0.56rem;
  letter-spacing: 0.42em;
  color: var(--gold);
  font-weight: 500;
}

.nav-links{
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2vw, 2.2rem);
}
.nav-links a{
  font-size: var(--fs-small);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  padding-block: 0.4rem;
  position: relative;
}
.nav-links a::after{
  content:"";
  position:absolute; left:0; right:0; bottom:0;
  height:1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover::after, .nav-links a:focus-visible::after{ transform: scaleX(1); }

.nav-actions{ display: flex; align-items: center; gap: 1rem; }
.nav .btn-gold{ padding: 0.75rem 1.5rem; }

.hamburger{
  display: none;
  flex: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line-on-dark);
  background: transparent;
  border-radius: 50%;
  position: relative;
}
    .hamburger span {
        position: absolute;
        top: 50%;
        left: 12px;
        right: 12px;
        height: 1px;
        background: var(--cream);
        transform: translateY(-50%);
        transition: transform .25s ease, opacity .25s ease, background-color .25s ease;
    }

        .hamburger span::before,
        .hamburger span::after {
            content: "";
            display: block;
            position: absolute;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--cream);
            transition: transform .25s ease, opacity .25s ease, top .25s ease;
        }

        .hamburger span::before {
            top: -7px;
        }

        .hamburger span::after {
            top: 7px;
        }
.hamburger[aria-expanded="true"] span{ background: transparent; }
.hamburger[aria-expanded="true"] span::before{ top:0; transform: rotate(45deg); }
.hamburger[aria-expanded="true"] span::after{ top:0; transform: rotate(-45deg); }

.mobile-menu{
  position: fixed;
  inset: 0;
  z-index: 480;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .3s ease, transform .3s ease, visibility 0s linear .3s;
}
.mobile-menu.is-open{
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity .3s ease, transform .3s ease;
}
.mobile-menu a{
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.mobile-menu a:hover{ color: var(--gold); }
.mobile-menu .mm-sub{
  margin-top: 3rem;
  color: var(--muted-on-dark);
  font-size: var(--fs-small);
  letter-spacing: 0.1em;
  text-align: center;
}
.mobile-menu .mm-sub a{ font-family: var(--font-body); font-size: var(--fs-small); color: var(--gold-light); }

body.menu-open{ overflow: hidden; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--cream);
  isolation: isolate;
  padding-top: var(--nav-h);
}
.hero-media{
  position: absolute; inset: 0; z-index: -2;
  background-image: url('../images/room2.png');
  background-size: cover;
  background-position: center 30%;
  animation: kenburns 18s ease-in-out infinite alternate;
}
.hero-media::after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(12,11,9,0.72) 0%, rgba(12,11,9,0.55) 38%, rgba(12,11,9,0.86) 100%),
    linear-gradient(90deg, rgba(12,11,9,0.55) 0%, rgba(12,11,9,0.15) 45%, rgba(12,11,9,0.55) 100%);
}
.hero .container{ position: relative; z-index: 1; }
.hero-inner{
  max-width: 760px;
  padding-block: clamp(3rem, 4vw, 5rem);
}
.hero-inner > *{
  opacity: 0;
  animation: fadeUp .9s ease forwards;
}
.hero-inner .eyebrow{ color: var(--gold-light); animation-delay: .15s; }
.hero-inner .eyebrow::before{ background: var(--gold-light); }
.hero-inner h1{ animation-delay: .3s; }
.hero-inner .lede{ animation-delay: .45s; }
.hero-cta{ animation-delay: .6s; }
.hero-facts{ animation-delay: .75s; }
.hero-inner h1{
  margin-top: 1.1rem;
  font-size: var(--fs-h1);
  line-height: 1.02;
  color: var(--cream);
}
.hero-inner h1 em{
  font-style: normal;
  color: var(--gold-light);
  background: linear-gradient(120deg, var(--gold-light), var(--gold) 60%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-inner .lede{
  margin-top: 1.4rem;
  max-width: 46ch;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.18rem);
  color: var(--muted-on-dark);
}
.hero-cta{
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-facts{
  margin-top: 3.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-top: 1.8rem;
  border-top: 1px solid var(--line-on-dark);
  max-width: 640px;
}
.hero-facts .fact{ display:flex; align-items:center; gap:0.65rem; }
.hero-facts svg{ width: 22px; height: 22px; flex: none; color: var(--gold); }
.hero-facts span{ font-size: var(--fs-small); letter-spacing: 0.04em; color: var(--muted-on-dark); }

.scroll-cue{
  position: absolute;
  left: 50%;
  bottom: clamp(1.2rem, 3vh, 2.2rem);
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted-on-dark);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.scroll-cue .line{
  width: 1px; height: 42px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollcue 2.2s ease-in-out infinite;
}
@keyframes scrollcue{
  0%{ transform: scaleY(0.3); transform-origin: top; opacity: .4; }
  50%{ transform: scaleY(1); transform-origin: top; opacity: 1; }
  100%{ transform: scaleY(0.3); transform-origin: bottom; opacity: .4; }
}

/* ==========================================================================
   About
   ========================================================================== */
.about{
  padding-block: var(--section-pad);
  background: var(--cream);
}
.about .container{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.about-media{
  position: relative;
}
.about-media .frame{ aspect-ratio: 4 / 5; max-width: 480px; margin-inline: auto; }
.about-badge{
  position: absolute;
  bottom: -1.4rem;
  right: clamp(-0.5rem, -1vw, 0.5rem);
  background: var(--black);
  color: var(--cream);
  padding: 1.1rem 1.4rem;
  border: 1px solid var(--line-on-dark);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  max-width: 240px;
  box-shadow: 0 18px 30px -14px rgba(12,11,9,0.4);
}
.about-badge svg{ width: 26px; height: 26px; color: var(--gold); flex: none; }
.about-badge strong{ display:block; font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; }
.about-badge span{ display:block; font-size: 0.72rem; color: var(--muted-on-dark); margin-top: 2px; letter-spacing: 0.03em; }

.about-copy p{ color: var(--muted); margin-top: 1.1rem; }
.about-copy p:first-of-type{ margin-top: 1.1rem; }
.about-list{
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
}
.about-list li{
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: var(--fs-small);
  letter-spacing: 0.03em;
  color: var(--ink);
}
.about-list svg{ width: 18px; height: 18px; color: var(--gold-deep); flex: none; }
.about-copy .btn{ margin-top: 2.2rem; }

/* ==========================================================================
   Rooms
   ========================================================================== */
.rooms{
  padding-block: var(--section-pad);
  background: var(--black);
  color: var(--cream);
  position: relative;
}
.rooms-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.2rem);
}
.room-card{
  background: var(--charcoal);
  border: 1px solid var(--line-on-dark);
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, border-color .35s ease;
}
.room-card:hover{ transform: translateY(-6px); border-color: var(--gold); }
.room-media{
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.room-media img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.room-card:hover .room-media img{ transform: scale(1.06); }
.room-tag{
  position: absolute; top: 14px; left: 14px;
  background: rgba(12,11,9,0.78);
  border: 1px solid var(--line-on-dark);
  color: var(--gold-light);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
}
.room-body{
  padding: 1.6rem 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.room-body h3{ color: var(--cream); font-size: var(--fs-h3); }
.room-body p{ margin-top: 0.7rem; color: var(--muted-on-dark); font-size: var(--fs-small); flex: 1; }
.room-amenities{
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.1rem;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-on-dark);
}
.room-amenities .am{
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; letter-spacing: 0.03em;
  color: var(--muted-on-dark);
}
.room-amenities svg{ width: 16px; height: 16px; color: var(--gold); flex: none; }
.room-card .btn{ margin-top: 1.4rem; }

.rooms-note{
  margin-top: clamp(2rem, 3vw, 3rem);
  text-align: center;
  color: var(--muted-on-dark);
  font-size: var(--fs-small);
  letter-spacing: 0.03em;
}
.rooms-note a{ color: var(--gold-light); border-bottom: 1px solid var(--gold-deep); }

/* Staggered entrance for the room cards */
.rooms-grid .room-card:nth-child(1){ transition-delay: 0s; }
.rooms-grid .room-card:nth-child(2){ transition-delay: .12s; }
.rooms-grid .room-card:nth-child(3){ transition-delay: .24s; }

/* ==========================================================================
   Gallery / Carousel
   ========================================================================== */
.gallery{
  padding-block: var(--section-pad);
  background: var(--black);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.gallery::before{
  content: "";
  position: absolute; inset: -30% -10% auto -10%;
  height: 60%;
  background: radial-gradient(closest-side, rgba(198,161,91,0.12), transparent 70%);
  pointer-events: none;
}
.gallery .container{ position: relative; }

.carousel{
  position: relative;
  max-width: 980px;
  margin-inline: auto;
}
.carousel-viewport{
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-on-dark);
}
.carousel-track{
  display: flex;
  transition: transform .65s cubic-bezier(.65,0,.35,1);
  will-change: transform;
}
.carousel-slide{
  position: relative;
  flex: 0 0 100%;
  aspect-ratio: 16 / 9;
  background: var(--charcoal);
}
.carousel-slide img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 8s ease;
}
.carousel-slide.is-active img{ transform: scale(1.09); }
.carousel-caption{
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.5rem 1.8rem;
  background: linear-gradient(to top, rgba(12,11,9,0.9), rgba(12,11,9,0.05) 75%, transparent);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s ease .15s, transform .5s ease .15s;
}
.carousel-slide.is-active .carousel-caption{ opacity: 1; transform: translateY(0); }
.carousel-caption h4{ font-family: var(--font-display); font-size: 1.3rem; color: var(--cream); }
.carousel-caption p{ margin-top: 0.3rem; font-size: var(--fs-small); color: var(--muted-on-dark); }

.carousel-arrow{
  position: absolute; top: 50%; z-index: 3;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(12,11,9,0.65);
  backdrop-filter: blur(3px);
  border: 1px solid var(--line-on-dark);
  color: var(--gold-light);
  transition: background-color .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}
.carousel-arrow:hover{ background: var(--gold); border-color: var(--gold); color: var(--black); transform: translateY(-50%) scale(1.08); }
.carousel-arrow.prev{ left: 14px; }
.carousel-arrow.next{ right: 14px; }
.carousel-arrow svg{ width: 19px; height: 19px; }

.carousel-dots{
  margin-top: 1.7rem;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}
.carousel-dots button{
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--line-on-dark);
  border: 1px solid transparent;
  padding: 0;
  transition: width .3s ease, background-color .3s ease;
}
.carousel-dots button:hover{ background: var(--gold-deep); }
.carousel-dots button.is-active{ width: 28px; border-radius: 5px; background: var(--gold); }

@media (max-width: 640px){
  .carousel-arrow{ width: 38px; height: 38px; }
  .carousel-arrow.prev{ left: 8px; }
  .carousel-arrow.next{ right: 8px; }
  .carousel-caption{ padding: 1.1rem 1.2rem; }
  .carousel-caption h4{ font-size: 1.1rem; }
}

/* ==========================================================================
   Amenities
   ========================================================================== */
.amenities{
  padding-block: var(--section-pad);
  background: var(--cream-2);
}
.amenity-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  border-top: 1px solid var(--line-on-light);
  border-left: 1px solid var(--line-on-light);
}
.amenity{
  background: var(--cream-2);
  padding: 2rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  border-right: 1px solid var(--line-on-light);
  border-bottom: 1px solid var(--line-on-light);
  transition: background-color .3s ease;
}
.amenity:hover{ background: var(--cream); }
.amenity .ic{
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  border-radius: 50%;
  flex: none;
  transition: transform .4s ease, background-color .4s ease, color .4s ease;
}
.amenity:hover .ic{ transform: rotate(-8deg) scale(1.1); background: var(--gold); color: var(--black); }
.amenity .ic svg{ width: 22px; height: 22px; }
.amenity h4{ font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; }
.amenity p{ font-size: var(--fs-small); color: var(--muted); }

/* Staggered entrance across the amenity grid */
.amenity-grid .amenity:nth-child(1){ transition-delay: 0s; }
.amenity-grid .amenity:nth-child(2){ transition-delay: .06s; }
.amenity-grid .amenity:nth-child(3){ transition-delay: .12s; }
.amenity-grid .amenity:nth-child(4){ transition-delay: .18s; }
.amenity-grid .amenity:nth-child(5){ transition-delay: .24s; }
.amenity-grid .amenity:nth-child(6){ transition-delay: .3s; }
.amenity-grid .amenity:nth-child(7){ transition-delay: .36s; }
.amenity-grid .amenity:nth-child(8){ transition-delay: .42s; }
.amenity-grid .amenity:nth-child(9){ transition-delay: .48s; }
.amenity-grid .amenity:nth-child(10){ transition-delay: .54s; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band{
  position: relative;
  padding-block: clamp(3.5rem, 4vw, 5.5rem);
  background: linear-gradient(120deg, var(--black) 0%, var(--charcoal-2) 55%, var(--black) 100%);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
}
.cta-band::before{
  content:"";
  position:absolute; inset: -40% -10%;
  background: radial-gradient(closest-side, rgba(198,161,91,0.16), transparent 70%);
  pointer-events: none;
}
.cta-band .container{ position: relative; }
.cta-band .eyebrow{ justify-content: center; color: var(--gold-light); }
.cta-band .eyebrow::before{ display:none; }
.cta-band h2{ margin-top: 0.9rem; color: var(--cream); font-size: var(--fs-h2); max-width: 720px; margin-inline: auto; }
.cta-band p{ margin-top: 1rem; color: var(--muted-on-dark); max-width: 52ch; margin-inline: auto; }
.cta-row{
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.map-frame{
  margin-top: 2.4rem;
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
  aspect-ratio: 16 / 8;
  border: 1px solid var(--line-on-dark);
  overflow: hidden;
  background: var(--charcoal);
}
.map-frame iframe{
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(0.2) contrast(1.05);
}
@media (max-width: 640px){
  .map-frame{ aspect-ratio: 4 / 5; }
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact{
  padding-block: var(--section-pad);
  background: var(--cream);
}
.contact .container{
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
}
.contact-info h2{ font-size: var(--fs-h2); }
.contact-info > p{ margin-top: 1rem; color: var(--muted); max-width: 42ch; }
.info-list{ margin-top: 2.2rem; display: flex; flex-direction: column; gap: 1.4rem; }
.info-list li{ display: flex; gap: 1rem; align-items: flex-start; }
.info-list .ic{
  width: 42px; height: 42px; flex: none;
  border: 1px solid var(--gold-deep);
  color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
}
.info-list .ic svg{ width: 19px; height: 19px; }
.info-list strong{ display:block; font-size: var(--fs-small); letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); }
.info-list a, .info-list span.val{ display:block; margin-top: 0.2rem; color: var(--muted); font-size: var(--fs-body); }
.info-list a:hover{ color: var(--gold-deep); }

.social-row{ margin-top: 2rem; display: flex; gap: 0.8rem; }
.social-row a{
  width: 40px; height: 40px;
  border: 1px solid var(--line-on-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: border-color .2s ease, color .2s ease;
}
.social-row a:hover{ border-color: var(--gold); color: var(--gold-deep); }
.social-row svg{ width: 17px; height: 17px; }

.form-card{
  background: #fff;
  border: 1px solid var(--line-on-light);
  padding: clamp(1.6rem, 3vw, 2.6rem);
}
.form-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}
.field{ display: flex; flex-direction: column; gap: 0.5rem; }
.field.full{ grid-column: 1 / -1; }
.field label{ font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea{
  border: 1px solid var(--line-on-light);
  background: var(--cream);
  padding: 0.85rem 1rem;
  color: var(--ink);
  border-radius: var(--radius);
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.field textarea{ resize: vertical; min-height: 100px; }
.form-foot{
  margin-top: 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.form-note{ font-size: 0.78rem; color: var(--muted); }
.form-status{
  margin-top: 1rem;
  font-size: var(--fs-small);
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-on-light);
  display: none;
}
.form-status.is-visible{ display: block; }
.form-status.ok{ border-color: var(--gold-deep); color: var(--gold-deep); background: rgba(198,161,91,0.08); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{
  background: var(--black);
  color: var(--muted-on-dark);
  padding-block: clamp(3rem, 4vw, 4.5rem) 1.6rem;
}
.footer-top{
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 2.5rem;
  padding-bottom: clamp(2rem, 3vw, 3rem);
  border-bottom: 1px solid var(--line-on-dark);
}
.footer-brand .brand{ margin-bottom: 1rem; }
.footer-brand p{ max-width: 34ch; font-size: var(--fs-small); }
.footer-col h5{
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.1rem;
  font-weight: 500;
}
.footer-col ul{ display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a{ font-size: var(--fs-small); }
.footer-col a:hover{ color: var(--gold-light); }
.footer-bottom{
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--muted-on-dark);
}
.footer-bottom .social-row a{ border-color: var(--line-on-dark); color: var(--muted-on-dark); }
.footer-bottom .social-row a:hover{ border-color: var(--gold); color: var(--gold-light); }

/* ==========================================================================
   Floating helpers
   ========================================================================== */
.float-stack{
  position: fixed;
  right: clamp(1rem, 2vw, 1.6rem);
  bottom: clamp(1rem, 2vw, 1.6rem);
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.float-btn{
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--black);
  color: var(--gold-light);
  border: 1px solid var(--line-on-dark);
  box-shadow: 0 10px 24px -10px rgba(12,11,9,0.5);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, background-color .25s ease;
}
.float-btn.is-visible{ opacity: 1; transform: translateY(0); pointer-events: auto; }
.float-btn:hover{ background: var(--gold); color: var(--black); }
.float-btn.call-btn{ opacity: 1; transform: none; pointer-events: auto; background: var(--gold); color: var(--black); animation: pulseRing 2.6s ease-out infinite; }
.float-btn.call-btn:hover{ animation-play-state: paused; }
.float-btn svg{ width: 20px; height: 20px; }

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
.reveal{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }
.reveal-left{
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal-left.is-visible{ opacity: 1; transform: translateX(0); }
.reveal-right{
  opacity: 0;
  transform: translateX(32px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal-right.is-visible{ opacity: 1; transform: translateX(0); }
.reveal-scale{
  opacity: 0;
  transform: scale(0.94);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-scale.is-visible{ opacity: 1; transform: scale(1); }

/* ==========================================================================
   Responsive breakpoints
   ========================================================================== */
@media (max-width: 980px){
  .about .container{ grid-template-columns: 1fr; }
  .about-media{ max-width: 420px; margin-inline: auto; width: 100%; }
  .about-list{ grid-template-columns: 1fr 1fr; }
  .contact .container{ grid-template-columns: 1fr; }
  .footer-top{ grid-template-columns: 1fr 1fr; row-gap: 2.2rem; }
}

@media (max-width: 880px){
  .nav-links, .nav-actions .btn-gold{ display: none; }
  .hamburger{ display: flex; }
}

@media (max-width: 640px){
  :root{ --nav-h: 68px; }
  .brand img{ width: 34px; height: 34px; }
  .nav .brand img{ width: 46px; height: 46px; }
  .brand-text .b1{ font-size: 1.05rem; letter-spacing: 0.18em; }
  .hero-cta{ flex-direction: column; align-items: stretch; }
  .hero-cta .btn{ width: 100%; }
  .hero-facts{ gap: 1.1rem 1.6rem; }
  .about-badge{ position: static; margin-top: 1rem; max-width: none; }
  .about-list{ grid-template-columns: 1fr; }
  .footer-top{ grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom{ flex-direction: column; align-items: flex-start; }
  .cta-row{ flex-direction: column; align-items: stretch; }
  .cta-row .btn{ width: 100%; }
  .form-foot{ flex-direction: column; align-items: stretch; }
  .form-foot .btn{ width: 100%; }
}

@media (max-width: 380px){
  .hero-inner .lede{ max-width: 100%; }
  .amenity-grid{ grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
}

@media (min-width: 650px) {
    .amenity-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 860px) {
    .amenity-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}