:root {
  --orange: #f47c20;
  --orange-dark: #d4640d;
  --orange-light: #fff3e8;
  --navy: #0f2044;
  --navy-mid: #1a3060;
  --navy-light: #e8edf7;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray: #6b7a90;
  --gray-light: #e4e9f2;
  --text: #1a2540;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 4px 24px rgba(15, 32, 68, 0.1);
  --shadow-lg: 0 12px 48px rgba(15, 32, 68, 0.16);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Montserrat", sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
h1,
h2,
h3 {
  font-family: "Lora", serif;
  line-height: 1.18;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  width: 100%;
}
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}
.d4 {
  transition-delay: 0.4s;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition:
    background 0.35s,
    box-shadow 0.35s;
}
nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(15, 32, 68, 0.1);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
.nav-logo {
  font-family: "Lora", serif;
  font-size: 1.5rem;
  font-weight: 600;
  font-style: italic;
  color: var(--gray);
  transition: color 0.3s;
}
nav.scrolled .nav-logo {
  color: var(--navy);
}
.nav-logo strong {
  font-style: normal;
  font-weight: 700;
}
.nav-logo span {
  color: var(--orange);
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.25s;
}
nav.scrolled .nav-links a {
  color: var(--navy-mid);
}
.nav-links a:hover,
nav.scrolled .nav-links a:hover,
.nav-links a.active {
  color: var(--orange) !important;
}
.nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition:
    background 0.25s,
    transform 0.2s;
}
.nav-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
nav.scrolled .hamburger span {
  background: var(--navy);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.drawer-bg {
  position: fixed;
  inset: 0;
  background: rgba(15, 32, 68, 0);
  z-index: 200;
  pointer-events: none;
  transition: background 0.3s;
}
.drawer-bg.open {
  background: rgba(15, 32, 68, 0.55);
  pointer-events: all;
}
.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(78vw, 300px);
  height: 100%;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 80px 32px 40px;
  box-shadow: -4px 0 40px rgba(15, 32, 68, 0.15);
}
.drawer-bg.open .drawer-panel {
  transform: none;
}
.drawer-panel a {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-light);
  transition: color 0.2s;
}
.drawer-panel a:hover {
  color: var(--orange);
}
.drawer-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--gray);
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
}
.swiper-container,
.swiper-wrapper,
.swiper-slide {
  height: 100%;
}
.swiper-slide {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 20, 45, 0.35) 0%,
    rgba(10, 20, 45, 0.65) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-content {
  color: var(--white);
  padding: 0 24px;
}
.hero-label {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero-content h1 {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin: 0 auto 28px;
  font-weight: 400;
}
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 28px;
}
.hero-rating i {
  color: #f5c842;
}
.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-orange {
  background: var(--orange);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition:
    background 0.25s,
    transform 0.2s,
    box-shadow 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-orange:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 124, 32, 0.4);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition:
    background 0.25s,
    border-color 0.25s;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--white);
}
.swiper-pagination-bullet {
  background: var(--white);
  opacity: 0.5;
  width: 8px;
  height: 8px;
}
.swiper-pagination-bullet-active {
  background: var(--orange);
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}
.swiper-button-next,
.swiper-button-prev {
  color: rgba(255, 255, 255, 0.8) !important;
  --swiper-navigation-size: 20px;
}

/* STATS */
.stats-strip {
  background: var(--navy);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.stat:last-child {
  border-right: none;
}
.stat-num {
  font-family: "Lora", serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 5px;
}
.stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

/* SECTIONS */
section {
  padding: 88px 0;
}
section.alt {
  background: var(--off-white);
}
section.navy {
  background: var(--navy);
}
.eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
section.navy .section-title {
  color: var(--white);
}
.section-sub {
  font-size: 0.97rem;
  color: var(--gray);
  max-width: 520px;
}
section.navy .section-sub {
  color: rgba(255, 255, 255, 0.6);
}
.underline-accent {
  width: 44px;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
  margin: 14px 0;
}
.sh-center {
  text-align: center;
}
.sh-center .section-sub {
  margin: 0 auto;
}
.sh-center .underline-accent {
  margin: 14px auto;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  width: 100%;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  text-align: center;
  box-shadow: 0 10px 36px rgba(244, 124, 32, 0.35);
  width: 130px;
}
.about-badge .num {
  font-family: "Lora", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.about-badge .lbl {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.about-text p {
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.about-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.feat {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.feat i {
  color: var(--orange);
  font-size: 1rem;
  width: 16px;
  text-align: center;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.svc-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.svc-icon i {
  color: var(--orange);
  font-size: 1.3rem;
}
.svc-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.svc-card p {
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.7;
}

/* MENU */
.menu-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.menu-filter {
  background: transparent;
  border: 1.5px solid var(--gray-light);
  color: var(--gray);
  padding: 9px 24px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Montserrat", sans-serif;
}
.menu-filter:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.menu-filter.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 22px;
}
.menu-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.menu-img-wrap {
  overflow: hidden;
}
.menu-img {
  height: 190px;
  object-fit: cover;
  transition: transform 0.5s;
}
.menu-card:hover .menu-img {
  transform: scale(1.05);
}
.menu-body {
  padding: 18px 20px 20px;
}
.menu-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.menu-body p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 14px;
  line-height: 1.6;
}
.menu-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu-price {
  font-family: "Lora", serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--orange);
}
.menu-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  background: var(--orange-light);
  color: var(--orange);
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gal-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.gal-item:first-child {
  grid-column: 1 / 3;
}
.gal-item img {
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s;
}
.gal-item:first-child img {
  height: 360px;
}
.gal-item:hover img {
  transform: scale(1.05);
}
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 32, 68, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gal-item:hover .gal-overlay {
  opacity: 1;
}
.gal-overlay span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}
.review-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.rev-stars {
  color: #f5c842;
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.rev-text {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.rev-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rev-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lora", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.rev-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
}
.rev-loc {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.4);
}

/* BOOKING */
.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.bk-p {
  color: var(--gray);
  margin: 12px 0 32px;
  font-size: 0.95rem;
  line-height: 1.8;
}
.bk-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.bk-icon {
  width: 42px;
  height: 42px;
  background: var(--orange-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bk-icon i {
  color: var(--orange);
}
.bk-txt strong {
  display: block;
  font-size: 0.87rem;
  color: var(--navy);
}
.bk-txt span,
.bk-txt a {
  font-size: 0.85rem;
  color: var(--gray);
}
.bk-txt a:hover {
  color: var(--orange);
}
.bk-form {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.fg {
  margin-bottom: 18px;
}
.fg label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 7px;
}
.fg input,
.fg textarea,
.fg select {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--text);
  font-size: 0.93rem;
  font-family: "Montserrat", sans-serif;
  transition:
    border-color 0.2s,
    background 0.2s;
  outline: none;
}
.fg select {
  cursor: pointer;
}
.fg input:focus,
.fg textarea:focus,
.fg select:focus {
  border-color: var(--orange);
  background: var(--white);
}
.fg textarea {
  resize: vertical;
  min-height: 90px;
}
.fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.btn-submit {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  transition:
    background 0.25s,
    transform 0.2s,
    box-shadow 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 124, 32, 0.3);
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 52px;
  align-items: start;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}
.ci {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ci-icon {
  width: 42px;
  height: 42px;
  background: var(--orange-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.ci-icon i {
  color: var(--orange);
}
.ci-text strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 3px;
}
.ci-text a,
.ci-text span {
  font-size: 0.93rem;
  color: var(--text);
  transition: color 0.2s;
}
.ci-text a:hover {
  color: var(--orange);
}
.social-row {
  display: flex;
  gap: 10px;
}
.soc {
  width: 42px;
  height: 42px;
  background: var(--navy-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-mid);
  font-size: 1rem;
  transition:
    background 0.25s,
    color 0.25s;
}
.soc:hover {
  background: var(--orange);
  color: var(--white);
}
.map-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-light);
}
.map-box iframe {
  display: block;
  height: 400px;
}

/* AMENITIES */
.amen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.amen-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.amen-card h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.amen-card h3 i {
  color: var(--orange);
}
.amen-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.amen-list li {
  font-size: 0.88rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
}
.amen-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* FOOTER */
footer {
  background: var(--navy);
  padding: 56px 0 28px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}
.footer-logo {
  font-family: "Lora", serif;
  font-size: 1.4rem;
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-logo span {
  color: var(--orange);
}
.footer-brand p {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-soc {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  transition:
    background 0.2s,
    color 0.2s;
}
.footer-soc:hover {
  background: var(--orange);
  color: var(--white);
}
.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li + li {
  margin-top: 10px;
}
.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* FLOAT */
.float-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  background: var(--orange);
  color: var(--white);
  padding: 13px 22px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 28px rgba(244, 124, 32, 0.45);
  transition:
    background 0.25s,
    transform 0.2s;
}
.float-call:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-grid,
  .booking-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .about-badge {
    right: 0;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .amen-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gal-item:first-child {
    grid-column: 1 / -1;
  }
}
@media (max-width: 768px) {
  section {
    padding: 64px 0;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .about-img {
    height: 300px;
  }
  .about-feats {
    grid-template-columns: 1fr;
  }
  .fg-row {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .amen-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gal-item:first-child {
    grid-column: auto;
  }
  .gal-item:first-child img {
    height: 240px;
  }
}
