@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800&family=Lato:wght@400;500;600;700&display=swap');

:root {
  --plum-900: #2e1065;
  --plum-700: #5b21b6;
  --violet-600: #7c3aed;
  --violet-400: #a855f7;
  --lavender: #ede4fb;
  --lavender-light: #f8f5fd;
  --cream: #faf7f9;
  --ink: #241b2f;
  --grey: #6b6274;
  --gold: #cba135;
  --white: #ffffff;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}
a { text-decoration: none; color: inherit; }
img, svg { display: block; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; letter-spacing: -0.3px; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
section { padding: 90px 24px; }
.script-accent { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 500; color: var(--violet-600); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 15px 30px;
  border-radius: 3px;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--violet-600); color: #fff; }
.btn-primary:hover { background: var(--plum-900); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-outline:hover { border-color: #fff; transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--violet-600); border-color: var(--violet-600); }
.btn-outline-dark:hover { background: var(--violet-600); color: #fff; transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 247, 249, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #ecdff9;
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo svg { width: 40px; height: 40px; }
.nav-logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 19px; line-height: 1.1; }
.nav-logo-text small { display: block; font-family: 'Lato', sans-serif; font-weight: 600; font-size: 9.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--violet-600); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav-links a.active, .nav-links a:hover { color: var(--violet-600); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); }

/* ---------- PAGE HERO (interior pages) ---------- */
.page-hero {
  position: relative;
  padding: 80px 24px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--plum-900), var(--violet-600));
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.10) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: 0.5;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.page-hero span.tag {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--lavender); margin-bottom: 14px;
}
.page-hero h1 { font-size: clamp(30px, 5vw, 46px); margin-bottom: 12px; }
.page-hero p { color: var(--lavender); font-size: 15px; }
.crumb { font-size: 12px; color: var(--lavender); margin-top: 14px; }
.crumb a { text-decoration: underline; }

/* ---------- SECTION HEAD ---------- */
.section-head { max-width: 600px; margin: 0 auto 50px; text-align: center; }
.section-head .eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--violet-600); display: block; margin-bottom: 12px; }
.section-head h2 { font-size: clamp(26px, 4vw, 38px); margin-bottom: 14px; }
.section-head p { color: var(--grey); font-size: 15px; }

/* ---------- ARCH IMAGE PLACEHOLDER ---------- */
.arch-img {
  border-radius: 140px 140px 8px 8px;
  aspect-ratio: 3 / 4;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.arch-img svg { width: 34%; height: 34%; opacity: 0.9; }
.arch-img.wide { aspect-ratio: 4 / 3; border-radius: 90px 90px 8px 8px; }
.g1 { background: linear-gradient(150deg, #5b21b6, #2e1065); }
.g2 { background: linear-gradient(150deg, #a855f7, #5b21b6); }
.g3 { background: linear-gradient(150deg, #7c3aed, #ede4fb); }
.g4 { background: linear-gradient(150deg, #2e1065, #a855f7); }
.g5 { background: linear-gradient(150deg, #cba135, #5b21b6); }
.g6 { background: linear-gradient(150deg, #ede4fb, #a855f7); }

/* ---------- ROOM CARDS ---------- */
.room-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.room-card { background: #fff; border-radius: 10px; overflow: hidden; border: 1px solid #f0e6fa; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.room-card:hover { transform: translateY(-6px); box-shadow: 0 22px 45px rgba(46,16,101,0.12); }
.room-card .arch-img { border-radius: 0; aspect-ratio: 4/3; }
.room-body { padding: 24px 24px 28px; }
.room-price { font-size: 12px; font-weight: 700; color: var(--violet-600); text-transform: uppercase; letter-spacing: 1px; }
.room-price strong { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--ink); margin-right: 4px; }
.room-body h3 { font-size: 19px; margin: 10px 0 8px; }
.room-body p { font-size: 13.5px; color: var(--grey); margin-bottom: 14px; }
.room-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.room-tags span { font-size: 11px; background: var(--lavender-light); border: 1px solid #ecdff9; color: var(--plum-700); padding: 4px 10px; border-radius: 20px; }

/* ---------- AMENITY GRID ---------- */
.amenity-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.amenity-card { background: #fff; border: 1px solid #f0e6fa; border-radius: 10px; padding: 30px 24px; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.amenity-card:hover { transform: translateY(-5px); box-shadow: 0 18px 36px rgba(46,16,101,0.1); }
.amenity-icon { width: 54px; height: 54px; margin: 0 auto 16px; border-radius: 50%; background: var(--lavender-light); display: flex; align-items: center; justify-content: center; }
.amenity-icon svg { width: 24px; height: 24px; stroke: var(--violet-600); }
.amenity-card h3 { font-size: 16px; margin-bottom: 8px; }
.amenity-card p { font-size: 13px; color: var(--grey); }

/* ---------- REVIEWS ---------- */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.review-card { background: #fff; border: 1px solid #f0e6fa; border-radius: 10px; padding: 28px 26px; }
.review-stars { color: var(--gold); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.review-card p.quote { font-size: 14px; color: var(--ink); margin-bottom: 18px; font-style: italic; }
.review-person { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--violet-400), var(--plum-900)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 13px; }
.review-person strong { font-size: 13.5px; display: block; }
.review-person span { font-size: 11.5px; color: var(--grey); }

/* ---------- GALLERY ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-grid .arch-img { border-radius: 8px; aspect-ratio: 1; }
.gallery-grid .tall { aspect-ratio: 1/1.5; grid-row: span 2; }
@media (max-width: 720px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .gallery-grid .tall { grid-row: span 1; aspect-ratio: 1; } }

/* ---------- BOOKING FORM ---------- */
.booking-panel { max-width: 760px; margin: 0 auto; background: #fff; border: 1px solid #f0e6fa; border-radius: 14px; padding: 40px; box-shadow: 0 30px 60px rgba(46,16,101,0.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 12.5px; font-weight: 700; color: var(--plum-700); text-transform: uppercase; letter-spacing: 0.5px; }
input, select, textarea {
  font-family: 'Lato', sans-serif;
  font-size: 14.5px;
  padding: 12px 14px;
  border: 1px solid #e3d4f5;
  border-radius: 6px;
  background: var(--lavender-light);
  color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--violet-600); background: #fff; }
textarea { resize: vertical; min-height: 90px; }
.mini-book { background: #fff; border-radius: 12px; padding: 22px; box-shadow: 0 25px 60px rgba(0,0,0,0.18); display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; align-items: end; max-width: 900px; margin: 40px auto 0; }
.mini-book label { color: var(--plum-700); }
.mini-book .form-group { gap: 5px; }
@media (max-width: 760px) { .mini-book { grid-template-columns: 1fr 1fr; } .form-row { grid-template-columns: 1fr; } }

.confirm-box {
  display: none;
  max-width: 760px;
  margin: 30px auto 0;
  background: var(--lavender-light);
  border: 1px solid #e3d4f5;
  border-radius: 12px;
  padding: 30px;
}
.confirm-box.show { display: block; }
.confirm-box h3 { color: var(--plum-700); margin-bottom: 10px; }
.confirm-box p { font-size: 13.5px; color: var(--grey); margin-bottom: 4px; }
.confirm-note { margin-top: 14px; font-size: 12px; color: var(--violet-600); font-weight: 700; }

/* ---------- SPLIT SECTION ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse .split-img { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split.reverse .split-img { order: 0; } }

/* ---------- STATS ---------- */
.stats-band { background: var(--plum-900); color: #fff; padding: 60px 24px; }
.stats-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stats-grid strong { display: block; font-family: 'Playfair Display', serif; font-size: 32px; color: var(--gold); }
.stats-grid span { font-size: 12px; color: var(--lavender); text-transform: uppercase; letter-spacing: 1px; }
@media (max-width: 600px) { .stats-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-info-item .ico { width: 42px; height: 42px; border-radius: 50%; background: var(--lavender-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-item .ico svg { width: 19px; height: 19px; stroke: var(--violet-600); }
.contact-info-item h4 { font-size: 14.5px; margin-bottom: 4px; }
.contact-info-item p { font-size: 13.5px; color: var(--grey); }
.map-placeholder {
  border-radius: 10px;
  aspect-ratio: 16/10;
  background: repeating-linear-gradient(135deg, #ede4fb, #ede4fb 12px, #f8f5fd 12px, #f8f5fd 24px);
  border: 1px solid #e3d4f5;
  display: flex; align-items: center; justify-content: center;
  color: var(--violet-600);
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  gap: 8px;
  flex-direction: column;
  margin-top: 30px;
}
.map-placeholder svg { width: 30px; height: 30px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- CTA BAND ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--violet-600), var(--plum-900));
  color: #fff;
  text-align: center;
  padding: 80px 24px;
}
.cta-band h2 { font-size: clamp(24px, 4vw, 34px); margin-bottom: 14px; }
.cta-band p { color: var(--lavender); margin-bottom: 30px; font-size: 15px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- FOOTER ---------- */
footer { background: var(--ink); color: #cabdd6; padding: 60px 24px 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; max-width: 1160px; margin: 0 auto; }
.footer-logo { display: flex; align-items: center; gap: 10px; color: #fff; margin-bottom: 14px; }
.footer-logo svg { width: 34px; height: 34px; }
.footer-logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 17px; }
footer p { font-size: 13px; color: #a899b8; margin-bottom: 8px; }
footer h4 { font-family: 'Lato', sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13.5px; }
.footer-links a:hover { color: var(--violet-400); }
.footer-bottom { max-width: 1160px; margin: 40px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 12px; text-align: center; color: #7c6f8d; }

/* ---------- MOBILE NAV ---------- */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid #ecdff9; padding: 10px 24px 20px;
  }
  .nav-links.open a { padding: 12px 0; border-bottom: 1px solid #f4eefb; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- FLOATER ---------- */
.fab-home {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  z-index: 999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}
.fab-home img { width: 60%; height: 60%; object-fit: contain; }
.fab-home:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 14px 30px rgba(0,0,0,0.35); }
.fab-tooltip {
  position: absolute;
  bottom: 64px;
  right: 0;
  background: #0a0a0a;
  color: #fff;
  font-family: sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.fab-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 18px;
  border: 5px solid transparent;
  border-top-color: #0a0a0a;
}
.fab-home:hover .fab-tooltip { opacity: 1; transform: translateY(0); }
@media (max-width: 600px) {
  .fab-home { bottom: 18px; right: 18px; width: 46px; height: 46px; }
}
