/* ============================================
   MAIN HOUSE NIGHTLY RENTAL — STYLESHEET
   Color Palette: Burgundy (#7B2D3B) + Blush (#F2D0D9)
   ============================================ */

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

:root {
  --burgundy: #7B2D3B;
  --burgundy-dark: #5C1F2B;
  --burgundy-light: #9A3D4E;
  --blush: #F2D0D9;
  --blush-light: #FBE8EC;
  --blush-dark: #E8B0BE;
  --cream: #FDF8F7;
  --white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-light: #7A7A7A;
  --font-body: 'Outfit', sans-serif;
  --font-display: 'Playfair Display', serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(123, 45, 59, 0.06);
  --shadow-md: 0 8px 30px rgba(123, 45, 59, 0.1);
  --shadow-lg: 0 20px 60px rgba(123, 45, 59, 0.15);
  --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(--text-dark);
  background: 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;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* ============================================
   GEOMETRIC BACKGROUND SHAPES
   ============================================ */
.geo-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.geo-circle {
  position: absolute;
  border-radius: 50%;
}

.geo-circle--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(242, 208, 217, 0.3) 0%, transparent 70%);
  top: -100px;
  right: -150px;
}

.geo-square {
  position: absolute;
  border-radius: var(--radius-lg);
  transform: rotate(15deg);
}

.geo-square--1 {
  width: 200px;
  height: 200px;
  background: rgba(123, 45, 59, 0.04);
  bottom: 20%;
  left: -60px;
}

.geo-triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}

.geo-triangle--1 {
  border-width: 0 0 120px 120px;
  border-color: transparent transparent rgba(242, 208, 217, 0.25) transparent;
  top: 45%;
  right: 5%;
  transform: rotate(-20deg);
}

.geo-circle--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(123, 45, 59, 0.05) 0%, transparent 70%);
  bottom: 10%;
  right: 10%;
}

.geo-dots {
  position: absolute;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, rgba(123, 45, 59, 0.12) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  top: 30%;
  left: 8%;
  opacity: 0.6;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 247, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(123, 45, 59, 0.08);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(253, 248, 247, 0.95);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--burgundy);
  z-index: 1001;
}

.logo-mark {
  color: var(--burgundy);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.primary-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color var(--transition);
  position: relative;
}

.primary-nav a:not(.btn):hover {
  color: var(--burgundy);
}

.primary-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--burgundy);
  transition: width var(--transition);
  border-radius: 1px;
}

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

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.nav-toggle:hover {
  background: rgba(123, 45, 59, 0.06);
}

.hamburger {
  position: relative;
  width: 20px;
  height: 14px;
  display: block;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--burgundy);
  border-radius: 1px;
  transition: var(--transition);
}

.hamburger::before { top: 0; }
.hamburger span { top: 6px; }
.hamburger::after { bottom: 0; }

.nav-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg);
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .hamburger span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg);
  bottom: 6px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  white-space: nowrap;
  padding: 14px 28px;
}

.btn--primary {
  background: var(--burgundy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(123, 45, 59, 0.3);
}

.btn--primary:hover {
  background: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123, 45, 59, 0.4);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

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

.btn--white {
  background: var(--white);
  color: var(--burgundy);
  box-shadow: var(--shadow-md);
}

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

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

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

.btn--sm {
  padding: 10px 20px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

.btn--full {
  width: 100%;
  padding: 16px 28px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

/* ============================================
   SECTION TAGS & TITLES
   ============================================ */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  background: var(--blush-light);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

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

.section-title em {
  font-style: italic;
  color: var(--burgundy);
}

.section-title--center {
  text-align: center;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(92, 31, 43, 0.82) 0%,
    rgba(123, 45, 59, 0.65) 40%,
    rgba(154, 61, 78, 0.45) 100%
  );
}

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

.hero-geo__accent {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 208, 217, 0.15) 0%, transparent 70%);
  bottom: -200px;
  right: -100px;
}

.hero-geo__line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--cream), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 24px 100px;
  max-width: 720px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blush);
  background: rgba(242, 208, 217, 0.15);
  border: 1px solid rgba(242, 208, 217, 0.3);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-headline em {
  font-style: italic;
  color: var(--blush);
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

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

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

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

.hero-stat__num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.hero-stat__label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator__dot {
  width: 6px;
  height: 6px;
  background: var(--blush);
  border-radius: 50%;
}

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

/* ============================================
   INTRO SECTION
   ============================================ */
.intro {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

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

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

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

.intro-visual__block--1 {
  width: 70%;
  height: 75%;
  top: 0;
  left: 0;
}

.intro-visual__block--1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.intro-visual__block--1:hover img {
  transform: scale(1.03);
}

.intro-visual__block--2 {
  width: 55%;
  height: 45%;
  bottom: 0;
  right: 0;
  border: 6px solid var(--cream);
}

.intro-visual__block--2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.intro-visual__block--2:hover img {
  transform: scale(1.03);
}

.intro-visual__accent {
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--burgundy);
  border-radius: var(--radius-md);
  bottom: 38%;
  left: 55%;
  transform: rotate(15deg);
  z-index: -1;
  opacity: 0.15;
}

.intro-text {
  max-width: 480px;
}

.intro-text .section-tag {
  margin-bottom: 16px;
}

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

.intro-text > p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.intro-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

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

.intro-feature__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--blush-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
}

.intro-feature strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.intro-feature span {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ============================================
   AMENITIES
   ============================================ */
.amenities {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  z-index: 1;
}

.amenities::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--burgundy), var(--blush), var(--burgundy));
}

.amenities .section-tag {
  display: block;
  text-align: center;
  margin-bottom: 16px;
}

.amenities .section-title {
  margin-bottom: 56px;
}

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

.amenity-card {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(123, 45, 59, 0.1);
}

.amenity-card--blush {
  background: var(--blush-light);
}

.amenity-card__shape {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(123, 45, 59, 0.06);
  transition: all var(--transition);
}

.amenity-card--blush .amenity-card__shape {
  background: rgba(123, 45, 59, 0.1);
}

.amenity-card:hover .amenity-card__shape {
  transform: scale(1.3);
  background: rgba(123, 45, 59, 0.1);
}

.amenity-card--blush:hover .amenity-card__shape {
  background: rgba(123, 45, 59, 0.18);
}

.amenity-card__icon {
  width: 56px;
  height: 56px;
  background: var(--burgundy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.amenity-card--blush .amenity-card__icon {
  background: var(--burgundy);
}

.amenity-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.amenity-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ============================================
   LOCATION
   ============================================ */
.location {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

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

.location-text {
  max-width: 480px;
}

.location-text .section-tag {
  margin-bottom: 16px;
}

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

.location-text > p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 36px;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.location-detail:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

.location-detail__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--blush-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
}

.location-detail strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.location-detail span {
  font-size: 0.85rem;
  color: var(--text-light);
}

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

.location-map__frame {
  width: 100%;
  height: 100%;
  min-height: 450px;
}

.location-map__frame iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
}

.location-map__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--burgundy);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  z-index: 1;
}

.gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blush), var(--burgundy), var(--blush));
}

.gallery .section-tag {
  display: block;
  text-align: center;
  margin-bottom: 16px;
}

.gallery .section-title {
  margin-bottom: 56px;
}

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

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(92, 31, 43, 0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.gallery-item__overlay span {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}

.gallery-item--wide {
  grid-column: span 7;
  height: 340px;
}

.gallery-item:not(.gallery-item--wide) {
  height: 240px;
}

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

.cta-banner__shape {
  position: absolute;
  border-radius: 50%;
}

.cta-banner__shape--1 {
  width: 500px;
  height: 500px;
  background: rgba(242, 208, 217, 0.08);
  top: -200px;
  left: -100px;
}

.cta-banner__shape--2 {
  width: 300px;
  height: 300px;
  background: rgba(242, 208, 217, 0.06);
  bottom: -100px;
  right: 10%;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.cta-banner__title em {
  font-style: italic;
  color: var(--blush);
}

.cta-banner__text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 40px;
}

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

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

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

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

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

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

.contact-info > p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}

.contact-method:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
  color: var(--burgundy);
}

.contact-method__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--blush-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  transition: background var(--transition);
}

.contact-method:hover .contact-method__icon {
  background: var(--burgundy);
  color: var(--white);
}

.contact-geo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-geo__dot {
  width: 10px;
  height: 10px;
  background: var(--blush);
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-geo__line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--blush), transparent);
  border-radius: 1px;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(123, 45, 59, 0.06);
}

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

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

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

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 16px;
  border: 1.5px solid rgba(123, 45, 59, 0.12);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--text-dark);
  transition: all var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(123, 45, 59, 0.08);
}

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

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

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(123, 45, 59, 0.06);
  border: 1px solid rgba(123, 45, 59, 0.12);
  border-radius: var(--radius-sm);
  color: var(--burgundy);
  font-weight: 500;
  font-size: 0.95rem;
}

.form-success svg {
  flex-shrink: 0;
  color: var(--burgundy);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 0 32px;
  position: relative;
  z-index: 1;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--burgundy), var(--blush), var(--burgundy));
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
}

.logo--light {
  color: var(--white);
}

.logo--light .logo-mark {
  color: var(--blush);
}

.footer-links {
  display: flex;
  gap: 32px;
}

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

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  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; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .intro-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro-visual {
    height: 450px;
    max-height: 450px;
  }

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

  .gallery-item--wide {
    grid-column: span 12;
    height: 280px;
  }

  .gallery-item:not(.gallery-item--wide) {
    height: 200px;
  }
}

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

  .primary-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
    z-index: 1000;
  }

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

  .primary-nav a {
    font-size: 1.1rem;
    color: var(--text-dark);
  }

  .primary-nav a:not(.btn)::after {
    display: none;
  }

  .hero-content {
    padding: 40px 24px 80px;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-stat-divider {
    display: none;
  }

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

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

  .gallery-item--wide {
    grid-column: span 1;
  }

  .footer-top {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

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

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

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

  .hero-headline {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

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

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

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

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

  .intro-visual {
    height: 350px;
  }
}

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}
