/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --terracotta: #C0603A;
  --terracotta-dark: #A84E30;
  --terracotta-light: #D4926A;
  --sand: #F5E6D3;
  --sand-light: #FAF3EB;
  --sand-dark: #E8D5C0;
  --cream: #FDF8F3;
  --charcoal: #2C2420;
  --charcoal-light: #4A3F38;
  --warm-gray: #8A7E76;
  --white: #FFFFFF;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 2px 8px rgba(44, 36, 32, 0.08);
  --shadow-md: 0 8px 30px rgba(44, 36, 32, 0.12);
  --shadow-lg: 0 20px 60px rgba(44, 36, 32, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

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

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

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

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 243, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(192, 96, 58, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
  box-shadow: var(--shadow-sm);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--charcoal);
}

.nav-logo-mark {
  width: 40px;
  height: 40px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.nav-logo-text {
  font-weight: 600;
  letter-spacing: -0.01em;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal-light);
  transition: color 0.3s;
  position: relative;
}

.nav-links a:not(.btn):hover {
  color: var(--terracotta);
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width 0.3s;
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

.btn-nav {
  background: var(--terracotta);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: background 0.3s, transform 0.2s !important;
}

.btn-nav::after {
  display: none !important;
}

.btn-nav:hover {
  background: var(--terracotta-dark) !important;
  transform: translateY(-1px);
}

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

.nav-toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--charcoal);
  padding: 8px;
}

.mobile-nav ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--charcoal);
  padding: 12px 24px;
  display: block;
  transition: color 0.3s;
}

.mobile-nav-link:hover {
  color: var(--terracotta);
}

.mobile-nav-cta {
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--terracotta);
  color: var(--white);
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn-terracotta {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}

.btn-terracotta:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
}

.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(--terracotta);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--terracotta);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--sand);
  border-color: var(--sand);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

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

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: var(--terracotta);
  top: -200px;
  right: -100px;
}

.hero-shape-2 {
  width: 300px;
  height: 300px;
  background: var(--sand-dark);
  bottom: 10%;
  left: -80px;
}

.hero-shape-3 {
  width: 150px;
  height: 150px;
  background: var(--terracotta-light);
  top: 40%;
  left: 35%;
  border-radius: var(--radius-lg);
  transform: rotate(45deg);
  opacity: 0.12;
}

.hero-shape-4 {
  width: 80px;
  height: 80px;
  background: var(--terracotta);
  top: 25%;
  left: 20%;
  border-radius: var(--radius-sm);
  transform: rotate(30deg);
  opacity: 0.1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 560px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192, 96, 58, 0.1);
  color: var(--terracotta);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-tag svg {
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.08;
  color: var(--charcoal);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title-accent {
  color: var(--terracotta);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--warm-gray);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  align-items: center;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--terracotta);
  font-weight: 700;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--sand-dark);
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-img-stack {
  position: relative;
  height: 600px;
}

.hero-img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.hero-img-main {
  width: 380px;
  height: 500px;
  top: 0;
  right: 0;
  z-index: 2;
}

.hero-img-accent {
  width: 260px;
  height: 200px;
  bottom: 40px;
  left: -20px;
  z-index: 3;
  border: 6px solid var(--cream);
}

.hero-img-badge {
  position: absolute;
  bottom: 280px;
  left: -40px;
  z-index: 4;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  animation: float 4s ease-in-out infinite;
}

.hero-img-badge svg {
  color: #F5A623;
}

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

/* ===== INTRO BANNER ===== */
.intro-banner {
  background: var(--charcoal);
  padding: 20px 0;
}

.intro-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.intro-banner-text p {
  color: var(--sand);
  font-size: 0.9rem;
}

.intro-banner-text strong {
  color: var(--white);
}

.intro-banner-text a {
  color: var(--terracotta-light);
  transition: color 0.3s;
}

.intro-banner-text a:hover {
  color: var(--white);
}

.intro-banner-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== SECTION STYLES ===== */
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  margin-bottom: 16px;
  background: rgba(192, 96, 58, 0.08);
  padding: 6px 14px;
  border-radius: 100px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.text-accent {
  color: var(--terracotta);
  font-style: italic;
}

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

/* ===== ABOUT ===== */
.about {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: var(--sand-light);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-visual {
  position: relative;
  height: 600px;
}

.about-img-main {
  width: 360px;
  height: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 260px;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  z-index: 3;
  border: 5px solid var(--cream);
}

.about-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-accent-block {
  position: absolute;
  top: 20px;
  right: 60px;
  width: 120px;
  height: 120px;
  background: var(--terracotta);
  border-radius: var(--radius-lg);
  z-index: 1;
  opacity: 0.15;
}

.about-content {
  max-width: 500px;
}

.about-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--charcoal-light);
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--warm-gray);
  margin-bottom: 32px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(192, 96, 58, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--terracotta);
}

.about-feature strong {
  display: block;
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.about-feature span {
  font-size: 0.875rem;
  color: var(--warm-gray);
}

/* ===== ROOMS ===== */
.rooms {
  padding: 120px 0;
  background: var(--sand-light);
  position: relative;
  overflow: hidden;
}

.rooms-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.rooms-deco-shape {
  position: absolute;
  border-radius: 50%;
}

.rooms-deco-shape-1 {
  width: 400px;
  height: 400px;
  background: var(--terracotta);
  opacity: 0.04;
  top: -100px;
  left: -150px;
}

.rooms-deco-shape-2 {
  width: 200px;
  height: 200px;
  background: var(--terracotta-light);
  opacity: 0.06;
  bottom: -50px;
  right: -50px;
}

.rooms .container {
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

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

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

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

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

.room-card-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-card-img img {
  transform: scale(1.05);
}

.room-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--terracotta);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.room-card-body {
  padding: 28px;
}

.room-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.room-card-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--warm-gray);
  margin-bottom: 20px;
}

.room-card-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

.room-card-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--charcoal-light);
  font-weight: 500;
}

.room-card-features li svg {
  color: var(--terracotta);
  flex-shrink: 0;
}

/* ===== AMENITIES ===== */
.amenities {
  padding: 120px 0;
  background: var(--cream);
}

.amenities-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.amenities-content {
  max-width: 520px;
}

.amenities-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--warm-gray);
  margin-bottom: 40px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.amenity-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.amenity-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.amenity-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.amenity-card p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--warm-gray);
}

.amenities-visual {
  position: relative;
}

.amenities-img-grid {
  position: relative;
  height: 600px;
}

.amenities-img-item {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.amenities-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenities-img-item-1 {
  width: 280px;
  height: 380px;
  top: 0;
  right: 0;
  z-index: 2;
}

.amenities-img-item-2 {
  width: 240px;
  height: 200px;
  bottom: 40px;
  left: 0;
  z-index: 3;
}

.amenities-accent {
  position: absolute;
  bottom: 200px;
  right: 40px;
  width: 100px;
  height: 100px;
  background: var(--terracotta);
  border-radius: var(--radius-md);
  z-index: 1;
  opacity: 0.12;
  transform: rotate(15deg);
}

/* ===== LOCATION ===== */
.location {
  padding: 120px 0;
  background: var(--sand-light);
  position: relative;
  overflow: hidden;
}

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

.location-content {
  max-width: 520px;
}

.location-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--warm-gray);
  margin-bottom: 32px;
}

.location-landmarks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.location-landmarks li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--charcoal-light);
  font-weight: 500;
}

.location-landmarks li svg {
  color: var(--terracotta);
  flex-shrink: 0;
}

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

.location-visual {
  position: relative;
  height: 560px;
}

.location-img-stack {
  position: relative;
  height: 100%;
}

.location-img-1 {
  position: absolute;
  width: 300px;
  height: 400px;
  top: 0;
  right: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.location-img-2 {
  position: absolute;
  width: 240px;
  height: 260px;
  bottom: 0;
  left: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  z-index: 3;
  border: 5px solid var(--sand-light);
}

.location-img-1 img,
.location-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 120px 0;
  background: var(--cream);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}

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

.testimonial-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--charcoal-light);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--warm-gray);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 100px 0;
  background: var(--terracotta);
  position: relative;
  overflow: hidden;
}

.cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.cta-shape-1 {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -100px;
}

.cta-shape-2 {
  width: 250px;
  height: 250px;
  bottom: -80px;
  left: -50px;
}

.cta-shape-3 {
  width: 100px;
  height: 100px;
  top: 30%;
  left: 15%;
  border-radius: var(--radius-md);
  transform: rotate(45deg);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.cta-content {
  max-width: 500px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.text-accent-light {
  color: var(--sand);
  font-style: italic;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

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

/* ===== CONTACT ===== */
.contact {
  padding: 120px 0;
  background: var(--cream);
}

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

.contact-info {
  max-width: 480px;
}

.contact-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--warm-gray);
  margin-bottom: 40px;
}

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

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 52px;
  height: 52px;
  background: rgba(192, 96, 58, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--warm-gray);
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-detail span,
.contact-detail a {
  font-size: 1rem;
  color: var(--charcoal);
  font-weight: 500;
}

.contact-detail a:hover {
  color: var(--terracotta);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  padding: 44px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  max-width: 520px;
}

.contact-form-wrapper h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--charcoal);
  margin-bottom: 28px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal-light);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--sand-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--sand-light);
  transition: all 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(192, 96, 58, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.form-success-icon {
  margin-bottom: 20px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--warm-gray);
  line-height: 1.7;
}

.form-success a {
  color: var(--terracotta);
  font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-logo-mark {
  width: 40px;
  height: 40px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
  font-weight: 700;
}

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

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--terracotta-light);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-contact svg {
  color: var(--terracotta-light);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--terracotta-light);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .amenities-layout,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-img-stack {
    height: 450px;
  }

  .hero-img-main {
    width: 280px;
    height: 380px;
  }

  .hero-img-accent {
    width: 200px;
    height: 150px;
  }

  .hero-img-badge {
    left: -10px;
    bottom: 200px;
  }

  .about-visual {
    height: 450px;
  }

  .about-img-main {
    width: 280px;
    height: 380px;
  }

  .about-img-float {
    width: 200px;
    height: 160px;
  }

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

  .amenities-img-grid {
    height: 450px;
  }

  .amenities-img-item-1 {
    width: 220px;
    height: 300px;
  }

  .amenities-img-item-2 {
    width: 180px;
    height: 160px;
  }

  .location-visual {
    height: 400px;
  }

  .location-img-1 {
    width: 240px;
    height: 320px;
  }

  .location-img-2 {
    width: 200px;
    height: 220px;
  }

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

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

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

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .intro-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .intro-banner-cta {
    justify-content: center;
  }

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

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

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

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    justify-content: center;
  }

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

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

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

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

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

  .hero {
    padding: 90px 0 50px;
  }

  .hero-img-stack {
    height: 360px;
  }

  .hero-img-main {
    width: 220px;
    height: 300px;
  }

  .hero-img-accent {
    width: 160px;
    height: 120px;
  }

  .hero-img-badge {
    display: none;
  }

  .about-visual {
    height: 360px;
  }

  .about-img-main {
    width: 220px;
    height: 300px;
  }

  .about-img-float {
    width: 160px;
    height: 130px;
  }

  .amenities-img-grid {
    height: 360px;
  }

  .amenities-img-item-1 {
    width: 180px;
    height: 240px;
  }

  .amenities-img-item-2 {
    width: 150px;
    height: 130px;
  }

  .location-visual {
    height: 320px;
  }

  .location-img-1 {
    width: 200px;
    height: 260px;
  }

  .location-img-2 {
    width: 160px;
    height: 180px;
  }
}
