﻿:root {
  --bg: #0a0a0a;
  --bg-soft: #131313;
  --paper: #f3ede2;
  --muted: #c8bda9;
  --text: #ece7df;
  --text-dim: #b5ab9c;
  --gold: #b8995a;
  --gold-soft: #d4bb86;
  --line: rgba(255, 255, 255, 0.12);
  --radius: 1.1rem;
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  background: radial-gradient(circle at top right, #17140f 0%, #090909 45%);
  color: var(--text);
}

body {
  font-family: "Manrope", sans-serif;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

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

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 7rem 0;
  position: relative;
}

.eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold-soft);
  margin-bottom: 1rem;
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  margin: 0 0 1rem;
  line-height: 1.05;
}

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

p {
  color: var(--text-dim);
  line-height: 1.75;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  transition: 0.35s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(115deg, var(--gold) 0%, #9f7a3c 100%);
  color: #16130d;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(184, 153, 90, 0.35);
}

.btn-outline,
.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.btn-outline:hover,
.btn-ghost:hover {
  border-color: var(--gold-soft);
  color: var(--paper);
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.25rem 0 1rem;
  transition: 0.35s ease;
}

.header.scrolled {
  background: rgba(7, 7, 7, 0.75);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
}

.brand-mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

.nav-desktop {
  display: flex;
  gap: 1.8rem;
  font-size: 0.86rem;
  color: var(--text-dim);
}

.nav-desktop a {
  position: relative;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 1px;
  background: var(--gold-soft);
  transition: 0.35s ease;
}

.nav-desktop a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.35rem;
}

.menu-toggle span {
  width: 1rem;
  height: 1px;
  background: var(--text);
  transition: 0.3s ease;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.96);
  z-index: 99;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.35s ease;
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.menu-overlay-inner {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: center;
}

.menu-link {
  font-size: clamp(1.6rem, 6vw, 2.8rem);
  font-family: "Cormorant Garamond", serif;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  height: 100%;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.32));
  z-index: -1;
}

.hero-content {
  padding-top: 1.4rem;
  padding-bottom: 8rem;
  max-width: 840px;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 6.3rem);
  margin-bottom: 1.3rem;
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  max-width: 680px;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--paper);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-indicator i {
  animation: floatY 1.8s infinite ease-in-out;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.section-head {
  max-width: 680px;
}

.section-head.center {
  text-align: center;
  margin: 0 auto 2rem;
}

.about-visual img,
.restaurant-media img,
.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.stats {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.02);
}

.stat h3 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 0.3rem;
}

.suite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.suite-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #101010;
  transition: 0.45s ease;
}

.suite-card img {
  height: 300px;
  transition: transform 0.7s ease;
}

.suite-card-body {
  padding: 1.3rem;
}

.suite-card-body h3 {
  font-size: 2rem;
}

.suite-card-body span {
  color: var(--gold-soft);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.suite-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 187, 134, 0.35);
}

.suite-card:hover img {
  transform: scale(1.08);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: linear-gradient(
    150deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
}

.service i {
  color: var(--gold-soft);
  font-size: 1.15rem;
}

.service h3 {
  margin-top: 0.8rem;
  font-size: 1.8rem;
}


.gallery-swiper {
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-swiper .swiper-slide {
  background: #0b0b0b;
  overflow: hidden;
}


.gallery-swiper .swiper-slide img {
  height: 620px;
}

.gallery-controls {
  position: absolute;
  bottom: 2rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--paper);
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 0.8rem;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.6);
}

.swiper-pagination-bullet-active {
  background: var(--gold-soft);
}

.testimonial-swiper {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-swiper .swiper-slide {
  opacity: 0 !important;
  transition: opacity 0.5s ease;
}

.testimonial-swiper .swiper-slide-active {
  opacity: 1 !important;
}

.testimonial-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
}

.testimonial-card p {
  font-size: clamp(1.1rem, 2.3vw, 1.6rem);
  line-height: 1.55;
  color: var(--paper);
}

.testimonial-card h4 {
  margin-top: 1.2rem;
  color: var(--gold-soft);
}

.align-center {
  align-items: center;
}

.booking-card {
  border: 1px solid rgba(212, 187, 134, 0.22);
  border-radius: 1.6rem;
  padding: clamp(1.4rem, 4vw, 2.6rem);
  background:
    radial-gradient(circle at 8% 0%, rgba(212, 187, 134, 0.12), transparent 36%),
    linear-gradient(130deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 1.1rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.booking-main {
  padding: 0.4rem;
}

.booking-aside {
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-aside h3 {
  font-size: 1.8rem;
  margin: 0;
}

.booking-aside ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.booking-aside li {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.booking-aside i {
  color: var(--gold-soft);
  margin-right: 0.45rem;
}

.booking-contact {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.booking-contact span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-dim);
}

.booking-contact strong {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--paper);
}

.booking-form {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field-label {
  color: var(--text-dim);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.field-control {
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.15rem 0.8rem;
  transition: 0.3s ease;
}

.field-control i {
  color: var(--gold-soft);
  font-size: 0.83rem;
}

.booking-form input,
.booking-form select {
  background: transparent;
  border: 0;
  color: var(--paper);
  padding: 0.92rem 0.25rem;
  outline: none;
  width: 100%;
  font-family: "Manrope", sans-serif;
}

.booking-form select {
  appearance: none;
}

.field-control:focus-within {
  border-color: rgba(212, 187, 134, 0.65);
  box-shadow: 0 0 0 3px rgba(212, 187, 134, 0.12), 0 10px 24px rgba(0, 0, 0, 0.3);
}

.booking-form .btn {
  grid-column: span 2;
  margin-top: 0.5rem;
  min-height: 3.05rem;
  justify-content: center;
  gap: 0.5rem;
}

.booking-form .btn i {
  transition: 0.3s ease;
}

.booking-form .btn:hover i {
  transform: translateX(3px);
}

.location-meta {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.location-meta span {
  color: var(--text-dim);
}

.location-meta i {
  color: var(--gold-soft);
  margin-right: 0.45rem;
}

.map-card iframe {
  width: 100%;
  min-height: 340px;
  border: 0;
  filter: grayscale(0.9) contrast(1.1) brightness(0.85);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 4rem 0 1.2rem;
  background: rgba(0, 0, 0, 0.45);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.2rem;
}

.footer h4 {
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
}

.footer a {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--text-dim);
}

.socials {
  display: flex;
  gap: 0.7rem;
}

.socials a {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
}

.footer-bottom {
  margin-top: 1.8rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  font-size: 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
}

@media (max-width: 1024px) {
  .nav-desktop,
  .desktop-book {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .suite-grid,
  .service-grid,
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

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

  .gallery-swiper .swiper-slide img {
    height: 500px;
  }

  .booking-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 5rem 0;
  }

  .hero-content {
    padding-bottom: 6.6rem;
  }

  .hero-title {
    font-size: clamp(2.2rem, 11vw, 3.1rem);
  }

  .suite-grid,
  .service-grid,
  .stats,
  .booking-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .booking-form .btn {
    grid-column: span 1;
  }

  .scroll-indicator {
    right: 1rem;
    bottom: 1.2rem;
  }

  .gallery-swiper .swiper-slide img {
    height: 380px;
  }
}

