@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg: #f6f1e8;
  --bg-soft: #ede4d3;
  --ink: #1a2a24;
  --ink-soft: #3a4a44;
  --muted: #7a8580;
  --line: rgba(26, 42, 36, .12);
  --forest: #1f3a2e;
  --forest-deep: #11261d;
  --sage: #5a7a6a;
  --gold: #b58a3e;
  --gold-soft: #d9b574;
  --cream: #f9f4ea;
  --white: #ffffff;
  --shadow-lg: 0 30px 80px -30px rgba(17, 38, 29, .45);
  --shadow-md: 0 12px 40px -15px rgba(17, 38, 29, .35);
  --radius: 6px;
  --radius-lg: 18px;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Mulish", system-ui, sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto
}

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

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.01em
}

h1 {
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  font-weight: 400
}

h1 em,
h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  font-weight: 400
}

h3 {
  font-size: 1.5rem
}

.eyebrow {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .32em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}

.eyebrow.light {
  color: var(--gold-soft)
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.2rem 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}

.nav.scrolled {
  background: rgba(246, 241, 232, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: .7rem 0;
  box-shadow: 0 1px 0 var(--line);
}

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: var(--cream);
  transition: color .3s
}

.nav.scrolled .brand {
  color: var(--ink)
}

.brand-mark {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold)
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  letter-spacing: .02em
}

.nav-links {
  display: flex;
  gap: 2rem;
  color: var(--cream);
  transition: color .3s
}

.nav.scrolled .nav-links {
  color: var(--ink)
}

.nav-links a {
  font-size: 1rem;
  letter-spacing: .04em;
  position: relative;
  padding: .3rem 0
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px
}

.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: currentColor;
  color: var(--cream);
  transition: .3s
}

.nav.scrolled .nav-toggle span {
  background: var(--ink)
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .35s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: #fff
}

.btn-primary:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md)
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .4)
}

.btn-ghost:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink)
}

.btn-outline:hover {
  background: var(--ink);
  color: #fff
}

.btn-mini {
  padding: .7rem 1.2rem;
  font-size: .72rem;
  background: var(--gold);
  color: #fff
}

.btn-mini:hover {
  background: var(--ink)
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 20s ease-in-out infinite alternate;
}

@keyframes kenburns {
  0% {
    transform: scale(1.05) translate(0, 0)
  }

  100% {
    transform: scale(1.15) translate(-1%, -1%)
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(17, 38, 29, .55) 90%),
    linear-gradient(to top, rgba(17, 38, 29, .7), transparent 40%, rgba(17, 38, 29, .3));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  padding: 0 2rem
}

.hero-content .eyebrow {
  color: var(--cream);
  font-size: 15px;
}

.hero h1 {
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .3)
}

.hero-sub {
  max-width: 680px;
  margin: 0 auto 2.5rem;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(255, 255, 255, .92);
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
}

.hero-scroll span {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, .5);
  position: relative;
  overflow: hidden;
}

.hero-scroll span::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gold);
  animation: scrollLine 2.2s var(--ease) infinite;
}

@keyframes scrollLine {
  0% {
    top: -50%
  }

  100% {
    top: 100%
  }
}

/* TRUST BAR */
.trust {
  background: var(--forest);
  color: var(--cream);
  overflow: hidden;
  padding: 1.2rem 0;
  border-top: 1px solid var(--gold);
}

.trust-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 10s linear infinite;
  font-size: .82rem;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.trust-track span:nth-child(even) {
  color: var(--gold-soft)
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* SECTION COMMON */
section {
  padding: 5rem 2rem;
  position: relative
}

.section-head {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center
}

.section-head h2 {
  margin-bottom: 1rem
}

/* ABOUT */
.about {
  padding-bottom: 7rem
}

.about-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  position: relative
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}

.badge-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--cream);
  padding: 1.8rem 2rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.badge-num {
  font-family: var(--sage);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 700;
}

.badge-label {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft)
}

.about-text h2 {
  margin-bottom: 2rem
}

.about-text p {
  margin-bottom: 1.2rem;
  color: var(--ink-soft);
  font-size: 1.05rem
}

/* WHY */
.why {
  background: var(--bg-soft)
}

.why-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: .4s var(--ease);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md)
}

.why-card:hover::before {
  transform: scaleX(1)
}

.why-card .icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  filter: saturate(.7)
}

.why-card h3 {
  margin-bottom: .6rem;
  font-size: 1.35rem
}

.why-card p {
  color: var(--ink-soft);
  font-size: .95rem
}

/* ROOMS */
.rooms-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.room {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: .4s var(--ease);
}

.room:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg)
}

.room-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden
}

.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease)
}

.room:hover .room-img img {
  transform: scale(1.08)
}

.ribbon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: #fff;
  font-size: .85rem;
  /*letter-spacing: .2em;*/
  text-transform: uppercase;
  padding: .4rem .8rem;
  border-radius: 3px;
}

.room-body {
  padding: 1.8rem
}

.room-body h3 {
  margin-bottom: .4rem
}

.room-body p {
  font-size: .92rem;
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
  min-height: 6em;
  text-align: justify;
}

.price {
  /*font-family: var(--serif);*/
  font-size: 1.5rem !important;
  color: var(--gold);
  margin-bottom: .8rem

}
.price span {
  font-size: .85rem;
  color: var(--muted);
  font-family: var(--sans)
}
.room .btn {
  width: 49%;
  text-align: center;
  padding: 10px;
}

/* EXPERIENCE */
.experience {
  background: var(--bg-soft)
}

.exp-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.exp-card {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform .5s var(--ease);
}

.exp-card:hover {
  transform: translateY(-6px)
}

.exp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 38, 29, .95) 0%, rgba(17, 38, 29, .4) 40%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: #fff;
}

.exp-overlay h3 {
  margin-bottom: .5rem;
  color: var(--gold-soft)
}

.exp-overlay p {
  font-size: .92rem;
  opacity: .9;
  transform: translateY(10px);
  opacity: 0;
  transition: .4s var(--ease)
}

.exp-card:hover .exp-overlay p {
  transform: translateY(0);
  opacity: .9
}

/* GATEWAY (parallax) */
.gateway {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  padding: 10rem 2rem;
}

.gateway-bg {
  position: absolute;
  inset: -10%;
  background: url('../img/gangotri-banner.webp') center/cover fixed;
  filter: brightness(.4) saturate(.9);
  z-index: 0;
}

.gateway-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto
}

.gateway h2 {
  color: #fff;
  margin-bottom: 1.5rem
}

.gateway p {
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, .88);
  font-size: 1.05rem
}

.gateway .btn {
  margin-top: 1.5rem
}

/* ATTRACTIONS */
.attr-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.attr {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: .4s var(--ease);
}

.attr img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  transition: .6s var(--ease)
}

.attr:hover img {
  transform: scale(1.06)
}

.attr:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px)
}

.attr>div {
  padding: 1.5rem 1.8rem
}

.attr h3 {
  margin-bottom: .4rem;
  font-size: 1.3rem
}

.attr p {
  color: var(--ink-soft);
  font-size: .92rem
}

/* GALLERY */
.gallery {
  background: var(--bg-soft)
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin-top: 2rem
}

.filter {
  padding: .6rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 50px;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: .3s;
  background: var(--cream);
}

.filter:hover {
  border-color: var(--gold);
  color: var(--gold)
}

.filter.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink)
}

.masonry {
  max-width: 1320px;
  margin: 0 auto;
  columns: 3;
  column-gap: 1rem;
}

.m-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: .4s var(--ease);
  cursor: zoom-in;
}

.m-item img {
  width: 100%;
  transition: transform .8s var(--ease)
}

.m-item:hover img {
  transform: scale(1.06)
}

/* TESTIMONIALS */
.t-carousel {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  text-align: center
}

.t-track {
  overflow: hidden;
  position: relative
}

.t-slide {
  padding: 2rem 3rem;
  opacity: 0;
  position: absolute;
  inset: 0;
  transition: opacity .6s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.t-slide.active {
  opacity: 1;
  position: relative
}

.quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 2rem;
  line-height: 1.45;
}

.t-meta strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: .2rem
}

.t-meta span {
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted)
}

.t-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-size: 1.8rem;
  color: var(--ink);
  background: var(--cream);
  transition: .3s;
}

.t-nav:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink)
}

.t-nav.prev {
  left: -10px
}

.t-nav.next {
  right: -10px
}

.t-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.5rem
}

.t-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  transition: .3s
}

.t-dots button.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px
}

/* FAQ */
.faq .section-head {
  margin-bottom: 20px;
}
.faq-list {
  max-width: 820px;
  margin: 0 auto
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: .3rem 0;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
  transition: color .3s;
}

.faq-list summary::-webkit-details-marker {
  display: none
}

.faq-list summary:hover {
  color: var(--gold)
}

.faq-list summary::after {
  content: "+";
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform .3s var(--ease);
}

.faq-list details[open] summary::after {
  transform: rotate(45deg)
}

.faq-list details p {
  padding-bottom: .8rem;
  color: var(--ink-soft);
  font-size: .98rem
}

/* CONTACT */
.contact {
  background: var(--bg-soft);
  /*color: var(--cream)*/
}

.contact-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact h2 {
  /*color: #fff;*/
  /*margin-bottom: 2.5rem*/
}

.contact-block {
  margin-bottom: 1.8rem
}

.contact-block h4 {
  font-family: var(--sans);
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: .5rem;
}

.contact-block p,
.contact-block a {
  color: var(--cream);
  line-height: 1.7;
  font-size: 1.05rem
}

.contact-block a:hover {
  color: var(--gold-soft)
}

.contact-form {
  background: var(--cream);
  color: var(--ink);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  margin-bottom: 1.8rem;
  font-size: 1.6rem
}

.contact-form label {
  display: block;
  margin-bottom: 1rem;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: .4rem;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .95rem;
  color: var(--ink);
  text-transform: none;
  letter-spacing: normal;
  transition: border-color .3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

.contact-form .btn {
  width: 100%;
  margin-top: .5rem
}

/* FOOTER */
.footer {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 5rem 2rem 2rem
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer .brand {
  color: var(--cream);
  margin-bottom: 1rem
}

.footer p {
  color: rgba(255, 255, 255, .6);
  font-size: .92rem
}

.footer h5 {
  font-family: var(--sans);
  font-size: 1rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.2rem;
}

.footer a {
  /*display: block;*/
  color: rgba(255, 255, 255, .7);
  font-size: .95rem;
  margin-bottom: .5rem;
  transition: color .3s
}

.footer a:hover {
  color: var(--gold-soft)
}

.copyright {
  max-width: 1280px;
  margin: 2rem auto 0;
  text-align: center;
  font-size: .78rem;
  color: rgba(255, 255, 255, .45);
  /*letter-spacing: .1em;*/
}

/* FAB */
.fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -10px rgba(37, 211, 102, .6);
  transition: .3s;
  animation: pulse 2.5s ease-in-out infinite;
}

.fab:hover {
  transform: scale(1.08)
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 10px 30px -10px rgba(37, 211, 102, .6), 0 0 0 0 rgba(37, 211, 102, .5)
  }

  50% {
    box-shadow: 0 10px 30px -10px rgba(37, 211, 102, .6), 0 0 0 18px rgba(37, 211, 102, 0)
  }
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease)
}

.reveal.in {
  opacity: 1;
  transform: translateY(0)
}

/* RESPONSIVE */
@media (max-width:1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .rooms-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .exp-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .attr-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .masonry {
    columns: 2
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .badge-card {
    right: 1rem;
    bottom: -25px
  }

  .gateway-bg {
    background-attachment: scroll
  }
}

@media (max-width:720px) {
  section {
    padding: 2rem 1.2rem
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 1.5rem;
    gap: 1.2rem;
    color: var(--ink);
    border-top: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex
  }

  .nav-toggle {
    display: flex
  }

  .why-grid,
  .rooms-grid,
  .exp-grid,
  .attr-grid,
  .footer-inner,
  .contact-form .row {
    grid-template-columns: 1fr
  }

  .masonry {
    columns: 1
  }

  .hero {
    min-height: 560px
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin: 0 auto
  }

  .hero-cta .btn {
    width: 100%
  }

  .contact-form {
    padding: 2rem
  }

  .t-nav.prev {
    left: 0
  }

  .t-nav.next {
    right: 0
  }

  .badge-card {
    right: 50%;
    transform: translateX(50%);
    bottom: -30px;
    padding: 1.2rem 1.4rem
  }
}

/* selection */
::selection {
  background: var(--gold);
  color: #fff
}

/* LOGO */
.brand {
  padding: .25rem .6rem;
  border-radius: 8px;
  transition: background .35s var(--ease)
}

.brand-logo {
  height: auto;
  width: 230px;
  display: block;
  transition: height .35s var(--ease), filter .35s var(--ease);
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .35));
}

.nav.scrolled .brand-logo {
  filter: none
}

.footer-logo {
  height: 90px;
  width: auto;
  margin-bottom: 1rem;
  background: var(--cream);
  padding: .4rem .8rem;
  border-radius: 10px;
  box-shadow: 0 8px 24px -10px rgba(0, 0, 0, .4);
}

@media (max-width:720px) {
  .brand-logo {
    /*height: 42px*/
  }

  .nav.scrolled .brand-logo {
    /*height: 38px*/
  }
}


/* ROOM PAGE CSS */
.pr-hero {
  position: relative;
  /*min-height: 92vh;*/
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  overflow: hidden;
  background: var(--forest);
}

.pr-hero-media {
  position: absolute;
  inset: 0
}

.pr-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 18s ease-out forwards
}

.pr-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 38, 29, .55) 0%, rgba(17, 38, 29, .25) 35%, rgba(17, 38, 29, .85) 100%)
}

.pr-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 4rem 2rem 0;
  width: 100%
}

.pr-hero-sub {
  max-width: 640px;
  font-size: 1.05rem;
  color: rgba(249, 244, 234, .86);
  margin: 1.2rem 0 1.8rem
}
.pr-hero-content h1 {
  font-size: 45px;
}

.pr-highlights {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 1.5rem 0 2rem
}

.pr-highlights li {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem 1rem;
  border: 1px solid rgba(217, 181, 116, .45);
  border-radius: 999px;
  font-size: .82rem;
  letter-spacing: .04em;
  background: rgba(17, 38, 29, .35);
  backdrop-filter: blur(8px)
}

.pr-highlights .h-num {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0
}

.pr-highlights .h-ico {
  color: var(--gold-soft)
}

.btn-ghost.light {
  color: var(--cream);
  border-color: rgba(249, 244, 234, .5)
}

.btn-ghost.light:hover {
  background: rgba(249, 244, 234, .1)
}

@keyframes kenburns {
  from {
    transform: scale(1.06)
  }

  to {
    transform: scale(1)
  }
}

/* SHOWCASE MOSAIC */
.pr-showcase {
  padding: 7rem 2rem;
  max-width: 1320px;
  margin: 0 auto
}

.lede {
  max-width: 680px;
  margin: 1rem auto 0;
  color: var(--ink-soft);
  font-size: 1.02rem
}

.pr-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
  margin-top: 3.5rem
}

.m-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md)
}

.m-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
  filter: saturate(.95)
}

.m-tile:hover img {
  transform: scale(1.08)
}

.m-tile figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.2rem;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: .02em;
  background: linear-gradient(0deg, rgba(17, 38, 29, .85), transparent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease)
}

.m-tile:hover figcaption {
  opacity: 1;
  transform: translateY(0)
}

.m-tall {
  grid-row: span 2
}

.m-wide {
  grid-column: span 2
}

/* OVERVIEW */
.pr-overview {
  padding: 6rem 2rem;
  background: var(--bg-soft)
}

.pr-overview-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 5rem;
  align-items: center
}

.pr-overview-text p {
  margin-top: 1rem;
  color: var(--ink-soft)
}

.pr-overview-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem
}

.pr-overview-stats>div {
  background: var(--cream);
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-align: center
}

.pr-overview-stats span {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: .4rem
}

.pr-overview-stats p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.3
}

/* FEATURES */
.pr-features {
  padding: 7rem 2rem;
  max-width: 1320px;
  margin: 0 auto
}

.pr-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 3.5rem
}

.pf {
  padding: 2rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease)
}

.pf:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-soft)
}

.pf-ico {
  font-size: 1.8rem;
  color: var(--forest);
  margin-bottom: 1rem;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-soft)
}

.pf h3 {
  font-size: 1.15rem;
  margin-bottom: .5rem
}

.pf p {
  font-size: .9rem;
  color: var(--ink-soft)
}

/* AMENITIES */
.pr-amenities {
  padding: 6rem 2rem;
  background: var(--forest);
  color: var(--cream)
}

.pr-amenities .eyebrow {
  color: var(--gold-soft)
}

.pr-amenities h2 em {
  color: var(--gold-soft)
}

.pr-amenities .lede {
  color: rgba(249, 244, 234, .78);
  margin-left: 0
}

.pr-amenities-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start
}

.pr-amen-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .4rem 2rem
}

.pr-amen-list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(249, 244, 234, .12);
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: .8rem
}

.pr-amen-list li::before {
  content: "✦";
  color: var(--gold-soft);
  font-size: .8rem
}

/* WAKE / PARALLAX */
.pr-wake {
  position: relative;
  /*min-height: 75vh;*/
  display: flex;
  align-items: center;
  color: var(--cream);
  overflow: hidden
}

.pr-wake-media {
  position: absolute;
  inset: 0
}

.pr-wake-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/7;
  object-fit: cover;
  object-position: center;
}

.pr-wake-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 38, 29, .85) 0%, rgba(17, 38, 29, .4) 70%, transparent 100%)
}

.pr-wake-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0rem 2rem 1rem;
  width: 100%;
  max-width: 640px
}

.pr-wake-content h2.light,
.pr-wake-content p.light {
  color: var(--cream)
}

.pr-wake-content h2 em {
  color: var(--gold-soft)
}

.pr-wake-content p {
  margin-top: 1rem;
  color: rgba(249, 244, 234, .85)
}

/* PERFECT FOR */
.pr-perfect {
  padding: 7rem 2rem;
  max-width: 1320px;
  margin: 0 auto
}

.pr-perfect-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line)
}

.pp {
  padding: 2.2rem 1.6rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .4s var(--ease)
}

.pp:hover {
  background: var(--bg-soft)
}

.pp span {
  display: block;
  color: var(--gold);
  font-size: 3rem;
  /*font-weight: 700;*/
  font-style: italic;
  /*letter-spacing: .1em;*/
  margin-bottom: 1.2rem
}

.pp h3 {
  font-size: 1.25rem;
  margin-bottom: .6rem
}

.pp p {
  font-size: .9rem;
  color: var(--ink-soft)
}

/* LOCATION */
.pr-location {
  padding: 6rem 2rem;
  background: var(--bg-soft)
}

.pr-location-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center
}

.pr-attr-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0
}

.pr-attr-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--ink);
  transition: color .3s, padding .3s var(--ease)
}

.pr-attr-list li span {
  color: var(--gold);
  font-size: 1.2rem;
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease)
}

.pr-attr-list li:hover {
  padding-left: .8rem;
  color: var(--forest)
}

.pr-attr-list li:hover span {
  background: var(--gold);
  color: var(--cream)
}

/* BOOKING CTA */
.pr-cta {
  position: relative;
  padding: 6rem 2rem;
  background: var(--forest-deep);
  color: var(--cream);
  text-align: center;
  overflow: hidden
}

.pr-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(181, 138, 62, .18), transparent 60%)
}

.pr-cta-inner {
  position: relative;
  max-width: 780px;
  margin: 0 auto
}

.pr-cta h2 em {
  color: var(--gold-soft)
}

.pr-cta p {
  margin: 1rem 0 2.2rem;
  color: rgba(249, 244, 234, .8)
}

.pr-cta .hero-cta {
  justify-content: center
}

/* MOBILE */
@media (max-width:900px) {
  .pr-hero-content {
    padding: 8rem 1.4rem 4rem
  }

  .pr-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px
  }

  .m-wide {
    grid-column: span 2
  }

  .m-tall {
    grid-row: span 1
  }

  .pr-overview-inner,
  .pr-amenities-inner,
  .pr-location-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem
  }

  .pr-features-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .pr-perfect-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .pr-amen-list {
    grid-template-columns: 1fr
  }

  .pr-showcase,
  .pr-features,
  .pr-perfect {
    padding: 5rem 1.4rem
  }

  .pr-overview,
  .pr-amenities,
  .pr-location,
  .pr-cta,
  .pr-wake-content {
    padding-left: 1.4rem;
    padding-right: 1.4rem
  }
}

@media (max-width:520px) {
  .pr-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px
  }

  .m-wide,
  .m-tall {
    grid-column: span 1;
    grid-row: span 1
  }

  .pr-features-grid,
  .pr-perfect-grid {
    grid-template-columns: 1fr
  }

  .pr-highlights li {
    font-size: .75rem;
    padding: .45rem .8rem
  }
}

/*Custom CSS*/
/* Top */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }

/* Bottom */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.amenity-icon { 
  color: var(--gold); 
}
.why-grid .amenity-icon { 
  width: 70px; 
  height: 70px; 
}
.footer-menu p {
  margin-bottom: 10px;
}
.footer-menu p a {
}
.footer-menu p a:before {
  content: '-';
  padding-right: 10px;
}
.footer-contact p {
  margin-bottom: 10px;
}
.footer-contact svg {
  vertical-align: sub;
}
.social-icons {
  margin-top: 20px;
}

.contact-page h4 {
  color: var(--sage);
}
.contact-page p, .contact-page a {
  color: var(--forest);
}

.contact-block a:hover {
  color: var(--gold)
}
.page-content {
  max-width: 90%;
  margin: 0 auto;
}
.page-content a {
  color: var(--gold);
}
.page-content a:hover {
  color: var(--sage);
}
.page-content h1, .page-content h2, .page-content h3, .page-content h4, .page-content h5, .page-content h6 {
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 15px;
}
.page-content h1 {
  font-size: 35px;
}
.page-content h2 {
  font-size: 32px;
}
.page-content h3 {
  font-size: 28px;
}
.page-content h4 {
  font-size: 25px;
}
.page-content h5 {
  font-size: 22px;
}
.page-content h6 {
  font-size: 16px;
}
.page-content ul, .page-content ol {
  padding-left: 20px;
}
.page-content .wp-block-separator {
  margin: 30px 0;
}
@media screen and (max-width:600px) {
  body {
    font-size: 14px;
  }
  .pr-hero {
    padding: 7rem 1.2rem 2rem;
  }
  .pr-hero-content {
    padding: 0rem 1.4rem 1rem;
    text-align: center;
  }
  .pr-hero-content .eyebrow {
    font-size: .6rem;
  }
  .why-grid {
    text-align: center;
  }
  .pr-highlights {
    justify-content: center;
  }
  .pr-hero-content h1 {
    font-size: 28px;
  }
  .pr-features-grid {
     text-align: center;
  }
  .pr-wake-media img {
    aspect-ratio: 3/4;
  }
  .pp span {
    font-size: 1rem;
  }
  .pf-ico {
    margin: 0 auto 1.2rem;
  }
  .fab {
    bottom: 20px;
    right: 20px;
  }
  .nav-inner {
    padding: 0 1rem;
    gap: 1rem;
  }
  .brand {
    padding: 0;
  }
  .hero-sub {
    display: none;
  }
  .hero-content .eyebrow {
    font-size: 12px;
  }
  .hero h1 {
    font-size: 30px;
  }
  .hero h1 em {
    color: #fff;
  }
  .hero  .mobile-hide {
    display: none;
  }
  .gateway {
    padding: 5rem 2rem;
  }
  .contact iframe {
    height: 300px;
  }
  .footer {
    text-align: center;
  }
  .m-tall {
    grid-row: span 2;
  }
  .page-content {
    max-width: 100%;
  }
  .page-content h1, .page-content h2, .page-content h3, .page-content h4, .page-content h5, .page-content h6 {
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
  }
  .page-content h1 {
    font-size: 28px;
  }
  .page-content h2 {
    font-size: 25px;
  }
  .page-content h3 {
    font-size: 22px;
  }
  .page-content h4 {
    font-size: 20px;
  }
  .page-content h5 {
    font-size: 18px;
  }
  .page-content h6 {
    font-size: 15px;
  }
  .page-content .wp-block-separator {
    margin: 20px 0;
  }
}
/*End Custom CSS*/