/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --burgundy: #7B2434;
  --burgundy-dark: #5C1A27;
  --burgundy-light: #9A3548;
  --blush: #F2D0C8;
  --blush-light: #FBE8E3;
  --blush-dark: #E8B8A8;
  --neutral-900: #1A1A1A;
  --neutral-700: #3A3A3A;
  --neutral-500: #6B6B6B;
  --neutral-300: #B8B8B8;
  --neutral-100: #F4F2F1;
  --neutral-50: #FAFAF9;
  --white: #FFFFFF;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(123,36,52,0.08);
  --shadow-md: 0 4px 20px rgba(123,36,52,0.10);
  --shadow-lg: 0 12px 40px rgba(123,36,52,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(--neutral-700);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--burgundy); color: var(--white);
  padding: 8px 16px; border-radius: var(--radius-sm);
  z-index: 9999; font-size: 0.875rem;
}
.skip-link:focus { top: 16px; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600;
  border: 2px solid transparent; border-radius: var(--radius-sm);
  cursor: pointer; transition: var(--transition);
  white-space: nowrap;
}
.btn--sm { padding: 10px 20px; font-size: 0.875rem; }
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--burgundy {
  background: var(--burgundy); color: var(--white);
  border-color: var(--burgundy);
}
.btn--burgundy:hover { background: var(--burgundy-dark); border-color: var(--burgundy-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--blush {
  background: var(--blush); color: var(--burgundy-dark);
  border-color: var(--blush);
}
.btn--blush:hover { background: var(--blush-dark); border-color: var(--blush-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline-light {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); transform: translateY(-2px); }

/* ── Section shared ───────────────────────────────────────── */
.section { padding: 100px 0; }
.section-eyebrow {
  font-family: var(--font-body); font-size: 0.8rem;
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--burgundy); margin-bottom: 12px;
}
.section-header--center { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-title {
  font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700; color: var(--neutral-900);
  line-height: 1.2; margin-bottom: 16px;
}
.section-sub { font-size: 1.05rem; color: var(--neutral-500); line-height: 1.7; }

/* ── Header ───────────────────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123,36,52,0.08);
  transition: box-shadow var(--transition);
}
.header.scrolled { 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; }
.logo-text {
  font-family: var(--font-display); font-size: 1.15rem;
  font-weight: 700; color: var(--neutral-900);
}
.logo-accent { color: var(--burgundy); }

.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-menu a {
  font-size: 0.9rem; font-weight: 500; color: var(--neutral-700);
  position: relative; transition: color var(--transition);
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--burgundy);
  transition: width var(--transition);
}
.nav-menu a:hover { color: var(--burgundy); }
.nav-menu a:hover::after { width: 100%; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; position: relative;
}
.hamburger, .hamburger::before, .hamburger::after {
  display: block; width: 22px; height: 2px; background: var(--neutral-700);
  border-radius: 2px; transition: var(--transition);
}
.hamburger { position: relative; margin: 0 auto; }
.hamburger::before, .hamburger::after {
  content: ''; position: absolute; left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 40%, var(--burgundy-light) 70%, var(--blush-dark) 100%);
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(242,208,200,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--blush);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800; color: var(--white);
  line-height: 1.15; margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.82);
  line-height: 1.75; margin-bottom: 36px; max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 0; }
.stat { flex: 1; text-align: center; }
.stat-number {
  display: block; font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700; color: var(--white);
}
.stat-label {
  display: block; font-size: 0.78rem; font-weight: 500;
  color: rgba(255,255,255,0.65); text-transform: uppercase;
  letter-spacing: 0.06em; margin-top: 4px;
}
.stat-divider {
  width: 1px; background: rgba(255,255,255,0.2); align-self: stretch;
}

.hero-visual { position: relative; height: 640px; }
.hero-img-card {
  position: absolute; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.hero-img-card--1 {
  top: 0; right: 0; width: 520px; height: 640px;
}
.hero-img-card--2 {
  bottom: 40px; left: -40px; width: 400px; height: 280px;
  border: 4px solid rgba(255,255,255,0.2);
}
.hero-img-card img { width: 100%; height: 100%; object-fit: cover; }

.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0;
  width: 100%; line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ── About ────────────────────────────────────────────────── */
.about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about-visual { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 420px; object-fit: cover; }
.about-badge {
  position: absolute; bottom: -24px; right: -24px;
  display: flex; align-items: center; gap: 10px;
  background: var(--white); padding: 16px 24px;
  border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  font-weight: 600; font-size: 0.9rem; color: var(--burgundy);
}
.about-content .section-title { margin-bottom: 20px; }
.about-content p { color: var(--neutral-500); margin-bottom: 16px; line-height: 1.75; }
.about-list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.about-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.95rem; color: var(--neutral-700);
}

/* ── Services ─────────────────────────────────────────────── */
.services { background: var(--neutral-100); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid rgba(123,36,52,0.07);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blush-light);
  border-radius: var(--radius-sm); margin-bottom: 20px;
}
.service-title {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--neutral-900); margin-bottom: 10px;
}
.service-card p { font-size: 0.92rem; color: var(--neutral-500); line-height: 1.7; }

/* ── Amenities ────────────────────────────────────────────── */
.amenities { background: var(--white); }
.amenities-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.amenities-content .section-title { margin-bottom: 16px; }
.amenities-content .section-sub { margin-bottom: 32px; }
.amenities-list { display: flex; flex-direction: column; gap: 16px; }
.amenity-item {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.95rem; font-weight: 500; color: var(--neutral-700);
}
.amenity-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--burgundy); flex-shrink: 0;
}
.amenities-visual { position: relative; }
.amenities-img-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.amenities-img-grid img {
  width: 100%; height: 260px; object-fit: cover;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.amenities-img-grid img:hover { transform: scale(1.03); box-shadow: var(--shadow-md); }

/* ── Location ─────────────────────────────────────────────── */
.location { background: var(--neutral-100); }
.location-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: stretch;
}
.location-content .section-title { margin-bottom: 16px; }
.location-content .section-sub { margin-bottom: 32px; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); padding: 20px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(123,36,52,0.07);
  transition: var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-md); border-color: transparent; transform: translateX(4px); }
.contact-card--static { cursor: default; }
.contact-card--static:hover { transform: none; box-shadow: var(--shadow-sm); }
.contact-card-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--burgundy); border-radius: var(--radius-sm);
}
.contact-card-label {
  display: block; font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--neutral-500); margin-bottom: 2px;
}
.contact-card-value {
  display: block; font-size: 0.95rem; font-weight: 600;
  color: var(--neutral-900); line-height: 1.5;
}
.location-map { border-radius: var(--radius-lg); overflow: hidden; min-height: 420px; box-shadow: var(--shadow-md); }
.location-map iframe { width: 100%; height: 100%; min-height: 420px; }

/* ── CTA ──────────────────────────────────────────────────── */
.cta { padding: 100px 0; background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 50%, var(--burgundy-light) 100%); }
.cta-card {
  text-align: center; max-width: 720px; margin: 0 auto;
}
.cta-eyebrow { color: var(--blush); }
.cta-title { color: var(--white); margin-bottom: 16px; }
.cta-text { color: rgba(255,255,255,0.78); font-size: 1.05rem; line-height: 1.75; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ───────────────────────────────────────────────── */
.footer { background: var(--neutral-900); color: rgba(255,255,255,0.65); padding: 64px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px; padding-bottom: 48px;
}
.footer-desc { font-size: 0.9rem; line-height: 1.75; margin-top: 16px; max-width: 300px; }
.footer-heading {
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a, .footer-contact a {
  font-size: 0.9rem; transition: color var(--transition);
}
.footer-links a:hover, .footer-contact a:hover { color: var(--blush); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; }
.footer-contact svg { flex-shrink: 0; margin-top: 3px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--blush); }

/* ── Mobile Nav ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--white); flex-direction: column;
    padding: 32px 24px; gap: 20px;
    border-bottom: 1px solid rgba(123,36,52,0.08);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%); opacity: 0;
    transition: var(--transition); pointer-events: none;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-menu a { font-size: 1rem; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }

  .about-grid,
  .amenities-layout,
  .location-grid { grid-template-columns: 1fr; }
  .about-badge { position: relative; bottom: auto; right: auto; display: inline-flex; margin-top: 16px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 600px) {
  .section { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .hero { padding: 100px 0 60px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 100%; height: 1px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .amenities-img-grid { grid-template-columns: 1fr; }
  .amenities-img-grid img { height: 200px; }
}

/* ── Scroll Animations ────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s 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; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
