/* ── Reset & base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; font: inherit; }
ul, ol { list-style: none; }
address { font-style: normal; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

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

/* ── Typography ───────────────────────────────────── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
p  { font-family: 'Inter', system-ui, sans-serif; }

/* ── Section helpers ──────────────────────────────── */
.section {
  padding: 100px 0;
}
.section__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4a810;
  margin-bottom: 12px;
}
.section__eyebrow--light { color: rgba(255,251,230,0.6); }
.section__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: #2d142d;
  margin-bottom: 20px;
}
.section__title--light { color: #f5f0f7; }
.section__lead {
  font-size: 1.1rem;
  color: #683168;
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  border: none;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: #d4a810;
  color: #2d142d;
  box-shadow: 0 4px 20px rgba(212,168,16,0.35);
}
.btn--primary:hover { background: #e6b81a; box-shadow: 0 8px 28px rgba(212,168,16,0.45); }
.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: #f5f0f7;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.2); }
.btn--amber {
  background: #d4a810;
  color: #2d142d;
  width: 100%;
  box-shadow: 0 4px 20px rgba(212,168,16,0.35);
}
.btn--amber:hover { background: #e6b81a; }

/* ── Links ────────────────────────────────────────── */
.link {
  color: #d4a810;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.link:hover { color: #e6b81a; text-decoration: underline; }
.link--light { color: rgba(255,251,230,0.85); }
.link--light:hover { color: #fffbe6; }
.link--footer { color: rgba(244,228,191,0.7); }
.link--footer:hover { color: #f4e4bf; }
.link--phone { font-size: 1.1rem; }

/* ── Cards ────────────────────────────────────────── */
.card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(45,20,45,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 48px rgba(45,20,45,0.14); }

/* ── Navigation ───────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(45,20,45,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(244,228,191,0.1);
  transition: background 0.3s;
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #f4e4bf;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.nav__logo-icon { width: 32px; height: 32px; color: #d4a810; }
.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav__link {
  color: rgba(244,228,191,0.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav__link:hover { color: #f4e4bf; background: rgba(244,228,191,0.08); }
.nav__link--cta {
  background: #d4a810;
  color: #2d142d;
  font-weight: 600;
}
.nav__link--cta:hover { background: #e6b81a; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
}
.nav__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #f4e4bf;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    top: 68px; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(45,20,45,0.97);
    backdrop-filter: blur(16px);
    padding: 32px 24px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  }
  .nav__menu.open { transform: translateX(0); }
  .nav__link { font-size: 1.1rem; padding: 14px 16px; }
  .nav__link--cta { text-align: center; margin-top: 16px; }
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, #2d142d 0%, #562956 35%, #8b458b 65%, #a35fa3 100%);
  padding: 120px 24px 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/36285704/pexels-photo-36285704.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(45,20,45,0.92) 0%,
    rgba(86,41,86,0.85) 50%,
    rgba(139,69,139,0.78) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #d4a810;
  margin-bottom: 20px;
}
.hero__headline {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  color: #f5f0f7;
  margin-bottom: 24px;
  line-height: 1.08;
}
.hero__accent { color: #ffd924; }
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(244,228,191,0.8);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 40px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(244,228,191,0.5);
  animation: bobble 2s ease-in-out infinite;
}
.hero__scroll svg { width: 28px; height: 28px; }
@keyframes bobble {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Rooms ────────────────────────────────────────── */
.rooms { background: #f5f0f7; }
.rooms__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 32px;
}
.room-card { position: relative; }
.room-card--featured .room-card__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 0;
  box-shadow: inset 0 0 0 2px #d4a810;
  pointer-events: none;
}
.room-card__badge {
  position: absolute;
  top: 16px; left: 16px;
  background: #d4a810;
  color: #2d142d;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 6px;
  z-index: 2;
}
.room-card__img-wrap {
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  aspect-ratio: 4/3;
}
.room-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.card:hover .room-card__img-wrap img { transform: scale(1.04); }
.room-card__body { padding: 28px; }
.room-card__title {
  font-size: 1.5rem;
  color: #2d142d;
  margin-bottom: 10px;
}
.room-card__desc {
  font-size: 0.95rem;
  color: #683168;
  line-height: 1.65;
  margin-bottom: 20px;
}
.room-card__amenities {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.room-card__amenities li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #452045;
  font-weight: 500;
}
.room-card__amenities svg { width: 18px; height: 18px; flex-shrink: 0; color: #d4a810; }
.rooms__note {
  text-align: center;
  font-size: 0.95rem;
  color: #683168;
}

/* ── Amenities ────────────────────────────────────── */
.amenities { background: #fff; }
.amenities__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.amenity-card {
  padding: 36px 28px;
  border-radius: 16px;
  background: #f5f0f7;
  transition: transform 0.3s, box-shadow 0.3s;
}
.amenity-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(45,20,45,0.1); }
.amenity-card__icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(212,168,16,0.12);
  color: #d4a810;
  margin-bottom: 20px;
}
.amenity-card__icon svg { width: 26px; height: 26px; }
.amenity-card__title {
  font-size: 1.15rem;
  color: #2d142d;
  margin-bottom: 10px;
}
.amenity-card__desc {
  font-size: 0.9rem;
  color: #683168;
  line-height: 1.65;
}

/* ── Location ─────────────────────────────────────── */
.location { background: #f5f0f7; }
.location__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.location__details {
  margin-bottom: 32px;
  font-size: 1rem;
  line-height: 1.8;
  color: #683168;
}
.location__details p { margin-bottom: 4px; }
.location__details strong { color: #2d142d; }
.location__phone { margin-top: 8px; }
.location__nearby-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4a810;
  margin-bottom: 12px;
}
.location__nearby-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.location__nearby-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #452045;
}
.location__nearby-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #d4a810;
  flex-shrink: 0;
}
.location__map { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 40px rgba(45,20,45,0.12); }

@media (max-width: 900px) {
  .location__layout { grid-template-columns: 1fr; gap: 36px; }
  .location__map iframe { height: 320px; }
}

/* ── About ────────────────────────────────────────── */
.about { background: #fff; }
.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about__image { border-radius: 20px; overflow: hidden; box-shadow: 0 12px 48px rgba(45,20,45,0.12); }
.about__image img { width: 100%; height: 100%; object-fit: cover; }
.about__text p {
  font-size: 1rem;
  color: #683168;
  line-height: 1.75;
  margin-bottom: 16px;
}
.about__stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(45,20,45,0.1);
}
.stat__number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2d142d;
  line-height: 1;
  margin-bottom: 6px;
}
.stat__label {
  font-size: 0.85rem;
  color: #a35fa3;
  font-weight: 500;
}

@media (max-width: 900px) {
  .about__layout { grid-template-columns: 1fr; gap: 36px; }
  .about__image { max-height: 400px; }
  .about__image img { height: 100%; object-fit: cover; }
}

/* ── Testimonials ─────────────────────────────────── */
.testimonials { background: #f5f0f7; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(45,20,45,0.06);
  position: relative;
}
.testimonial-card__quote {
  width: 32px; height: 32px;
  color: #d9bdd9;
  margin-bottom: 16px;
}
.testimonial-card__text {
  font-size: 1rem;
  color: #452045;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-card__footer { border-top: 1px solid rgba(45,20,45,0.08); padding-top: 16px; }
.testimonial-card__author {
  font-size: 0.85rem;
  color: #a35fa3;
  font-weight: 500;
}

/* ── CTA ──────────────────────────────────────────── */
.cta {
  background: linear-gradient(160deg, #2d142d 0%, #562956 60%, #8b458b 100%);
  padding: 100px 0;
}
.cta__card {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.cta__text {
  font-size: 1.05rem;
  color: rgba(244,228,191,0.8);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}
.cta__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cta__input,
.cta__textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(244,228,191,0.2);
  background: rgba(255,255,255,0.07);
  color: #f5f0f7;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}
.cta__input::placeholder,
.cta__textarea::placeholder { color: rgba(244,228,191,0.4); }
.cta__input:focus,
.cta__textarea:focus { border-color: #d4a810; background: rgba(255,255,255,0.1); }
.cta__textarea { resize: vertical; min-height: 100px; }
.cta__form-note {
  font-size: 0.85rem;
  color: rgba(244,228,191,0.5);
}
.cta__success {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 10px;
  background: rgba(212,168,16,0.15);
  border: 1px solid rgba(212,168,16,0.3);
  color: #ffd924;
  font-weight: 500;
}
.cta__success svg { width: 22px; height: 22px; flex-shrink: 0; }

@media (max-width: 600px) {
  .cta__form-row { grid-template-columns: 1fr; }
}

/* ── Footer ───────────────────────────────────────── */
.footer {
  background: #1a0c1a;
  color: rgba(244,228,191,0.6);
  padding: 72px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(244,228,191,0.08);
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #f4e4bf;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.footer__logo-icon { width: 28px; height: 28px; color: #d4a810; }
.footer__tagline { font-size: 0.9rem; line-height: 1.6; max-width: 280px; }
.footer__contact p,
.footer__links p { margin-bottom: 6px; font-size: 0.9rem; }
.footer__contact strong,
.footer__links strong { color: #f4e4bf; display: block; margin-bottom: 8px; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; }
.footer__links ul { display: flex; flex-direction: column; gap: 6px; }
.footer__bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(244,228,191,0.35);
}

@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ── Scroll reveal (progressive enhancement) ──────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    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);
  }
}

/* ── Focus visible ────────────────────────────────── */
:focus-visible {
  outline: 2px solid #d4a810;
  outline-offset: 3px;
  border-radius: 4px;
}
