/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: #2D1F2D;
  background: #FFF8F7;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }
em { font-style: italic; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== COLOR VARIABLES ===== */
:root {
  --burgundy: #7B2D3B;
  --burgundy-dark: #5E1F2C;
  --blush: #F5D5D0;
  --blush-light: #FDEEEE;
  --blush-pale: #FFF5F3;
  --cream: #FFFAF9;
  --text: #2D1F2D;
  --text-light: #6B5560;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(123,45,59,0.08);
  --shadow-lg: 0 12px 48px rgba(123,45,59,0.12);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  transition: all 0.3s ease; border: 2px solid transparent; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary {
  background: var(--burgundy); color: var(--white); border-color: var(--burgundy);
}
.btn-primary:hover { background: var(--burgundy-dark); border-color: var(--burgundy-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent; color: var(--burgundy); border-color: var(--burgundy);
}
.btn-outline:hover { background: var(--burgundy); color: var(--white); transform: translateY(-2px); }
.btn-nav { background: var(--burgundy); color: var(--white); border-radius: 50px; padding: 10px 22px; font-size: 0.9rem; }
.btn-nav:hover { background: var(--burgundy-dark); }
.btn-room { background: var(--blush); color: var(--burgundy); border-radius: 50px; padding: 12px 24px; font-size: 0.9rem; font-weight: 600; }
.btn-room:hover { background: var(--burgundy); color: var(--white); }
.btn-full { width: 100%; justify-content: center; }
.btn-outline-light { background: transparent; color: var(--burgundy); border-color: var(--burgundy); border-radius: 50px; padding: 12px 24px; }
.btn-outline-light:hover { background: var(--blush); }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,248,247,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123,45,59,0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(123,45,59,0.1); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; padding-bottom: 16px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { color: var(--burgundy); flex-shrink: 0; }
.logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; color: var(--burgundy); line-height: 1.2; }
.logo-sub { font-family: 'DM Sans', sans-serif; font-size: 0.7rem; font-weight: 500; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; }
.logo-light .logo-text { color: var(--white); }
.logo-light .logo-sub { color: rgba(255,255,255,0.7); }
.logo-light .logo-icon { color: var(--white); }

.main-nav ul { display: flex; align-items: center; gap: 32px; }
.main-nav a { font-size: 0.9rem; font-weight: 500; color: var(--text); transition: color 0.2s; }
.main-nav a:not(.btn):hover { color: var(--burgundy); }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.menu-toggle .bar { display: block; width: 24px; height: 2px; background: var(--burgundy); transition: all 0.3s; border-radius: 2px; }
.menu-toggle.active .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.active .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav overlay */
.nav-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(123,45,59,0.5); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: all 0.3s;
}
.nav-overlay.open { opacity: 1; visibility: visible; }
.mobile-nav {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: min(320px, 85vw); background: var(--cream);
  padding: 80px 32px 32px; transform: translateX(100%); transition: transform 0.3s ease;
  display: flex; flex-direction: column; gap: 8px;
}
.nav-overlay.open .mobile-nav { transform: translateX(0); }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; width: 100%; }
.mobile-nav a { display: block; padding: 14px 16px; font-size: 1.1rem; font-weight: 500; color: var(--text); border-radius: var(--radius); transition: background 0.2s; }
.mobile-nav a:hover { background: var(--blush-light); color: var(--burgundy); }
.btn-mobile { margin-top: 16px; text-align: center; background: var(--burgundy); color: var(--white); border-radius: 50px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; padding: 120px 0 80px;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--blush-pale) 0%, var(--cream) 50%, var(--blush-light) 100%);
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape { position: absolute; border-radius: 50%; opacity: 0.15; }
.shape-circle-1 { width: 500px; height: 500px; background: var(--burgundy); top: -150px; right: -100px; }
.shape-circle-2 { width: 300px; height: 300px; background: var(--blush); bottom: -80px; left: -60px; }
.shape-rect-1 { width: 200px; height: 200px; background: var(--burgundy); bottom: 10%; left: 5%; border-radius: var(--radius-lg); transform: rotate(25deg); opacity: 0.08; }
.shape-dots { width: 120px; height: 120px; background-image: radial-gradient(circle, var(--burgundy) 1.5px, transparent 1.5px); background-size: 16px 16px; top: 20%; left: 8%; opacity: 0.2; }

.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--burgundy); margin-bottom: 24px; }
.eyebrow-line { display: block; width: 40px; height: 2px; background: var(--burgundy); border-radius: 2px; }
.hero-headline { font-size: clamp(2.2rem, 4.5vw, 3.6rem); color: var(--text); margin-bottom: 24px; font-weight: 700; }
.hero-headline em { color: var(--burgundy); font-style: italic; }
.hero-desc { font-size: 1.1rem; color: var(--text-light); margin-bottom: 36px; max-width: 520px; line-height: 1.75; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 24px; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 500; color: var(--text); }
.trust-item svg { color: var(--burgundy); }

.hero-image-wrap { position: relative; }
.hero-image-main { border-radius: var(--radius-lg) 0 var(--radius-lg) var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-image-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-accent {
  position: absolute; bottom: -30px; left: -40px;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 4px solid var(--white);
}
.hero-image-accent img { width: 100%; height: 100%; object-fit: cover; }
.accent-badge {
  position: absolute; bottom: 16px; right: 16px;
  background: var(--burgundy); color: var(--white);
  padding: 10px 14px; border-radius: var(--radius);
  font-size: 0.75rem; text-align: center; line-height: 1.3;
}
.badge-number { display: block; font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; }

/* ===== SECTION COMMON ===== */
.section-tag { display: inline-block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--burgundy); margin-bottom: 12px; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--text); margin-bottom: 16px; }
.section-title em { color: var(--burgundy); font-style: italic; }
.section-desc { font-size: 1.05rem; color: var(--text-light); max-width: 600px; line-height: 1.7; }
.section-header { margin-bottom: 56px; }
section { padding: 100px 0; }

/* ===== ROOMS ===== */
.rooms { background: var(--white); }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 64px; }
.room-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--cream); transition: transform 0.3s, box-shadow 0.3s; }
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.room-card-img { position: relative; overflow: hidden; }
.room-card-img img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.5s; }
.room-card:hover .room-card-img img { transform: scale(1.05); }
.room-badge { position: absolute; top: 16px; left: 16px; background: var(--burgundy); color: var(--white); padding: 6px 14px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.room-card-body { padding: 28px; }
.room-name { font-size: 1.4rem; margin-bottom: 10px; color: var(--text); }
.room-desc { font-size: 0.95rem; color: var(--text-light); margin-bottom: 20px; line-height: 1.65; }
.room-amenities { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.room-amenities li { background: var(--blush-light); color: var(--burgundy); padding: 6px 12px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; }

.rooms-cta { background: var(--blush); }
.rooms-cta-inner { text-align: center; padding: 40px 24px; }
.rooms-cta p { font-size: 1.1rem; color: var(--text); }
.rooms-cta a { color: var(--burgundy); font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }

/* ===== STAY / WHY US ===== */
.stay { background: var(--burgundy); position: relative; overflow: hidden; }
.stay-shape { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: rgba(255,255,255,0.03); top: -200px; left: -200px; }
.stay-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; position: relative; z-index: 1; }
.stay-content .section-tag { color: var(--blush); }
.stay-content .section-title { color: var(--white); }
.stay-content .section-title em { color: var(--blush); }
.stay-intro { font-size: 1.05rem; color: rgba(255,255,255,0.75); line-height: 1.75; margin-top: 20px; }
.stay-features { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.feature-block { background: rgba(255,255,255,0.07); border-radius: var(--radius-lg); padding: 28px; border: 1px solid rgba(255,255,255,0.1); transition: background 0.3s; }
.feature-block:hover { background: rgba(255,255,255,0.12); }
.feature-icon { color: var(--blush); margin-bottom: 16px; }
.feature-block h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 8px; }
.feature-block p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* ===== LOCATION ===== */
.location { background: var(--cream); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.location-desc { font-size: 1.05rem; color: var(--text-light); line-height: 1.75; margin-bottom: 36px; }
.location-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 36px; }
.highlight-item { background: var(--white); border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow); }
.highlight-num { display: block; font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--burgundy); }
.highlight-label { font-size: 0.85rem; color: var(--text-light); margin-top: 2px; }
.location-contact { padding-top: 24px; border-top: 1px solid rgba(123,45,59,0.1); }
.location-contact p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 8px; }
.location-contact a { color: var(--burgundy); font-weight: 600; }

.location-image-stack { position: relative; min-height: 580px; }
.loc-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.loc-img-main img { width: 100%; height: 100%; object-fit: cover; }
.loc-img-float {
  position: absolute; bottom: 40px; right: -30px;
  border: 4px solid var(--white);
}
.loc-img-float img { width: 100%; height: 100%; object-fit: cover; }
.loc-map-badge {
  position: absolute; top: 30px; right: 20px;
  background: var(--burgundy); color: var(--white);
  padding: 12px 18px; border-radius: var(--radius);
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.85rem; box-shadow: var(--shadow);
}

/* ===== GALLERY ===== */
.gallery { background: var(--white); padding-bottom: 80px; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: auto auto; gap: 16px; }
.gallery-item { border-radius: var(--radius-lg); overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item--wide { grid-column: span 7; }
.gallery-item:not(.gallery-item--wide) { grid-column: span 5; }
.gallery-item:nth-child(2) { grid-row: 2; }
.gallery-item:nth-child(3) { grid-row: 1; }
.gallery-item:nth-child(4) { grid-row: 2; }
.gallery-item:nth-child(5) { grid-column: span 5; grid-row: 1; }
.gallery-item:nth-child(6) { grid-column: span 7; grid-row: 2; }

/* ===== CONTACT ===== */
.contact { background: linear-gradient(135deg, var(--blush-pale) 0%, var(--blush-light) 100%); position: relative; overflow: hidden; }
.contact-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.c-shape { position: absolute; border-radius: 50%; opacity: 0.1; }
.c-circle-1 { width: 400px; height: 400px; background: var(--burgundy); top: -100px; right: -100px; }
.c-circle-2 { width: 250px; height: 250px; background: var(--burgundy); bottom: -60px; left: -60px; }
.c-rect { width: 150px; height: 150px; background: var(--burgundy); border-radius: var(--radius-lg); bottom: 20%; right: 10%; transform: rotate(-15deg); opacity: 0.06; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; position: relative; z-index: 1; }
.contact-intro { font-size: 1.05rem; color: var(--text-light); line-height: 1.75; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; align-items: center; gap: 16px; }
.detail-icon { color: var(--burgundy); flex-shrink: 0; }
.contact-detail strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 2px; }
.contact-detail a, .contact-detail span { font-size: 1rem; color: var(--burgundy); font-weight: 600; }

.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); }
.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.85rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border: 2px solid var(--blush); border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--text);
  background: var(--blush-pale); transition: border-color 0.2s, background 0.2s;
  outline: none; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--burgundy); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.8rem; color: var(--text-light); text-align: center; }
.form-success { text-align: center; padding: 40px 20px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.form-success h3 { font-size: 1.6rem; color: var(--burgundy); }
.form-success p { color: var(--text-light); max-width: 360px; }
.success-icon { color: var(--burgundy); }

/* ===== FOOTER ===== */
.footer { background: var(--burgundy); color: var(--white); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin-top: 16px; line-height: 1.7; max-width: 320px; }
.footer-links h4, .footer-contact h4 { font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--blush); margin-bottom: 16px; }
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-contact a { font-size: 0.95rem; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 24px; text-align: center; }
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .stay-grid { gap: 48px; }
  .location-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { order: -1; max-width: 500px; margin: 0 auto; }
  .hero-image-accent { left: -10px; bottom: -20px; }
  .hero-headline { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  
  .rooms-grid { grid-template-columns: 1fr; max-width: 500px; }
  
  .stay-grid { grid-template-columns: 1fr; }
  .stay-features { grid-template-columns: 1fr; }
  
  .location-grid { grid-template-columns: 1fr; }
  .location-image-stack { min-height: 400px; order: -1; }
  .loc-img-float { right: 0; }
  
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item:not(.gallery-item--wide) { grid-column: span 1; }
  .gallery-item:nth-child(5) { grid-column: span 2; }
  .gallery-item:nth-child(6) { grid-column: span 2; }
  .gallery-item img { height: 200px; }
  .gallery-item--wide img { height: 240px; }
  
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  section { padding: 72px 0; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .location-highlights { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide, .gallery-item:nth-child(5), .gallery-item:nth-child(6) { grid-column: span 1; }
  .gallery-item img, .gallery-item--wide img { height: 220px; }
}
