:root {
  --background: #F9F6F1;
  --sandstone: #D9B382;
  --dark-brown: #4A3628;
  --gold: #C89B3C;
  --text: #222222;
  --pool: #38B6C7;
  --white: #FFFFFF;
  --shadow: 0 20px 50px rgba(74, 54, 40, 0.12);
  --radius: 24px;
  --transition: 0.35s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.75;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(249, 246, 241, 0.85);
  border-bottom: 1px solid rgba(74, 54, 40, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.75rem, 1vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  min-height: 48px;
}

.brand-logo img {
  width: auto;
  height: clamp(40px, 3.4vw, 48px);
  max-height: 48px;
  max-width: 72px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(200, 155, 60, 0.25);
  transition: none;
}

.brand-logo span {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(1.55rem, 2vw, 1.95rem);
  color: var(--dark-brown);
  line-height: 1;
  white-space: nowrap;
}

.brand-logo img,
.brand-logo span {
  transition: none !important;
}

.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background);
}

.intro-screen img {
  width: min(220px, 35vw);
  max-width: 220px;
  height: auto;
  object-fit: contain;
  display: block;
}

.intro-hidden {
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.site-header .navbar {
  min-height: 72px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--dark-brown);
  font-size: 0.98rem;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--dark-brown);
  border-radius: 999px;
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 96px);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(74, 54, 40, 0.20), rgba(248, 240, 228, 0.92));
}

.page-hero {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: none;
}

.page-hero .hero-banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.page-hero .hero-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.hero-content,
.page-hero .hero-copy {
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  color: #1f1f1f;
}

.page-hero .hero-copy h1 {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3rem, 4vw, 4.2rem);
  line-height: 1.02;
}

.page-hero .hero-copy p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 720px;
}

.eyebrow {
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.03;
  margin: 0;
}

.hero-description {
  margin: 1.4rem auto 2rem;
  font-size: 1.05rem;
  max-width: 640px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.btn-primary {
  background: var(--dark-brown);
  color: var(--white);
  box-shadow: 0 18px 30px rgba(74, 54, 40, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  background: var(--gold);
  color: var(--dark-brown);
}

.btn-secondary {
  background: rgba(217, 179, 130, 0.12);
  color: var(--dark-brown);
  border-color: rgba(74, 54, 40, 0.12);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  transform: translateY(-2px);
  background: var(--gold);
  color: var(--dark-brown);
}

.btn-mmt {
  gap: 0.7rem;
}

.mmt-logo,
.airbnb-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(74, 54, 40, 0.08);
  color: var(--dark-brown);
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

.btn-airbnb {
  gap: 0.7rem;
}

section {
  padding: 5rem 0;
}

.section-label {
  display: inline-block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2,
.section-intro h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0.5rem 0 1rem;
}

.section-header p,
.section-intro p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(34, 34, 34, 0.82);
}

.welcome-section {
  text-align: center;
}

.overview-section .overview-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border-radius: 28px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover,
.feature-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 24px 45px rgba(74, 54, 40, 0.18);
}

.feature-card i {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.image-slider {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.image-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.image-slider .slide.active {
  opacity: 1;
  position: relative;
}

.image-slider img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: var(--dark-brown);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.slider-arrow.prev {
  left: 1rem;
}

.slider-arrow.next {
  right: 1rem;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 1.3rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
}

.slider-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.75);
  cursor: pointer;
}

.slider-dots button.active {
  background: var(--dark-brown);
}

.rooms-grid,
.gallery-grid,
.courtyard-cards,
.rooftop-cards,
.dining-grid,
.review-grid,
.location-details {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

.rooms-grid,
.dining-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
}

.courtyard-cards,
.rooftop-cards,
.location-details {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
}

.gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.room-card,
.dining-card,
.info-card,
.review-card,
.location-card {
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.room-card img,
.dining-card img,
.review-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.room-content,
.review-content {
  padding: 1.7rem;
}

.dining-card,
.info-card {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 1.25rem 1.25rem 1.5rem;
}

.dining-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
}

.info-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 440px;
  height: 100%;
  padding: 1.25rem 1.25rem 1.5rem;
}

.info-card i {
  font-size: 1.45rem;
  color: var(--dark-brown);
  margin-bottom: 0.85rem;
}

.room-content h3,
.dining-card h3,
.info-card h3,
.location-card h3 {
  margin-top: 0;
  margin-bottom: 0.85rem;
}

.dining-card h3,
.info-card h3 {
  margin: 0.6rem 0 0.6rem;
  font-size: 1.35rem;
  line-height: 1.15;
}

.dining-card p,
.info-card p {
  margin: 0;
  color: rgba(34, 34, 34, 0.88);
  line-height: 1.6;
  font-size: 0.98rem;
  opacity: 0.95;
}

.room-content p,
.location-card p {
  margin: 0 0 1.3rem;
  color: rgba(34, 34, 34, 0.82);
}

.info-card {
  padding: 1.25rem 1.25rem 1.5rem;
}

.dining-card .btn {
  margin-top: auto;
}

.room-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.9rem;
}

.room-features li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
}

.room-features i {
  color: var(--gold);
}

.exterior-gallery-grid,
.exterior-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.gallery-card,
.exterior-grid img,
.gallery-grid img {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-card img,
.exterior-grid img,
.gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition), filter var(--transition);
}

.gallery-card img:hover,
.gallery-card img:focus,
.exterior-grid img:hover,
.gallery-grid img:hover {
  transform: scale(1.03);
}

.gallery-card {
  min-height: 420px;
}

.exterior-grid img,
.gallery-grid img {
  min-height: 360px;
}

.heritage-architecture-section .architecture-card {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--white);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.heritage-architecture-section .architecture-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
}

.heritage-architecture-section .architecture-copy {
  display: grid;
  gap: 1rem;
}

.heritage-architecture-section .architecture-copy p {
  margin: 0;
  color: rgba(34, 34, 34, 0.84);
  line-height: 1.85;
}

.gallery-card:hover img,
.gallery-card:focus-within img {
  transform: scale(1.03);
}

.exterior-gallery-grid .gallery-card {
  min-height: 420px;
}

.exterior-grid img,
.gallery-grid img {
  height: 460px;
  object-fit: cover;
}

.section-intro {
  max-width: 900px;
  margin: 0 auto;
}

.page-hero {
  min-height: 70vh;
  display: grid;
  place-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
}

.page-hero-rooms,
.page-hero-dining,
.page-hero-courtyard,
.page-hero-rooftop {
  background: none;
}

.page-hero-feedback,
.page-hero-location {
  background: linear-gradient(180deg, rgba(74, 54, 40, 0.45), rgba(249, 246, 241, 0.95)), url('assets/home/exterior1.jpg');
}

.hero-copy {
  padding: 7rem 0;
  text-align: center;
  color: var(--white);
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 4vw, 4rem);
  margin: 1rem 0;
}

.hero-copy p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

.review-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: start;
  gap: 1.5rem;
  padding: 1.8rem;
}

.reviewer-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(217, 179, 130, 0.14);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 2rem;
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.review-content h3 {
  margin-bottom: 0.2rem;
}

.review-content span {
  color: rgba(34, 34, 34, 0.64);
  font-size: 0.95rem;
}

.feedback-form form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.feedback-form label {
  display: grid;
  gap: 0.75rem;
  font-weight: 500;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  width: 100%;
  border: 1px solid rgba(74, 54, 40, 0.16);
  border-radius: 18px;
  padding: 1rem 1.2rem;
  background: var(--background);
  color: var(--text);
  outline: none;
}

.feedback-form textarea {
  resize: vertical;
}

.full-width {
  grid-column: span 2;
}

.map-wrapper {
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location-actions {
  margin-top: 2rem;
  text-align: center;
}

.location-actions .btn {
  max-width: 260px;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  padding: 3rem 0 1.5rem;
}

.footer-col h3 {
  margin-bottom: 1rem;
}

.footer-col p,
.footer-col a {
  display: block;
  color: rgba(34, 34, 34, 0.76);
  margin-bottom: 0.85rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(74, 54, 40, 0.08);
  color: var(--dark-brown);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(74, 54, 40, 0.08);
}

.back-to-top {
  color: var(--dark-brown);
}

.fade-up,
.fade-left,
.fade-right,
.zoom-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 1s ease forwards;
}

.fade-left {
  transform: translateX(-24px);
}

.fade-right {
  transform: translateX(24px);
}

.zoom-in {
  transform: scale(0.95);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translate(0);
  }
}

@media (max-width: 1024px) {
  .feature-grid,
  .rooms-grid,
  .dining-grid,
  .courtyard-cards,
  .rooftop-cards,
  .gallery-grid,
  .location-details {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 60vh;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    width: 100%;
    flex-direction: column;
    display: none;
    margin-top: 1rem;
    gap: 1rem;
  }

  .nav-links.open {
    display: flex;
  }

  .section-header,
  .welcome-section,
  .hero-copy {
    text-align: left;
  }

  .hero-content,
  .hero-copy {
    padding: 0 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .full-width {
    grid-column: span 1;
  }
}
