:root {
  --navy: #081c52;
  --navy-2: #0d2b6d;
  --gold: #c49a5a;
  --ink: #18223a;
  --muted: #6e7480;
  --cream: #f7f4ee;
  --white: #fff;
  --line: #e8e3da;
  --shadow: 0 24px 70px rgba(8, 28, 82, 0.1);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background: #fff;
  line-height: 1.75;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}
.topbar {
  background: #071027;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.02em;
}
.topbar-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.top-left {
  display: flex;
  gap: 28px;
}
.topbar a {
  opacity: 0.9;
}
.top-location {
  opacity: 0.82;
}
.header {
  height: 86px;
  background: rgba(255, 255, 255, 0.96);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(10, 28, 82, 0.06);
  backdrop-filter: blur(12px);
}
.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img {
  width: 304px;
  height: auto;
}
/* =========================================
   MAIN NAVIGATION
========================================= */

.nav {
    display: flex;
    align-items: center;
    gap: 31px;
    font-size: 14px;
    font-weight: 600;
}

.nav > a,
.nav-dropdown > .dropdown-toggle {
    position: relative;
    padding: 31px 0;
    color: #4e5360;
    text-decoration: none;
}

/* Main navigation underline ONLY */

.nav > a:not(.nav-book)::after,
.nav-dropdown > .dropdown-toggle::after {
    content: "";
    position: absolute;

    left: 0;
    bottom: 20px;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition: width .3s ease;
}

.nav > a:hover,
.nav > a.active,
.nav-dropdown > .dropdown-toggle:hover {
    color: var(--navy);
}

.nav > a:hover::after,
.nav > a.active::after,
.nav-dropdown:hover > .dropdown-toggle::after {
    width: 100%;
}


/* =========================================
   BOOK NOW
========================================= */

.nav-book {
    padding: 13px 28px !important;

    background: var(--navy);

    color: #fff !important;
}

.nav-book::after {
    display: none !important;
}


/* =========================================
   DROPDOWN TOGGLE
========================================= */

.nav-dropdown {
    position: relative;
}

.nav-dropdown > .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 7px;
}


/* =========================================
   PREMIUM CHEVRON
========================================= */

.dropdown-arrow {
    position: relative;

    width: 7px;
    height: 7px;

    display: inline-block;

    border-right: 1.5px solid #9a7a42;
    border-bottom: 1.5px solid #9a7a42;

    transform: rotate(45deg);

    margin-top: -4px;

    transition: transform .3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(225deg);
}
/* =========================================
   PREMIUM DROPDOWN
========================================= */

.dropdown-menu {
    position: absolute;

    top: 100%;
    left: 50%;

    transform: translateX(-50%) translateY(12px);

    width: 285px;

    margin: 0;
    padding: 8px 0;

    background: rgba(255, 255, 255, 0.98);

    border-top: 3px solid #c49a5a;

    box-shadow:
        0 25px 60px rgba(5, 20, 55, 0.16),
        0 5px 15px rgba(5, 20, 55, 0.05);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s ease;

    z-index: 999;
}


/* Show dropdown */

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform: translateX(-50%) translateY(0);
}


/* =========================================
   DROPDOWN ITEMS
========================================= */

.dropdown-menu > a {
    position: relative;

    display: flex !important;

    align-items: center;

    gap: 15px;

    width: 100%;

    padding: 14px 20px !important;

    color: #17213b !important;

    text-decoration: none;

    border-bottom: 1px solid #f0eee9;

    box-sizing: border-box;

    transition:
        background .25s ease,
        padding-left .25s ease;
}


/* VERY IMPORTANT:
   Remove main navigation underline
*/

.dropdown-menu > a::after {
    display: none !important;

    content: none !important;
}

/* =========================================
   MOBILE MENU BUTTON
========================================= */

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;

    padding: 0;
    margin: 0;

    border: 0;
    outline: none;

    background: transparent;

    cursor: pointer;

    align-items: center;
    justify-content: center;

    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;

    width: 23px;
    height: 2px;

    margin: 0;

    background: var(--navy);

    transition:
        transform .3s ease,
        opacity .3s ease;
}


/* Hamburger animation */

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
/* Hover */

.dropdown-menu > a:hover {
    background: #f8f6f1;

    padding-left: 25px !important;
}


/* =========================================
   NUMBER BOX
========================================= */

.dropdown-menu > a > span {
    width: 26px;
    height: 26px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 1px solid #dfc28e;

    color: #b1874b;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .04em;
}


/* =========================================
   DROPDOWN TEXT
========================================= */

.dropdown-menu > a div {
    display: flex;

    flex-direction: column;

    min-width: 0;
}

.dropdown-menu strong {
    font-size: 12px;

    font-weight: 700;

    color: #0a1e50;

    line-height: 1.4;
}

.dropdown-menu small {
    margin-top: 2px;

    font-size: 9px;

    color: #8a8e96;

    line-height: 1.4;
}


/* =========================================
   DROPDOWN FOOTER
========================================= */

.dropdown-footer {
    margin-top: 4px;

    padding: 12px 20px 10px;

    border-top: 1px solid #ebe7df;
}

.dropdown-footer a {
    display: inline-block !important;

    padding: 0 !important;

    color: #0b2057 !important;

    font-size: 10px !important;

    font-weight: 800 !important;

    text-transform: uppercase;

    letter-spacing: .12em;

    border: 0 !important;
}

.dropdown-footer a::after {
    display: none !important;
}

.dropdown-footer a:hover {
    padding-left: 0 !important;

    color: #b1874b !important;
}
.hero {
  min-height: 720px;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("../assets/about.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3, 14, 39, 0.83) 0%,
    rgba(3, 14, 39, 0.58) 48%,
    rgba(3, 14, 39, 0.22) 100%
  );
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.72fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}
.hero-copy {
  max-width: 720px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
}
.eyebrow.light {
  color: #e2bd7c;
}
.hero h1 {
  font: 500 clamp(52px, 6vw, 86px) / 0.91 var(--serif);
  letter-spacing: -0.025em;
  margin: 0 0 27px;
}
.hero h1 em,
.section-heading h2 em,
.about h2 em,
.facilities h2 em,
.quote-section em,
.cta-section em {
  font-style: italic;
  color: #d2ad70;
}
.hero-copy > p {
  max-width: 570px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 14px 24px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: 0.3s;
  cursor: pointer;
}
.btn span {
  font-size: 17px;
}
.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover {
  background: #d0a867;
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover {
  background: var(--navy-2);
}
.btn-outline {
  border-color: #cfc8bb;
  color: var(--navy);
  margin-top: 18px;
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}
.text-link {
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding-bottom: 5px;
}
.text-link span {
  margin-left: 10px;
}
.booking-card {
  background: #fff;
  color: var(--ink);
  padding: 34px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}
.booking-head h2 {
  font: 500 38px/1 var(--serif);
  margin: 0 0 7px;
  color: var(--navy);
}
.booking-head p {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 22px;
}
.booking-card label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 700;
  color: #656b76;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.booking-card input,
.booking-card select {
  width: 100%;
  margin: 7px 0 13px;
  border: 1px solid #dddfe3;
  padding: 12px 13px;
  font: 13px var(--sans);
  color: #525866;
  background: #fff;
  outline: none;
}
.booking-card input:focus,
.booking-card select:focus {
  border-color: var(--gold);
}
.full {
  width: 100%;
  margin-top: 5px;
}
.booking-card small {
  display: block;
  text-align: center;
  color: #92959b;
  font-size: 10px;
  margin-top: 12px;
}
.scroll-note {
  position: absolute;
  z-index: 3;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.75);
}
.scroll-note span {
  display: inline-block;
  width: 55px;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
  vertical-align: middle;
  margin-left: 12px;
}
.section {
  padding: 110px 0;
}
.intro {
  background: var(--cream);
  padding: 70px 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: 60px 1.3fr 1fr;
  gap: 30px;
  align-items: start;
}
.intro-number {
  font-size: 12px;
  color: var(--gold);
  font-weight: 800;
}
.intro h2,
.section-heading h2,
.about h2,
.facilities h2,
.cta-section h2 {
  font: 500 clamp(42px, 5vw, 65px) / 0.95 var(--serif);
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.02em;
}
.intro p {
  font-size: 14px;
  color: var(--muted);
  margin: 4px 0 0;
}
.about {
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-media {
  position: relative;
}
.about-media:before {
  content: "";
  position: absolute;
  inset: -22px 22px 22px -22px;
  border: 1px solid #ddd5c6;
  z-index: 0;
}
.about-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 610px;
  object-fit: cover;
}
.experience-badge {
  position: absolute;
  right: -32px;
  bottom: 28px;
  z-index: 2;
  width: 145px;
  height: 145px;
  background: var(--navy);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.experience-badge strong {
  font: 500 27px var(--serif);
  color: #e1ba79;
}
.experience-badge span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.6;
}
.about-copy p {
  color: var(--muted);
  font-size: 14px;
}
.feature-line {
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 12px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  margin-top: 3px;
}
.feature-line span {
  grid-row: span 2;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
}
.feature-line b {
  font-size: 13px;
  color: var(--navy);
}
.feature-line small {
  font-size: 11px;
  color: #8a8d95;
}
.section-heading {
  max-width: 700px;
  margin-bottom: 55px;
}
.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-heading p {
  color: var(--muted);
  font-size: 14px;
}
.section-heading.split {
  display: flex;
  max-width: none;
  justify-content: space-between;
  align-items: end;
  gap: 80px;
}
.section-heading.split p {
  max-width: 420px;
  margin: 0;
}
.rooms {
  background: #f9f8f5;
}
.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.room-card {
  background: #fff;
  box-shadow: 0 14px 50px rgba(12, 28, 63, 0.07);
}
.room-image {
  height: 300px;
  position: relative;
  overflow: hidden;
}
.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.7s;
}
.room-card:hover .room-image img {
  transform: scale(1.05);
}
.room-tag {
  position: absolute;
  left: 16px;
  top: 16px;
  background: var(--gold);
  color: #fff;
  padding: 5px 10px;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.room-content {
  padding: 25px;
}
.room-content > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.room-kicker {
  display: block;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.room-content h3 {
  font: 500 30px/1 var(--serif);
  color: var(--navy);
  margin: 7px 0;
}
.room-content > div + strong {
  color: var(--navy);
  white-space: nowrap;
}
.room-content strong small {
  font: 11px var(--sans);
  color: #777;
}
.room-content p {
  font-size: 12px;
  color: var(--muted);
  margin: 13px 0 20px;
}
.room-content > a {
  font-size: 11px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.room-content > a span {
  color: var(--gold);
  margin-left: 8px;
}
.facilities {
  background: var(--navy);
  color: #fff;
  background-image: url("../assets/pattern.svg");
}
.facilities h2 {
  color: #fff;
}
.facilities-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 80px;
  margin-bottom: 55px;
}
.facilities-top > p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}
.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}
.facility {
  position: relative;
  min-height: 220px;
  padding: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: 0.3s;
}
.facility:hover {
  background: rgba(255, 255, 255, 0.045);
}
.facility .icon {
  font-size: 27px;
  color: #d1ab6b;
  margin-bottom: 24px;
}
.facility h3 {
  font: 500 25px var(--serif);
  margin: 0 0 8px;
}
.facility p {
  font-size: 11px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.58);
  max-width: 260px;
}
.facility > span {
  position: absolute;
  right: 28px;
  bottom: 25px;
  color: rgba(255, 255, 255, 0.25);
  font-size: 10px;
}
.quote-section {
  background: #0b1f55;
  color: #fff;
  padding: 125px 0;
  text-align: center;
}
.quote-inner {
  max-width: 900px;
}
.quote-mark {
  display: block;
  color: #d0a86b;
  font: 100px/0.5 var(--serif);
  height: 45px;
}
.quote-section blockquote {
  font: 500 clamp(38px, 5vw, 65px) / 0.98 var(--serif);
  margin: 25px 0 35px;
}
.quote-section em {
  font-style: italic;
}
.quote-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  width: 90px;
  margin: auto;
}
.quote-section p {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.6);
}
.gallery {
  background: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-template-rows: 260px 260px;
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-item.tall {
  grid-row: span 2;
}
.dark-tile {
  background: linear-gradient(135deg, #0c2055, #162f68);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.gallery-copy {
  text-align: center;
  color: #fff;
}
.gallery-copy span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #d1ab6b;
}
.gallery-copy h3 {
  font: 500 43px var(--serif);
  margin: 7px 0;
}
.gallery-copy p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}
.gallery-copy a {
  font-size: 11px;
  color: #fff;
  border-bottom: 1px solid #d1ab6b;
  padding-bottom: 4px;
}
.testimonials {
  background: var(--cream);
}
.testimonial-wrap {
  display: grid;
  grid-template-columns: 55px 1fr 55px;
  align-items: center;
  gap: 20px;
  max-width: 900px;
  margin: auto;
}
.testimonial-slider {
  min-height: 270px;
  position: relative;
}
.testimonial {
  display: none;
  text-align: center;
}
.testimonial.active {
  display: block;
  animation: fade 0.4s;
}
.stars {
  color: var(--gold);
  letter-spacing: 0.15em;
}
.testimonial p {
  font: 500 31px/1.2 var(--serif);
  color: var(--navy);
  margin: 20px auto;
  max-width: 760px;
}
.testimonial strong {
  display: block;
  font-size: 12px;
  color: var(--navy);
}
.testimonial small {
  font-size: 10px;
  color: #898d95;
}
.slider-btn {
  width: 44px;
  height: 44px;
  border: 1px solid #d8d0c1;
  background: transparent;
  color: var(--navy);
  border-radius: 50%;
  cursor: pointer;
}
.slider-btn:hover {
  background: var(--navy);
  color: #fff;
}
.cta-section {
  padding: 90px 0;
  background: linear-gradient(100deg, #0b1f55, #153572);
  color: #fff;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-section h2 {
  color: #fff;
}
.cta-section .eyebrow {
  margin-bottom: 12px;
}
.footer {
  background: #f3f1ec;
  padding-top: 75px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 1.2fr 0.9fr;
  gap: 50px;
  padding-bottom: 55px;
}
.footer-brand img {
  width: 200px;
  margin-bottom: 18px;
}
.footer p,
.footer a,
.footer span {
  font-size: 11px;
  color: #737780;
  line-height: 1.9;
}
.footer-brand p {
  max-width: 300px;
}
.footer h4 {
  font: 500 23px var(--serif);
  color: var(--navy);
  margin: 0 0 15px;
}
.footer-grid > div:not(.footer-brand) a,
.footer-grid > div:not(.footer-brand) span {
  display: block;
  margin: 5px 0;
}
.footer a:hover {
  color: var(--navy);
}
.footer-book {
  color: var(--navy) !important;
  font-weight: 800 !important;
}
.footer-bottom {
  border-top: 1px solid #dedbd4;
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
}
.floating-contact {
  position: fixed;
  left: 18px;
  bottom: 24px;
  z-index: 45;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.floating-contact a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 19px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.16);
}
.floating-contact .call {
  background: #f4b01e;
}
.floating-contact .wa {
  background: #13be55;
}
.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  width: 47px;
  height: 47px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s;
}
.back-top.show {
  opacity: 1;
  transform: none;
}
.toast {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 100;
  background: #101e3d;
  color: #fff;
  padding: 15px 20px;
  font-size: 12px;
  box-shadow: var(--shadow);
  transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
  transition: 0.35s;
}
.toast.show {
  opacity: 1;
  transform: none;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 1050px) {
  .nav {
    gap: 18px;
  }
  .hero-grid {
    gap: 40px;
  }
  .about-grid {
    gap: 55px;
  }
  .intro-grid {
    grid-template-columns: 40px 1fr;
  }
  .intro-grid > p {
    grid-column: 2;
  }
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
  .footer-grid > div:last-child {
    display: none;
  }
}
@media (max-width: 820px) {

    /* =========================================
       HEADER
    ========================================= */

    .topbar {
        display: none;
    }

    .header {
        height: 76px;
    }

    .brand img {
        width: 190px;
    }


    /* =========================================
       MOBILE TOGGLE
    ========================================= */

    .nav-toggle {
        display: flex;
    }


    /* =========================================
       MOBILE NAVIGATION
    ========================================= */

    .nav {
        position: absolute;

        left: 0;
        right: 0;

        top: 76px;

        background: #fff;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 10px 24px 20px;

        box-shadow:
            0 20px 35px rgba(0, 0, 0, 0.10);

        z-index: 999;
    }

    .nav.open {
        display: flex;
    }


    /* =========================================
       MAIN NAV LINKS
    ========================================= */

    .nav > a,
    .nav-dropdown > .dropdown-toggle {
        width: 100%;

        padding: 13px 0 !important;

        color: #4e5360;

        text-decoration: none;

        box-sizing: border-box;
    }


    /* Remove desktop underline */

    .nav > a::after,
    .nav-dropdown > .dropdown-toggle::after {
        display: none !important;
    }


    /* =========================================
       DROPDOWN CONTAINER
    ========================================= */

    .nav-dropdown {
        width: 100%;
    }


    /* =========================================
       DROPDOWN TOGGLE
    ========================================= */

    .nav-dropdown > .dropdown-toggle {
        display: flex;

        align-items: center;

        justify-content: space-between;

        cursor: pointer;
    }


    /* =========================================
       ARROW
    ========================================= */

    .dropdown-arrow {
        width: 7px;
        height: 7px;

        border-right: 1.5px solid #9a7a42;
        border-bottom: 1.5px solid #9a7a42;

        transform: rotate(45deg);

        margin-right: 5px;
        margin-top: -4px;

        transition: transform .3s ease;
    }

    .nav-dropdown.open .dropdown-arrow {
        transform: rotate(225deg);
    }


    /* =========================================
       MOBILE DROPDOWN
    ========================================= */

    .dropdown-menu {
        position: static;

        width: 100%;

        margin: 0;

        padding: 4px 0;

        background: #faf9f6;

        border-top: 1px solid #e6dfd2;
        border-bottom: 1px solid #e6dfd2;

        box-shadow: none;

        transform: none !important;

        opacity: 1;
        visibility: visible;

        pointer-events: auto;

        display: none;
    }


    /* Open dropdown */

    .nav-dropdown.open .dropdown-menu {
        display: block;
    }


    /* =========================================
       DROPDOWN ITEMS
    ========================================= */

    .dropdown-menu > a {
        display: flex !important;

        align-items: center;

        gap: 12px;

        width: 100%;

        padding: 12px 12px !important;

        border-bottom: 1px solid #eee9e1;

        box-sizing: border-box;
    }

    .dropdown-menu > a:hover {
        padding-left: 16px !important;
    }


    /* =========================================
       DROPDOWN FOOTER
    ========================================= */

    .dropdown-footer {
        padding: 12px;
    }


    /* =========================================
       BOOK BUTTON
    ========================================= */

    .nav .nav-book {
        width: 100%;

        text-align: center;

        margin-top: 10px;

        padding: 13px 20px !important;
    }


    /* =========================================
       HERO
    ========================================= */

    .hero {
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        padding: 80px 0 60px;
    }

    .booking-card {
        max-width: 580px;
    }

    .hero h1 {
        font-size: 55px;
    }


    /* =========================================
       OTHER SECTIONS
    ========================================= */

    .intro-grid {
        grid-template-columns: 35px 1fr;
    }

    .intro-grid > p {
        grid-column: 2;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-media img {
        height: 500px;
    }

    .room-grid {
        grid-template-columns: 1fr 1fr;
    }

    .facilities-top {
        display: block;
    }

    .facility-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;

        grid-template-rows:
            260px
            260px;
    }

    .gallery-item.tall {
        grid-row: span 2;
    }

    .cta-inner {
        display: block;
    }

    .cta-inner .btn {
        margin-top: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }
}
@media (max-width: 560px) {
  .container {
    width: min(100% - 30px, 1180px);
  }
  .hero-grid {
    padding-top: 55px;
  }
  .hero h1 {
    font-size: 46px;
  }
  .hero-copy > p {
    font-size: 13px;
  }
  .hero-actions {
    gap: 18px;
    flex-wrap: wrap;
  }
  .booking-card {
    padding: 25px;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 75px 0;
  }
  .intro {
    padding: 50px 0;
  }
  .intro-grid {
    grid-template-columns: 1fr;
  }
  .intro-number {
    margin-bottom: -12px;
  }
  .intro-grid > p {
    grid-column: auto;
  }
  .intro h2,
  .section-heading h2,
  .about h2,
  .facilities h2,
  .cta-section h2 {
    font-size: 43px;
  }
  .about-media:before {
    inset: -12px 12px 12px -12px;
  }
  .about-media img {
    height: 420px;
  }
  .experience-badge {
    right: 10px;
  }
  .room-grid {
    grid-template-columns: 1fr;
  }
  .room-image {
    height: 270px;
  }
  .facility-grid {
    grid-template-columns: 1fr;
  }
  .facility {
    min-height: 190px;
  }
  .quote-section {
    padding: 85px 0;
  }
  .quote-section blockquote {
    font-size: 42px;
  }
  .section-heading.split {
    display: block;
  }
  .section-heading.split p {
    margin-top: 20px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 300px 250px 250px 300px;
  }
  .gallery-item.tall {
    grid-row: auto;
  }
  .testimonial-wrap {
    grid-template-columns: 40px 1fr 40px;
  }
  .testimonial p {
    font-size: 25px;
  }
  .cta-inner .btn {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom span {
    display: block;
    margin: 3px 0;
  }
  .floating-contact {
    left: 12px;
  }
  .back-top {
    right: 14px;
  }
  .toast {
    left: 15px;
    right: 15px;
    bottom: 15px;
  }
}
@media (min-width: 821px) {

    .nav-toggle {
        display: none !important;
    }

}

/* =========================================================
   FINAL PREMIUM FIXES
   Keep these rules at the END of the stylesheet.
========================================================= */

/* Correct hero image */
.hero-bg {
    background-image: url("../assets/hero.webp") !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

/* Never allow content sections to disappear if JS/observer fails.
   JS will add .visible only for the entrance animation. */
.reveal {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.reveal.visible {
    animation: dreamlandReveal .75s cubic-bezier(.22,.61,.36,1) both;
}

@keyframes dreamlandReveal {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium gold used throughout the page */
.btn-gold {
    background: #c9a15f !important;
    color: #fff !important;
    border-color: #c9a15f !important;
    box-shadow: 0 10px 28px rgba(196, 154, 90, .20);
}

.btn-gold:hover {
    background: #b88d4d !important;
    border-color: #b88d4d !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(196, 154, 90, .28);
}

.cta-section .btn-gold {
    min-width: 180px;
    padding: 16px 26px;
}

/* More substantial, premium footer */
.footer {
    padding-top: 90px !important;
    background: #f5f2ec !important;
}

.footer-grid {
    gap: 64px !important;
    padding-bottom: 70px !important;
}

.footer-brand img {
    width: 215px !important;
    margin-bottom: 24px !important;
}

.footer p,
.footer a,
.footer span {
    font-size: 13px !important;
    line-height: 1.9 !important;
}

.footer-brand p {
    max-width: 340px !important;
}

.footer h4 {
    font-size: 25px !important;
    margin-bottom: 20px !important;
}

.footer-grid > div:not(.footer-brand) a,
.footer-grid > div:not(.footer-brand) span {
    margin: 8px 0 !important;
}

.footer-bottom {
    padding: 22px 0 !important;
}

/* Testimonial section should have enough breathing room */
.testimonials {
    min-height: 500px;
}

.testimonial-slider {
    min-height: 300px !important;
}

.testimonial p {
    font-size: clamp(25px, 3vw, 34px) !important;
}

/* Prevent long contact/address content from squeezing the footer */
.footer-grid > div {
    min-width: 0;
}

/* Desktop footer stays four-column */
@media (min-width: 1051px) {
    .footer-grid {
        grid-template-columns: 1.5fr .8fr 1.25fr .95fr !important;
    }
}

/* Tablet */
@media (max-width: 1050px) {
    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr !important;
    }

    .footer-grid > div:last-child {
        display: block !important;
    }
}

/* Mobile */
@media (max-width: 820px) {
    .hero-grid {
        padding: 65px 0 75px !important;
    }

    .footer {
        padding-top: 65px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 38px 28px !important;
        padding-bottom: 50px !important;
    }

    .footer-brand {
        grid-column: 1 / -1 !important;
    }
}

@media (max-width: 560px) {
    .footer {
        padding-top: 55px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    .footer-brand {
        grid-column: auto !important;
    }

    .footer-brand img {
        width: 195px !important;
    }

    .footer p,
    .footer a,
    .footer span {
        font-size: 12px !important;
    }

    .footer h4 {
        font-size: 23px !important;
    }

    .testimonial-wrap {
        grid-template-columns: 42px minmax(0, 1fr) 42px !important;
        gap: 8px !important;
    }

    .slider-btn {
        width: 40px !important;
        height: 40px !important;
    }

    .testimonials {
        min-height: 480px;
    }
}
