/* ============================================
   Dirty Martini Beach Retreat — Stylesheet
   Palette: Plum (#4A1C52) + Amber (#F5A623)
   Fonts: Playfair Display + Inter
   ============================================ */

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

:root {
  --plum: #4A1C52;
  --plum-deep: #351439;
  --plum-light: #6B2D73;
  --amber: #F5A623;
  --amber-light: #FFD080;
  --amber-dark: #D4891A;
  --cream: #FFF8E7;
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #EEEEEE;
  --gray-300: #E0E0E0;
  --gray-500: #9E9E9E;
  --gray-700: #616161;
  --gray-900: #212121;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(74, 28, 82, 0.08);
  --shadow-md: 0 4px 20px rgba(74, 28, 82, 0.10);
  --shadow-lg: 0 8px 40px rgba(74, 28, 82, 0.14);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--plum);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--amber-dark);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Typography
   ============================================ */

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--plum);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-700);
  max-width: 560px;
  line-height: 1.7;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  padding: 12px 28px;
  white-space: nowrap;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-primary {
  background: var(--amber);
  color: var(--plum-deep);
  border-color: var(--amber);
}

.btn-primary:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  color: var(--plum-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--plum);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--plum);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
   Header
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.0);
  backdrop-filter: blur(0px);
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  transition: color var(--transition);
}

.site-header.scrolled .logo {
  color: var(--plum);
}

.logo-accent {
  color: var(--amber);
}

.logo-icon {
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-list a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all var(--transition);
}

.nav-list a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.site-header.scrolled .nav-list a {
  color: var(--gray-700);
}

.site-header.scrolled .nav-list a:hover {
  color: var(--plum);
  background: var(--gray-100);
}

.nav-list .btn-primary {
  color: var(--plum-deep);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.site-header.scrolled .hamburger {
  background: var(--plum);
}

.nav-toggle[aria-expanded="true"] .hamburger:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .hamburger:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(74, 28, 82, 0.82) 0%,
    rgba(53, 20, 57, 0.75) 40%,
    rgba(107, 45, 115, 0.60) 70%,
    rgba(245, 166, 35, 0.35) 100%
  );
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 80%, rgba(245, 166, 35, 0.15) 0%, transparent 60%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 720px;
  padding: 120px 24px 80px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================
   Intro
   ============================================ */

.intro {
  padding: 100px 0;
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.intro-text .section-title {
  margin-bottom: 20px;
}

.intro-text p {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.8;
}

.intro-props {
  display: grid;
  gap: 20px;
}

.prop-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.prop-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--amber-light);
}

.prop-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 166, 35, 0.12);
  border-radius: 12px;
}

.prop-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 6px;
}

.prop-card p {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.6;
}

/* ============================================
   Rooms
   ============================================ */

.rooms {
  padding: 100px 0;
  background: var(--gray-50);
}

.rooms .container {
  text-align: center;
}

.rooms .section-subtitle {
  margin: 0 auto 56px;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
}

.room-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.room-card.featured {
  border-color: var(--amber);
  box-shadow: var(--shadow-md);
}

.room-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: var(--amber);
  color: var(--plum-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
}

.room-img {
  height: 240px;
  overflow: hidden;
}

.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card:hover .room-img img {
  transform: scale(1.05);
}

.room-body {
  padding: 28px;
}

.room-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 10px;
}

.room-body p {
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 18px;
}

.room-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.room-features li {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--plum);
  background: rgba(74, 28, 82, 0.07);
  padding: 5px 12px;
  border-radius: 50px;
}

/* ============================================
   Amenities
   ============================================ */

.amenities {
  padding: 100px 0;
  background: var(--white);
}

.amenities-header {
  text-align: center;
  margin-bottom: 56px;
}

.amenities-header .section-subtitle {
  margin: 0 auto;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.amenity {
  padding: 32px 28px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.amenity:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--amber-light);
}

.amenity-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 166, 35, 0.12);
  border-radius: 12px;
  margin-bottom: 18px;
}

.amenity h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 8px;
}

.amenity p {
  font-size: 0.88rem;
  color: var(--gray-700);
  line-height: 1.65;
}

/* ============================================
   Location
   ============================================ */

.location {
  padding: 100px 0;
  background: var(--gray-50);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.location-desc {
  font-size: 1.02rem;
  color: var(--gray-700);
  line-height: 1.8;
}

.location-details {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.8;
}

.location-details a {
  color: var(--plum);
  font-weight: 500;
}

.location-details a:hover {
  color: var(--amber-dark);
}

.location-details strong {
  color: var(--plum);
}

.location-landmarks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

.landmark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--plum);
  background: rgba(74, 28, 82, 0.06);
  padding: 8px 16px;
  border-radius: 50px;
}

.location-map {
  min-height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ============================================
   Gallery
   ============================================ */

.gallery {
  padding: 100px 0 80px;
  background: var(--white);
}

.gallery .container {
  text-align: center;
}

.gallery .section-subtitle {
  margin: 0 auto 56px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74, 28, 82, 0.2) 0%, transparent 40%);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item:nth-child(1) {
  grid-column: 1 / 5;
  grid-row: 1 / 3;
  min-height: 420px;
}

.gallery-item:nth-child(2) {
  grid-column: 5 / 9;
  grid-row: 1;
  min-height: 200px;
}

.gallery-item:nth-child(3) {
  grid-column: 9 / 13;
  grid-row: 1;
  min-height: 200px;
}

.gallery-item:nth-child(4) {
  grid-column: 5 / 9;
  grid-row: 2;
  min-height: 200px;
}

.gallery-item:nth-child(5) {
  grid-column: 9 / 13;
  grid-row: 2;
  min-height: 200px;
}

.gallery-item:nth-child(6) {
  grid-column: 1 / 5;
  grid-row: 3;
  min-height: 420px;
}

/* ============================================
   Testimonial Strip
   ============================================ */

.testimonial-strip {
  padding: 80px 0;
  background: var(--plum);
  position: relative;
  overflow: hidden;
}

.testimonial-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.testimonial {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.quote-mark {
  margin-bottom: 24px;
  opacity: 0.6;
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 24px;
}

.testimonial-attribution {
  font-size: 0.9rem;
  color: var(--amber);
  font-weight: 500;
}

/* ============================================
   CTA
   ============================================ */

.cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--plum-deep) 0%,
    var(--plum) 50%,
    var(--plum-light) 100%
  );
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-title {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   Contact
   ============================================ */

.contact {
  padding: 100px 0;
  background: var(--gray-50);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info .section-title {
  margin-bottom: 16px;
}

.contact-desc {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
}

.contact-item-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 166, 35, 0.12);
  border-radius: 12px;
}

.contact-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 0.95rem;
  color: var(--gray-900);
  line-height: 1.6;
}

.contact-item a {
  color: var(--plum);
}

.contact-item a:hover {
  color: var(--amber-dark);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--plum);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--gray-900);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 12px 16px;
  transition: all var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
}

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(74, 28, 82, 0.06);
  border: 1px solid rgba(74, 28, 82, 0.12);
  border-radius: 10px;
  color: var(--plum);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--plum-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 300px;
}

.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--amber);
}

.footer-contact p {
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 4px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact a:hover {
  color: var(--amber);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .intro-grid {
    gap: 48px;
  }

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

  .rooms-grid .room-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }

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

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-column: 1 / 7;
    min-height: 280px;
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
    min-height: 180px;
  }

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

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-column: auto;
    min-height: 240px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--plum-deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 96px 32px 32px;
    gap: 4px;
    transition: right var(--transition);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.3);
  }

  .nav-list.open {
    right: 0;
  }

  .nav-list a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    padding: 12px 16px;
    width: 100%;
    border-radius: 8px;
  }

  .nav-list a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
  }

  .nav-list .btn-primary {
    margin-top: 16px;
    text-align: center;
    justify-content: center;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro-props {
    order: -1;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .rooms-grid .room-card:last-child {
    max-width: 100%;
  }

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

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

  .location-map {
    min-height: 280px;
  }

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

  .gallery-item {
    min-height: 220px !important;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-wrap {
    padding: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .intro,
  .rooms,
  .amenities,
  .location,
  .gallery,
  .contact {
    padding: 72px 0;
  }

  .hero-content {
    padding: 100px 16px 80px;
  }

  .room-body {
    padding: 20px;
  }

  .contact-form-wrap {
    padding: 20px;
  }
}

/* ============================================
   Animations
   ============================================ */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }
.fade-up:nth-child(6) { transition-delay: 0.40s; }
