/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', sans-serif;
  color: #3D2B2B;
  background: #FFF8F5;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ── Tokens ── */
:root {
  --burgundy:    #7B2D3B;
  --burgundy-deep: #5C1F2C;
  --blush:       #F5D5D5;
  --blush-light: #FDEEEE;
  --blush-mid:   #F9E8E8;
  --cream:       #FFF8F5;
  --warm-white:  #FFFBF9;
  --sand:        #F0E0D6;
  --text:        #3D2B2B;
  --text-light:  #6B5555;
  --radius-sm:   12px;
  --radius-md:   20px;
  --radius-lg:   28px;
  --shadow-sm:   0 2px 8px rgba(123,45,59,0.06);
  --shadow-md:   0 8px 30px rgba(123,45,59,0.10);
  --shadow-lg:   0 16px 50px rgba(123,45,59,0.13);
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; color: var(--burgundy); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { color: var(--text-light); }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

.section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  background: var(--blush);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section__title { margin-bottom: 16px; }
.section__title--light { color: #fff; }
.section__subtitle { font-size: 1.1rem; max-width: 560px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.btn--primary {
  background: var(--burgundy);
  color: #fff;
  border-color: var(--burgundy);
}
.btn--primary:hover {
  background: var(--burgundy-deep);
  border-color: var(--burgundy-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}
.btn--ghost:hover {
  background: var(--burgundy);
  color: #fff;
  transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--blush);
  transition: var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 40px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--burgundy);
}
.nav__logo-icon { color: var(--burgundy); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav__link {
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--transition);
}
.nav__link:hover { background: var(--blush); color: var(--burgundy); }
.nav__cta {
  background: var(--burgundy);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}
.nav__cta:hover { background: var(--burgundy-deep); transform: translateY(-1px); }

/* Mobile Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.nav__toggle-line {
  width: 24px;
  height: 2px;
  background: var(--burgundy);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__toggle.active .nav__toggle-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active .nav__toggle-line:nth-child(2) { opacity: 0; }
.nav__toggle.active .nav__toggle-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(61,43,43,0.4);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s;
}
.nav__overlay.active { display: block; opacity: 1; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--blush-light) 50%, var(--blush) 100%);
  padding: 120px 0 0;
  position: relative;
  overflow: hidden;
}
.hero__grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  background: rgba(123,45,59,0.1);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero__headline {
  margin-bottom: 20px;
  color: var(--burgundy);
  line-height: 1.15;
}
.hero__subheadline {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__trust { display: flex; gap: 24px; flex-wrap: wrap; }
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.hero__trust-item svg { color: var(--burgundy); }

/* Image Stack */
.hero__visual { position: relative; }
.hero__image-stack { position: relative; }
.hero__img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero__img--main {
  width: 100%;
  aspect-ratio: 4/5;
  margin-bottom: 20px;
}
.hero__img--accent {
  position: absolute;
  bottom: 60px;
  left: -40px;
  width: 55%;
  aspect-ratio: 4/3;
  border: 5px solid var(--cream);
  box-shadow: var(--shadow-md);
}
.hero__img--detail {
  position: absolute;
  top: 40px;
  right: -30px;
  width: 50%;
  aspect-ratio: 3/2;
  border: 5px solid var(--cream);
  box-shadow: var(--shadow-md);
}
.hero__badge {
  position: absolute;
  bottom: -10px;
  right: 20px;
  background: var(--burgundy);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow-md);
}
.hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: var(--cream);
}
.hero__wave svg { width: 100%; height: 80px; }

/* ── Rooms ── */
.rooms { background: var(--cream); }
.rooms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.room-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.room-card--featured { box-shadow: var(--shadow-md); }
.room-card--featured:hover { box-shadow: var(--shadow-lg); }
.room-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--burgundy);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 2;
}
.room-card__img { aspect-ratio: 3/2; overflow: hidden; }
.room-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.room-card:hover .room-card__img img { transform: scale(1.05); }
.room-card__body { padding: 24px; }
.room-card__name { margin-bottom: 8px; }
.room-card__desc { font-size: 0.95rem; margin-bottom: 16px; line-height: 1.6; }
.room-card__amenities { display: flex; flex-direction: column; gap: 8px; }
.room-card__amenities li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.room-card__amenities svg { color: var(--burgundy); flex-shrink: 0; }
.rooms__note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

/* ── Experience ── */
.experience { background: var(--blush-light); }
.experience__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.experience__text { padding-top: 8px; }
.experience__features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.feature-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card__icon {
  width: 52px;
  height: 52px;
  background: var(--blush);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  margin-bottom: 16px;
  transition: var(--transition);
}
.feature-card:hover .feature-card__icon { background: var(--burgundy); color: #fff; }
.feature-card__title { font-size: 1.1rem; margin-bottom: 8px; color: var(--burgundy); }
.feature-card__desc { font-size: 0.9rem; line-height: 1.6; }

/* ── Location ── */
.location { background: var(--cream); }
.location__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch; }
.location__info { display: flex; flex-direction: column; gap: 24px; padding-top: 8px; }
.location__address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
}
.location__address svg { color: var(--burgundy); flex-shrink: 0; margin-top: 3px; }
.location__contact { display: flex; flex-direction: column; gap: 12px; }
.location__phone, .location__email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--burgundy);
  transition: var(--transition);
}
.location__phone:hover, .location__email:hover { color: var(--burgundy-deep); text-decoration: underline; }
.location__highlights {
  display: flex;
  gap: 24px;
  padding-top: 8px;
}
.location__highlight {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  flex: 1;
  text-align: center;
}
.location__highlight-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 4px;
}
.location__highlight-label { font-size: 0.8rem; color: var(--text-light); font-weight: 600; }
.location__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 400px; }

/* ── CTA ── */
.cta { background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-deep) 100%); }
.cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta__text { color: #fff; }
.cta__desc { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-top: 16px; }
.cta__form-wrap { position: relative; }
.cta__form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.cta__form-title { font-size: 1.3rem; margin-bottom: 24px; color: var(--burgundy); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { display: flex; flex-direction: column; gap: 6px; }
.form__label { font-size: 0.8rem; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 0.05em; }
.form__input {
  padding: 12px 16px;
  border: 2px solid var(--sand);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--warm-white);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form__input:focus { border-color: var(--burgundy); background: #fff; }
.form__select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237B2D3B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.form__textarea { resize: vertical; min-height: 80px; }
.form__note { text-align: center; font-size: 0.8rem; color: var(--text-light); margin-top: 12px; }

/* Success State */
.cta__form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 36px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.cta__form-success__icon { color: #4CAF50; margin-bottom: 16px; }
.cta__form-success__title { font-size: 1.4rem; margin-bottom: 8px; color: var(--burgundy); }
.cta__form-success p { font-size: 0.95rem; }

/* ── Footer ── */
.footer { background: var(--text); color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 12px;
}
.footer__tagline { font-size: 0.9rem; line-height: 1.7; max-width: 300px; }
.footer__heading { font-family: 'Nunito', sans-serif; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 0.95rem; transition: var(--transition); }
.footer__links a:hover { color: #fff; }
.footer__contact { display: flex; flex-direction: column; gap: 12px; font-size: 0.9rem; }
.footer__contact a { display: inline-flex; align-items: center; gap: 8px; transition: var(--transition); }
.footer__contact a:hover { color: #fff; }
.footer__contact svg { color: var(--blush); flex-shrink: 0; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* ── 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; }
  .hero__img--accent { left: -20px; }
  .hero__img--detail { right: -15px; }
  .rooms__grid { grid-template-columns: repeat(2, 1fr); }
  .rooms__grid .room-card:last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }
  .nav__links.active { transform: translateX(0); }
  .nav__link { width: 100%; text-align: center; padding: 12px 16px; }
  .nav__cta { width: 100%; text-align: center; }

  .hero { padding-top: 100px; min-height: auto; padding-bottom: 80px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { order: -1; }
  .hero__img--accent { left: -10px; bottom: 30px; width: 55%; }
  .hero__img--detail { right: -10px; top: 20px; width: 50%; }
  .hero__actions { flex-direction: column; }
  .hero__trust { flex-direction: column; gap: 12px; }

  .section { padding: 72px 0; }
  .rooms__grid { grid-template-columns: 1fr; }
  .rooms__grid .room-card:last-child { grid-column: span 1; max-width: 100%; }

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

  .location__layout { grid-template-columns: 1fr; }
  .location__map { min-height: 300px; }

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

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

@media (max-width: 480px) {
  .hero__img--accent { display: none; }
  .hero__img--detail { display: none; }
  .hero__headline { font-size: 1.9rem; }
  .location__highlights { flex-direction: column; gap: 12px; }
  .cta__form { padding: 24px; }
}
