:root {
  --plum: #5B2C6F;
  --plum-light: #7D3C91;
  --plum-dark: #3D1F4D;
  --plum-bg: #F5F0FA;
  --amber: #F59E0B;
  --amber-light: #FCD34D;
  --amber-dark: #D97706;
  --cream: #FFFBF5;
  --warm-white: #FEFCF8;
  --sand: #FDF6EC;
  --text: #1A1A2E;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(91, 44, 111, 0.08);
  --shadow-md: 0 4px 16px rgba(91, 44, 111, 0.10);
  --shadow-lg: 0 8px 32px rgba(91, 44, 111, 0.14);
  --shadow-xl: 0 16px 48px rgba(91, 44, 111, 0.16);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--plum);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 700;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 12px;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(254, 252, 248, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(91, 44, 111, 0.08);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo--footer { margin-bottom: 16px; }
.logo-icon { flex-shrink: 0; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--plum);
}
.logo-sub {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber-dark);
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.main-nav a {
  padding: 8px 16px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}
.main-nav a:not(.btn):hover {
  background: var(--plum-bg);
  color: var(--plum);
}

/* Nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  border-radius: var(--radius-sm);
}
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--plum);
  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);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--amber {
  background: var(--amber);
  color: var(--text);
  border-color: var(--amber);
}
.btn--amber:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
}
.btn--outline {
  background: transparent;
  color: var(--plum);
  border-color: var(--plum);
}
.btn--outline:hover {
  background: var(--plum);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }
.btn--full { width: 100%; }

/* ── Section shared ── */
.section {
  padding: 100px 0;
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber-dark);
  background: var(--sand);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--plum);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(61, 31, 77, 0.88) 0%,
    rgba(91, 44, 111, 0.75) 40%,
    rgba(125, 60, 145, 0.55) 70%,
    rgba(245, 158, 11, 0.2) 100%
  );
  z-index: -1;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: 48px;
  color: var(--white);
}
.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber-light);
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--white);
}
.hero-headline em {
  color: var(--amber-light);
  font-style: italic;
}
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-actions .btn--outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.hero-actions .btn--outline:hover {
  background: var(--white);
  color: var(--plum);
  border-color: var(--white);
}

/* Floating stat cards */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-self: start;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), box-shadow var(--transition);
  color: var(--text);
  animation: float 6s ease-in-out infinite;
}
.stat-card:nth-child(2) { animation-delay: -1.5s; }
.stat-card:nth-child(3) { animation-delay: -3s; }
.stat-card:nth-child(4) { animation-delay: -4.5s; }
.stat-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-xl);
}
.stat-card svg {
  color: var(--amber);
}
.stat-card span {
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.3;
  color: var(--plum);
}

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

/* ── Rooms ── */
.rooms {
  background: var(--plum-bg);
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.room-img-wrap {
  overflow: hidden;
  aspect-ratio: 3/2;
}
.room-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.room-card:hover .room-img-wrap img {
  transform: scale(1.06);
}
.room-body {
  padding: 28px;
}
.room-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--plum);
  margin-bottom: 8px;
}
.room-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.room-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.room-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}
.room-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Amenities ── */
.amenities {
  background: var(--warm-white);
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.amenity-card {
  background: var(--white);
  border: 1px solid rgba(91, 44, 111, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
}
.amenity-card:hover {
  border-color: var(--amber);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.amenity-icon {
  width: 56px;
  height: 56px;
  background: var(--plum-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum);
  margin-bottom: 20px;
  transition: background var(--transition), color var(--transition);
}
.amenity-card:hover .amenity-icon {
  background: var(--plum);
  color: var(--amber-light);
}
.amenity-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--plum);
  margin-bottom: 8px;
}
.amenity-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Dining ── */
.dining {
  background: var(--sand);
}
.dining-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.dining-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 7/5;
}
.dining-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dining-content .section-tag { margin-bottom: 16px; }
.dining-content .section-title { margin-bottom: 20px; }
.dining-content .section-desc {
  margin-bottom: 12px;
}
.breakfast-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.breakfast-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

/* ── Location ── */
.location {
  background: var(--warm-white);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 60px;
}
.location-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.location-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid rgba(91, 44, 111, 0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition);
}
.location-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--plum-light);
}
.location-icon {
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 2px;
}
.location-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--plum);
  margin-bottom: 4px;
}
.location-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.location-card a {
  color: var(--plum);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(91, 44, 111, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--transition);
}
.location-card a:hover {
  text-decoration-color: var(--plum);
}
.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow-md);
}

.nearby {
  background: var(--plum);
  border-radius: var(--radius-xl);
  padding: 48px;
  color: var(--white);
}
.nearby-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 28px;
  color: var(--amber-light);
}
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.nearby-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background var(--transition);
}
.nearby-item:hover {
  background: rgba(255, 255, 255, 0.14);
}
.nearby-name {
  font-weight: 700;
  font-size: 0.9rem;
}
.nearby-dist {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--amber-light);
  background: rgba(245, 158, 11, 0.2);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ── CTA ── */
.cta {
  background: var(--plum-bg);
}
.cta-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 60px;
  box-shadow: var(--shadow-lg);
}
.cta-text .section-tag { margin-bottom: 16px; }
.cta-text .section-title { margin-bottom: 16px; }
.cta-text .section-desc { margin-bottom: 0; }

.cta-form-wrap { position: relative; }
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.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: 800;
  color: var(--plum);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 16px;
  border: 2px solid rgba(91, 44, 111, 0.15);
  border-radius: var(--radius-sm);
  background: var(--plum-bg);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(91, 44, 111, 0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}
.form-group textarea {
  resize: vertical;
  min-height: 90px;
}
.form-note {
  font-size: 0.82rem;
  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 svg {
  width: 56px;
  height: 56px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--plum);
}
.form-success p {
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 320px;
}

/* ── Footer ── */
.site-footer {
  background: var(--plum-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 300px;
}
.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--amber-light);
  margin-bottom: 20px;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.95rem;
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--amber-light);
}
.footer-contact address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.95rem;
  line-height: 1.7;
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 3px;
  transition: color var(--transition), text-decoration-color var(--transition);
}
.footer-contact a:hover {
  color: var(--amber-light);
  text-decoration-color: var(--amber-light);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.88rem;
}
.footer-note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-stats {
    max-width: 400px;
  }
  .rooms-grid,
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dining-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .location-grid {
    grid-template-columns: 1fr;
  }
  .cta-card {
    grid-template-columns: 1fr;
    padding: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .section-header { margin-bottom: 48px; }

  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(254, 252, 248, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(91, 44, 111, 0.08);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
    pointer-events: none;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .main-nav a {
    display: block;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    text-align: center;
  }

  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero-card { padding: 32px 24px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stat-card { padding: 18px 16px; }

  .rooms-grid,
  .amenities-grid,
  .nearby-grid {
    grid-template-columns: 1fr;
  }
  .breakfast-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-card { padding: 28px; }
  .nearby { padding: 32px 24px; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { grid-template-columns: 1fr; max-width: 100%; }
}
