/* Aurora District — Design System
   Palette: Deep Crimson + Pure Black + Warm Pearl + Brushed Gold
   Geometry: Sharp corners (0px), thin borders, editorial typography
   Style: Black-tie evening hotel / Private members' club */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --black: #0B0B0B;
  --dark: #141414;
  --dark-2: #1C1C1C;
  --dark-3: #252525;
  --charcoal: #2E2E2E;
  --red: #C62828;
  --red-dark: #8B1A1A;
  --red-light: #E53935;
  --gold: #C9A96E;
  --gold-muted: #A08A5C;
  --pearl: #F5F0EB;
  --pearl-dim: #E8E2DC;
  --text: #D4CFC8;
  --text-muted: #8A857E;
  --white: #FAFAF8;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w: 1280px;
  --gap: clamp(1rem, 3vw, 2rem);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .25s; }
a:hover { color: var(--red-light); }

/* Skip link */
.skip-link {
  position: absolute; top: -60px; left: 0;
  background: var(--red); color: #fff; padding: 8px 16px;
  z-index: 10000; font-size: 14px;
}
.skip-link:focus { top: 0; }

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900; background: rgba(11,11,11,.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,169,110,.12);
}
.header-compliance {
  background: var(--dark);
  text-align: center; padding: 4px 0;
  font-size: 11px; letter-spacing: .06em;
  color: var(--text-muted); border-bottom: 1px solid rgba(201,169,110,.08);
}
.header-main {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--gap); height: 68px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo svg { height: 36px; width: auto; }
.logo-text { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--pearl); letter-spacing: .04em; }
.logo-text em { font-style: normal; color: var(--red); }

.nav-desktop { display: flex; gap: 28px; align-items: center; }
.nav-desktop a {
  font-size: 13px; font-weight: 400; letter-spacing: .05em;
  text-transform: uppercase; color: var(--text);
  position: relative; padding: 4px 0;
}
.nav-desktop a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--red);
  transition: width .3s;
}
.nav-desktop a:hover { color: var(--pearl); }
.nav-desktop a:hover::after { width: 100%; }
.nav-desktop a.active { color: var(--gold); }
.nav-desktop a.active::after { width: 100%; background: var(--gold); }

.header-cta {
  display: inline-block; padding: 8px 22px;
  border: 1px solid var(--gold); color: var(--gold);
  font-size: 12px; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; transition: all .3s;
}
.header-cta:hover {
  background: var(--gold); color: var(--black);
}

/* Mobile menu */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.burger span { display: block; width: 24px; height: 1.5px; background: var(--pearl); transition: all .3s; }

.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(11,11,11,.97); z-index: 950;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 24px;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  font-family: var(--font-display); font-size: 24px; color: var(--pearl);
  letter-spacing: .03em;
}
.mobile-nav a:hover { color: var(--red); }
.mobile-close {
  position: absolute; top: 20px; right: 24px;
  font-size: 28px; color: var(--pearl); cursor: pointer;
  background: none; border: none;
}

@media (max-width: 1024px) {
  .nav-desktop, .header-cta { display: none; }
  .burger { display: flex; }
}

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 1;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(11,11,11,.95) 0%,
    rgba(11,11,11,.6) 40%,
    rgba(11,11,11,.3) 70%,
    rgba(11,11,11,.5) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--gap) 80px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-block; font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px; padding-left: 40px;
  position: relative;
}
.hero-eyebrow::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 30px; height: 1px; background: var(--gold);
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400; color: var(--white); line-height: 1.1;
  margin-bottom: 24px; max-width: 700px;
}
.hero h1 span { color: var(--red); }
.hero-subtitle {
  font-size: 17px; color: var(--pearl-dim); max-width: 520px;
  line-height: 1.7; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Subpage hero */
.hero-sub {
  padding-top: 140px; padding-bottom: 80px;
  background: var(--dark);
  border-bottom: 1px solid rgba(201,169,110,.1);
}
.hero-sub .hero-content { padding-bottom: 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-block; padding: 14px 32px;
  font-size: 13px; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; transition: all .3s; cursor: pointer;
  border: none; text-align: center;
}
.btn-primary {
  background: var(--red); color: var(--white);
  border: 1px solid var(--red);
}
.btn-primary:hover {
  background: var(--red-light); border-color: var(--red-light); color: #fff;
}
.btn-outline {
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold); color: var(--black);
}
.btn-ghost {
  background: transparent; color: var(--pearl);
  border: 1px solid rgba(245,240,235,.2);
}
.btn-ghost:hover {
  border-color: var(--pearl); color: var(--white);
}
.btn-sm { padding: 10px 22px; font-size: 12px; }

/* ── SECTIONS ── */
.section { padding: clamp(60px, 8vw, 120px) 0; }
.section-dark { background: var(--black); }
.section-darker { background: var(--dark); }
.section-accent { background: var(--dark-2); }
.section-red { background: var(--red-dark); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gap); }

.section-header {
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-eyebrow {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400; color: var(--pearl); line-height: 1.15;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 16px; color: var(--text-muted); max-width: 600px;
  line-height: 1.7;
}

/* Gold divider */
.divider { width: 60px; height: 1px; background: var(--gold); margin: 24px 0; }
.divider-center { margin-left: auto; margin-right: auto; }

/* ── SPLIT LAYOUT ── */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; align-items: stretch;
}
.split-text {
  padding: clamp(40px, 5vw, 80px);
  display: flex; flex-direction: column; justify-content: center;
}
.split-image { position: relative; min-height: 400px; overflow: hidden; }
.split-image img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
@media (max-width: 768px) {
  .split { grid-template-columns: 1fr; }
  .split-image { min-height: 300px; }
  .split.reverse-mobile .split-image { order: -1; }
}

/* ── ROOM CARDS ── */
.rooms-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: rgba(201,169,110,.08);
}
.room-card {
  background: var(--dark);
  display: flex; flex-direction: column;
  border: 1px solid rgba(201,169,110,.06);
  transition: border-color .3s;
}
.room-card:hover { border-color: rgba(201,169,110,.2); }
.room-card-img {
  position: relative; height: 240px; overflow: hidden;
}
.room-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s;
}
.room-card:hover .room-card-img img { transform: scale(1.03); }
.room-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.room-card-name {
  font-family: var(--font-display); font-size: 20px; font-weight: 500;
  color: var(--pearl); margin-bottom: 8px;
}
.room-card-desc {
  font-size: 14px; color: var(--text-muted); margin-bottom: 16px;
  line-height: 1.6; flex: 1;
}
.room-card-features {
  list-style: none; margin-bottom: 20px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.room-card-features li {
  font-size: 11px; letter-spacing: .04em;
  color: var(--text-muted); padding: 4px 10px;
  border: 1px solid rgba(201,169,110,.12);
}
.room-card-price {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 16px;
}
.room-card-price .amount {
  font-family: var(--font-display); font-size: 28px;
  color: var(--pearl); font-weight: 500;
}
.room-card-price .unit {
  font-size: 13px; color: var(--text-muted);
}
@media (max-width: 1024px) { .rooms-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .rooms-grid { grid-template-columns: 1fr; } }

/* ── SERVICE BLOCKS ── */
.service-block {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.service-block:nth-child(even) .service-image { order: -1; }
.service-text {
  padding: clamp(40px, 5vw, 80px);
  display: flex; flex-direction: column; justify-content: center;
  background: var(--dark);
}
.service-image { position: relative; overflow: hidden; }
.service-image img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
@media (max-width: 768px) {
  .service-block { grid-template-columns: 1fr; }
  .service-block:nth-child(even) .service-image { order: 0; }
  .service-image { min-height: 300px; position: relative; }
}

/* ── TRUST STRIP ── */
.trust-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(201,169,110,.1);
  border-bottom: 1px solid rgba(201,169,110,.1);
}
.trust-item {
  padding: 32px 24px; text-align: center;
  border-right: 1px solid rgba(201,169,110,.06);
}
.trust-item:last-child { border-right: none; }
.trust-item-label {
  font-family: var(--font-display); font-size: 16px;
  color: var(--pearl); margin-bottom: 4px;
}
.trust-item-desc {
  font-size: 12px; color: var(--text-muted); letter-spacing: .03em;
}
@media (max-width: 768px) {
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-bottom: 1px solid rgba(201,169,110,.06); }
}

/* ── PRICES ── */
.price-table {
  width: 100%; border-collapse: collapse;
}
.price-table thead th {
  font-family: var(--font-display); font-size: 14px; font-weight: 500;
  color: var(--gold); text-align: left; padding: 16px 20px;
  border-bottom: 1px solid var(--gold);
  letter-spacing: .04em;
}
.price-table tbody td {
  padding: 16px 20px; border-bottom: 1px solid rgba(201,169,110,.08);
  font-size: 14px; color: var(--text);
}
.price-table tbody tr:hover { background: rgba(201,169,110,.03); }
.price-table .price-amount {
  font-family: var(--font-display); font-size: 18px;
  color: var(--pearl); font-weight: 500;
}

/* ── FORM ── */
.form-section { background: var(--dark); }
.enquiry-form {
  max-width: 640px;
}
.form-row { margin-bottom: 24px; }
.form-row label {
  display: block; font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 8px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid rgba(201,169,110,.25);
  padding: 10px 0; font-family: var(--font-body);
  font-size: 15px; color: var(--pearl);
  transition: border-color .3s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none; border-bottom-color: var(--red);
}
.form-row select { cursor: pointer; }
.form-row select option { background: var(--dark); color: var(--pearl); }
.form-row textarea { resize: vertical; min-height: 100px; }
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--text-muted); }

.form-checkbox {
  display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 16px; cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
  width: 16px; height: 16px; margin-top: 2px;
  accent-color: var(--red); cursor: pointer;
}
.form-checkbox span {
  font-size: 13px; color: var(--text-muted); line-height: 1.5;
}
.form-checkbox a { color: var(--gold); text-decoration: underline; }

.form-success {
  display: none; text-align: center; padding: 60px 20px;
}
.form-success h3 {
  font-family: var(--font-display); font-size: 28px;
  color: var(--pearl); margin-bottom: 12px;
}
.form-success p { color: var(--text-muted); }

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid rgba(201,169,110,.1);
}
.faq-question {
  width: 100%; background: none; border: none;
  padding: 24px 0; text-align: left; cursor: pointer;
  font-family: var(--font-display); font-size: 18px;
  color: var(--pearl); display: flex;
  justify-content: space-between; align-items: center;
}
.faq-question::after {
  content: '+'; font-size: 24px; color: var(--gold);
  transition: transform .3s;
}
.faq-item.active .faq-question::after { content: '−'; }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .4s ease;
}
.faq-answer-inner {
  padding: 0 0 24px; font-size: 15px;
  color: var(--text-muted); line-height: 1.7;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--dark); border-top: 1px solid rgba(201,169,110,.1);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.7; max-width: 300px; }
.footer-col h4 {
  font-family: var(--font-display); font-size: 14px;
  color: var(--pearl); margin-bottom: 16px; font-weight: 500;
}
.footer-col a {
  display: block; font-size: 13px; color: var(--text-muted);
  margin-bottom: 10px; transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(201,169,110,.08);
  padding: 20px 0; display: flex;
  justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-disclaimer {
  font-size: 12px; color: var(--text-muted); line-height: 1.6;
  max-width: 700px;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: var(--text-muted); }
.footer-links a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--dark-2); z-index: 1000;
  border-top: 1px solid rgba(201,169,110,.15);
  padding: 20px var(--gap);
}
.cookie-banner.active { display: block; }
.cookie-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 280px; }
.cookie-text p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { font-size: 11px; padding: 10px 18px; }

/* Cookie settings modal */
.cookie-modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.7); z-index: 1100;
  justify-content: center; align-items: center;
}
.cookie-modal-overlay.active { display: flex; }
.cookie-modal {
  background: var(--dark); max-width: 520px; width: 90%;
  max-height: 80vh; overflow-y: auto;
  padding: 32px; border: 1px solid rgba(201,169,110,.15);
}
.cookie-modal h3 {
  font-family: var(--font-display); font-size: 22px;
  color: var(--pearl); margin-bottom: 20px;
}
.cookie-category { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(201,169,110,.08); }
.cookie-category-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.cookie-category-header h4 {
  font-size: 14px; color: var(--pearl); font-weight: 500;
}
.cookie-toggle {
  position: relative; width: 40px; height: 22px;
  background: var(--charcoal); border: none; cursor: pointer;
  transition: background .3s;
}
.cookie-toggle.active { background: var(--red); }
.cookie-toggle::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 16px; height: 16px; background: var(--pearl);
  transition: left .3s;
}
.cookie-toggle.active::after { left: 21px; }
.cookie-toggle.locked { opacity: .5; cursor: default; }
.cookie-category p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.cookie-modal-actions { display: flex; gap: 10px; margin-top: 24px; }

/* ── LEGAL PAGES ── */
.legal-content {
  max-width: 800px;
}
.legal-content h2 {
  font-family: var(--font-display); font-size: 24px;
  color: var(--pearl); margin: 40px 0 16px; font-weight: 500;
}
.legal-content h3 {
  font-size: 16px; color: var(--gold); margin: 28px 0 12px; font-weight: 500;
}
.legal-content p {
  margin-bottom: 16px; font-size: 15px; line-height: 1.75;
  color: var(--text);
}
.legal-content ul, .legal-content ol {
  margin: 0 0 16px 20px; font-size: 15px; color: var(--text);
}
.legal-content li { margin-bottom: 8px; line-height: 1.6; }

/* ── GALLERY GRID ── */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.gallery-grid img {
  width: 100%; height: 260px; object-fit: cover;
  transition: opacity .3s;
}
.gallery-grid img:hover { opacity: .85; }
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── FEATURES LIST ── */
.features-list {
  list-style: none; display: grid;
  grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.features-list li {
  padding-left: 20px; position: relative;
  font-size: 15px; color: var(--text); line-height: 1.6;
}
.features-list li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 6px; height: 1px; background: var(--red);
}
@media (max-width: 640px) {
  .features-list { grid-template-columns: 1fr; }
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--red-dark);
  padding: 48px 0; text-align: center;
}
.cta-band h3 {
  font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white); margin-bottom: 8px; font-weight: 400;
}
.cta-band p { color: rgba(255,255,255,.7); margin-bottom: 24px; font-size: 15px; }

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s, transform .6s;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── MISC ── */
.text-gold { color: var(--gold); }
.text-red { color: var(--red); }
.text-center { text-align: center; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }

/* Thank you page */
.thankyou-wrap {
  min-height: 80vh; display: flex; align-items: center;
  justify-content: center; text-align: center;
  padding: 120px var(--gap);
}
.thankyou-wrap h1 {
  font-family: var(--font-display); font-size: 36px;
  color: var(--pearl); margin-bottom: 16px;
}
.thankyou-wrap p { color: var(--text-muted); margin-bottom: 24px; }

/* ── Stats Strip ── */
.stats-strip{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;text-align:center;padding:48px 0}
.stat-number{font-family:'Playfair Display',Georgia,serif;font-size:2.4rem;color:var(--gold);margin-bottom:4px}
.stat-label{font-size:13px;text-transform:uppercase;letter-spacing:2px;color:var(--text-muted)}
@media(max-width:640px){.stats-strip{grid-template-columns:repeat(2,1fr);gap:32px}.stat-number{font-size:1.8rem}}

/* ── Steps Grid ── */
.steps-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:32px;margin-top:40px}
.step-item{text-align:center;padding:24px 16px}
.step-number{display:inline-flex;align-items:center;justify-content:center;width:48px;height:48px;border:1px solid var(--gold);font-family:'Playfair Display',Georgia,serif;font-size:1.2rem;color:var(--gold);margin-bottom:16px}
.step-item h3{font-family:'Playfair Display',Georgia,serif;font-size:1.1rem;margin-bottom:8px;color:var(--text-primary)}
.step-item p{font-size:14px;color:var(--text-muted);line-height:1.6}
@media(max-width:768px){.steps-grid{grid-template-columns:repeat(2,1fr);gap:24px}}
@media(max-width:480px){.steps-grid{grid-template-columns:1fr}}

/* ── Amenities Grid ── */
.amenities-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:40px}
.amenity-card{padding:32px 24px;border:1px solid rgba(201,169,110,.2);transition:border-color .3s}
.amenity-card:hover{border-color:var(--gold)}
.amenity-card h3{font-family:'Playfair Display',Georgia,serif;font-size:1.15rem;margin-bottom:12px;color:var(--text-primary)}
.amenity-card p{font-size:14px;color:var(--text-muted);line-height:1.6;margin-bottom:16px}
@media(max-width:768px){.amenities-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:480px){.amenities-grid{grid-template-columns:1fr}}

/* ── Price Glance Grid ── */
.price-glance-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:32px}
.price-glance-item{display:flex;justify-content:space-between;align-items:center;padding:16px 20px;border:1px solid rgba(201,169,110,.15)}
.price-glance-label{font-size:14px;color:var(--text-primary)}
.price-glance-amount{font-family:'Playfair Display',Georgia,serif;color:var(--gold);font-size:14px;white-space:nowrap}
@media(max-width:768px){.price-glance-grid{grid-template-columns:1fr}}

/* ── Reasons Grid ── */
.reasons-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;margin-top:40px}
.reason-item h3{font-family:'Playfair Display',Georgia,serif;font-size:1.05rem;margin-bottom:8px;color:var(--gold)}
.reason-item p{font-size:14px;color:var(--text-muted);line-height:1.6}
@media(max-width:768px){.reasons-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:480px){.reasons-grid{grid-template-columns:1fr}}

/* ── Testimonials ── */
.testimonials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:40px}
.testimonial-card{padding:32px 24px;border:1px solid rgba(201,169,110,.15)}
.testimonial-text{font-style:italic;font-size:15px;line-height:1.7;color:var(--text-primary);margin-bottom:16px}
.testimonial-author{font-size:13px;color:var(--gold);letter-spacing:1px}
@media(max-width:768px){.testimonials-grid{grid-template-columns:1fr}}
