/* =============================================
   APARTHOTEL SIETE32 — Design System
   Colors: Navy #0F172A, Teal #5D94A1, White
   Fonts: Inter (body), Playfair Display (headings)
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0F172A;
  --teal: #5D94A1;
  --teal-hover: #4d8090;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-500: #475569;
  --gray-700: #334155;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --max-w: 1312px;
  --radius: 12px;
  --shadow-card: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-hover: 0 10px 25px rgba(0,0,0,.12);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 64px; } }

/* --- Typography --- */
h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
.subtitle { font-size: clamp(.875rem, 1.5vw, 1.25rem); color: var(--gray-500); line-height: 1.6; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 12px 32px; border-radius: 8px; border: none; cursor: pointer;
  transition: all var(--transition);
}
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-hover); transform: translateY(-1px); box-shadow: var(--shadow-hover); }
.btn-outline { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-outline:hover { background: var(--teal); color: var(--white); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--gray-100); }

/* =============================================
   HEADER / NAV
   ============================================= */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  background: var(--navy); transition: background var(--transition);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-w); margin: 0 auto;
  padding: 16px 24px; min-height: 72px;
}
@media (min-width: 768px) { .header-inner { padding: 16px 64px; min-height: 105px; } }

.header-logo img { height: 48px; width: auto; }
@media (min-width: 768px) { .header-logo img { height: 48px; } }

.nav-links { display: none; }
@media (min-width: 768px) {
  .nav-links {
    display: flex; align-items: center; gap: 32px;
  }
  .nav-links a {
    color: var(--white); font-size: .9375rem; font-weight: 500;
    transition: color var(--transition); position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--teal);
    transition: width var(--transition);
  }
  .nav-links a:hover { color: var(--teal); }
  .nav-links a:hover::after { width: 100%; }
  .nav-links .nav-cta:hover { transform: none; box-shadow: none; }
  .nav-links .nav-cta::after { display: none; }
}

.nav-cta { display: none; }
@media (min-width: 768px) { .nav-cta { display: inline-flex; } }

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 8px; z-index: 110;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--white);
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 768px) { .hamburger { display: none; } }

/* Mobile menu */
.mobile-menu {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  background: var(--navy); z-index: 105;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  transform: translateX(100%); transition: transform var(--transition);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-size: 1.5rem; font-weight: 600; color: var(--white);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--teal); }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative; min-height: 520px; height: 60vh; display: flex;
  flex-direction: column; align-items: center; justify-content: center;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  padding: 120px 24px 80px; margin-bottom: 0;
}
@media (min-width: 768px) { .hero { height: 65vh; min-height: 500px; } }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(rgba(15,23,42,.65), rgba(15,23,42,.75));
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 700px; color: var(--white);
}
.hero-content h1 { margin-bottom: 16px; }
.hero-content p { font-size: clamp(1rem, 2vw, 1.25rem); opacity: .9; margin-bottom: 0; }

/* Booking Widget — floats between hero and next section */
.booking-wrapper {
  position: relative; z-index: 10;
  display: flex; justify-content: center;
  margin-top: -48px; margin-bottom: 0;
  padding: 0 24px;
}
@media (min-width: 768px) { .booking-wrapper { margin-top: -44px; padding: 0 64px; } }
.booking-widget {
  background: var(--white); border-radius: var(--radius); padding: 24px 32px;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
  display: flex; flex-wrap: wrap; align-items: flex-end; gap: 16px;
  max-width: 900px; width: 100%;
}
.booking-field { flex: 1; min-width: 140px; }
.booking-field label {
  display: block; font-size: .75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .5px; color: var(--gray-500); margin-bottom: 6px;
}
.booking-field input {
  width: 100%; border: 1px solid var(--gray-200); border-radius: 8px;
  padding: 10px 12px; font-family: var(--font-body); font-size: .9375rem;
  color: var(--navy); transition: border-color var(--transition); cursor: pointer;
}
.booking-field input[type="date"] { cursor: pointer; }
.booking-field input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer; padding: 4px; margin: 0;
  opacity: .6; transition: opacity .2s;
}
.booking-field input[type="date"]:hover::-webkit-calendar-picker-indicator { opacity: 1; }
.booking-field input:focus { outline: none; border-color: var(--teal); }
.booking-widget .btn { min-width: 160px; padding: 12px 24px; }


/* =============================================
   TRUST BADGES
   ============================================= */
.trust-bar {
  background: var(--gray-100); border-bottom: 1px solid var(--gray-200);
  padding: 20px 24px;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 16px 48px;
  max-width: var(--max-w); margin: 0 auto;
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-item svg { flex-shrink: 0; }
.trust-item span { font-size: .9375rem; font-weight: 600; color: var(--navy); white-space: nowrap; }
.trust-divider { width: 1px; height: 24px; background: var(--gray-300); }
@media (max-width: 767px) { .trust-divider { display: none; } }

/* =============================================
   DIFFERENTIATORS
   ============================================= */
.differentiators { padding: 80px 0; }
.differentiators .section-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.diff-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px; max-width: var(--max-w); margin: 0 auto;
}
.diff-card {
  padding: 32px; border: 1px solid var(--gray-200); border-radius: var(--radius);
  background: var(--white); transition: all var(--transition);
}
.diff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.diff-icon {
  width: 48px; height: 48px; border-radius: 8px;
  background: var(--gray-100); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.diff-icon svg { width: 24px; height: 24px; stroke: var(--teal); fill: none; stroke-width: 2; }
.diff-card h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.125rem; margin-bottom: 10px; }
.diff-card p { font-size: .9375rem; color: var(--gray-500); line-height: 1.6; }

/* =============================================
   SUITES SECTION
   ============================================= */
.suites-section { padding: 80px 0; background: var(--off-white); }
.suites-section .section-header { text-align: center; max-width: 600px; margin: 0 auto 40px; }

.filter-bar { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.filter-btn {
  padding: 10px 24px; border-radius: 8px; border: 1px solid var(--gray-200);
  background: var(--white); font-family: var(--font-body); font-weight: 600;
  font-size: .875rem; cursor: pointer; transition: all var(--transition); color: var(--gray-500);
}
.filter-btn:hover { border-color: var(--teal); color: var(--teal); }
.filter-btn.active { background: var(--teal); color: var(--white); border-color: var(--teal); }

/* Search / availability bar */
.suites-search {
  background: var(--white); border-radius: var(--radius); padding: 24px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08); border: 1px solid var(--gray-200);
  display: flex; flex-wrap: wrap; align-items: flex-end; gap: 16px;
  margin-bottom: 32px;
}
.search-field { flex: 1; min-width: 140px; }
.search-field label {
  display: block; font-size: .75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .5px; color: var(--gray-500); margin-bottom: 6px;
}
.search-field input,
.search-field select {
  width: 100%; border: 1px solid var(--gray-200); border-radius: 8px;
  padding: 10px 12px; font-family: var(--font-body); font-size: .9375rem;
  color: var(--navy); background: var(--white);
  transition: border-color var(--transition); cursor: pointer;
  -webkit-appearance: none; appearance: none;
}
.search-field select {
  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='%23475569' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 32px;
}
.search-field input:focus,
.search-field select:focus { outline: none; border-color: var(--teal); }
.suites-search .btn { min-width: 120px; padding: 11px 24px; }
.no-results {
  text-align: center; padding: 48px 24px; color: var(--gray-500);
  font-size: 1.0625rem;
}

.suite-card {
  display: flex; flex-direction: column; background: var(--white);
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  overflow: hidden; transition: all var(--transition); margin-bottom: 32px;
}
.suite-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
@media (min-width: 768px) { .suite-card { flex-direction: row; } }

.suite-image {
  position: relative; overflow: hidden;
  min-height: 220px; flex-shrink: 0;
}
@media (min-width: 768px) { .suite-image { width: 380px; min-height: 340px; } }
.suite-image img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.suite-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--white); padding: 6px 12px; border-radius: 4px;
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
  color: var(--navy);
}

.suite-info { flex: 1; padding: 28px 32px; display: flex; flex-direction: column; gap: 12px; }
.suite-info h3 { font-family: var(--font-heading); font-size: 1.5rem; }
.suite-info .suite-desc { font-size: .9375rem; color: var(--gray-500); line-height: 1.6; }
.suite-amenities { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.suite-amenity { display: flex; align-items: center; gap: 8px; font-size: .875rem; color: var(--gray-500); }
.suite-amenity svg { width: 18px; height: 18px; stroke: var(--teal); fill: none; stroke-width: 2; flex-shrink: 0; }

.suite-pricing {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-top: auto; padding-top: 16px;
}
.suite-pricing .price-label { font-size: .75rem; font-weight: 600; text-transform: uppercase; color: var(--gray-500); }
.suite-pricing .price {
  font-size: 1.75rem; font-weight: 700; color: var(--navy);
}
.suite-pricing .price span { font-size: .875rem; font-weight: 400; color: var(--gray-500); }

/* =============================================
   LOCATION SECTION
   ============================================= */
.location-section {
  position: relative; padding: 80px 0; text-align: center;
  background-color: var(--off-white);
}
.location-section .container { position: relative; z-index: 2; }
.location-icon {
  width: 64px; height: 64px; margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
}
.location-section h2 { margin-bottom: 16px; }
.proximity-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin: 28px auto 40px; max-width: 800px;
}
.proximity-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 100px; padding: 10px 20px;
  font-size: .875rem; font-weight: 500; color: var(--navy);
  transition: all var(--transition);
}
.proximity-badge:hover {
  border-color: var(--teal); transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(93,148,161,.15);
}
.proximity-badge svg { flex-shrink: 0; }
.location-section p { max-width: 600px; margin: 0 auto 32px; color: var(--gray-500); }
.location-map {
  width: 100%; max-width: 800px; height: 400px; margin: 0 auto;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-card); border: 1px solid var(--gray-200);
}
.location-map iframe { width: 100%; height: 100%; border: none; }

/* =============================================
   SERVICES PAGE
   ============================================= */
.services-section { padding: 80px 0; }
.services-section .section-header { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px; max-width: var(--max-w); margin: 0 auto;
}
.service-card {
  padding: 40px; background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); transition: all var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.service-icon {
  width: 56px; height: 56px; border-radius: 8px; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.service-icon svg { width: 24px; height: 24px; stroke: var(--teal); fill: none; stroke-width: 2; }
.service-card h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.25rem; margin-bottom: 12px; }
.service-card p { color: var(--gray-500); line-height: 1.6; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section { padding: 80px 0; }
.contact-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 48px; max-width: var(--max-w); margin: 0 auto;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .875rem; font-weight: 600; color: var(--navy); }
.form-group input, .form-group textarea {
  border: 1px solid var(--gray-200); border-radius: 8px;
  padding: 12px 16px; font-family: var(--font-body); font-size: 1rem;
  color: var(--navy); transition: border-color var(--transition); resize: vertical;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--teal); }

.contact-info-card {
  padding: 40px; background: var(--navy); border-radius: var(--radius); color: var(--white);
}
.contact-info-card h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 24px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-detail svg { width: 24px; height: 24px; stroke: var(--teal); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
.contact-detail p { font-size: .9375rem; line-height: 1.6; }
.contact-detail a { color: var(--teal); }
.contact-detail a:hover { text-decoration: underline; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--navy); color: var(--white); padding: 64px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 40px; max-width: var(--max-w); margin: 0 auto;
  padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; } }

.footer-brand img { height: 60px; margin-bottom: 16px; }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.7); max-width: 300px; line-height: 1.6; }

.footer-links h4 { font-size: .875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-links a { display: block; font-size: .9375rem; color: rgba(255,255,255,.7); margin-bottom: 10px; transition: color var(--transition); }
.footer-links a:hover { color: var(--teal); }

.footer-contact h4 { font-size: .875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.footer-contact-item svg { width: 20px; height: 20px; stroke: var(--white); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: .9375rem; color: rgba(255,255,255,.7); }

.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  max-width: var(--max-w); margin: 0 auto; padding-top: 24px;
  font-size: .8125rem; color: rgba(255,255,255,.5);
}

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(37,211,102,.4); transition: all var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,.5); }
.whatsapp-float svg { width: 32px; height: 32px; fill: var(--white); }
@media (max-width: 767px) { .whatsapp-float { bottom: 90px; } }

/* =============================================
   STICKY MOBILE BOOKING BAR
   ============================================= */
.mobile-booking-bar {
  display: none; position: fixed; bottom: 0; left: 0; width: 100%; z-index: 95;
  background: var(--white); border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 12px rgba(0,0,0,.1);
  padding: 12px 24px;
  align-items: center; justify-content: space-between;
}
@media (max-width: 767px) { .mobile-booking-bar { display: flex; } }
.mobile-booking-bar .price-col { display: flex; flex-direction: column; }
.mobile-booking-bar .price-col small { font-size: .75rem; color: var(--gray-500); }
.mobile-booking-bar .price-col strong { font-size: 1.25rem; font-weight: 700; }
.mobile-booking-bar .price-col strong span { font-size: .75rem; font-weight: 400; color: var(--gray-500); }

/* =============================================
   AOS-STYLE SCROLL ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Stagger children */
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.stagger.visible > *:nth-child(1) { transition-delay: .05s; }
.stagger.visible > *:nth-child(2) { transition-delay: .1s; }
.stagger.visible > *:nth-child(3) { transition-delay: .15s; }
.stagger.visible > *:nth-child(4) { transition-delay: .2s; }
.stagger.visible > *:nth-child(5) { transition-delay: .25s; }
.stagger.visible > *:nth-child(6) { transition-delay: .3s; }
.stagger.visible > * { opacity: 0; transform: translateY(20px); }
.stagger.visible > * { opacity: 1; transform: translateY(0); }

/* =============================================
   PAGE HERO (interior pages)
   ============================================= */
.page-hero {
  background: var(--navy); color: var(--white);
  padding: 140px 24px 80px; text-align: center;
}
@media (min-width: 768px) { .page-hero { padding: 160px 64px 100px; } }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { max-width: 600px; margin: 0 auto; opacity: .85; font-size: 1.125rem; }

/* =============================================
   UTILITIES
   ============================================= */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }
.section-header h2 { margin-bottom: 16px; }

/* =============================================
   SUITE DETAIL PAGE
   ============================================= */
.detail-hero {
  position: relative; min-height: 500px;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
  padding: 0 24px 48px;
}
@media (min-width: 768px) { .detail-hero { padding: 0 64px 64px; min-height: 560px; } }
.detail-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(transparent 30%, rgba(15,23,42,.8));
}
.detail-hero-content {
  position: relative; z-index: 2; color: var(--white);
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  padding-top: 120px;
}
.detail-hero-content h1 { margin-bottom: 8px; }
.detail-hero-content .detail-meta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: .9375rem; opacity: .9;
}
.detail-hero-content .detail-meta .badge {
  background: var(--teal); padding: 6px 16px; border-radius: 4px;
  font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
}

.detail-body { padding: 64px 0; }
.detail-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 48px; max-width: var(--max-w); margin: 0 auto;
}
@media (min-width: 768px) { .detail-grid { grid-template-columns: 1.4fr 1fr; } }

.detail-description { font-size: 1.0625rem; color: var(--gray-500); line-height: 1.8; margin-bottom: 32px; }

.detail-amenities-title {
  font-family: var(--font-body); font-weight: 700; font-size: 1.125rem;
  margin-bottom: 20px; color: var(--navy);
}
.detail-amenities-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 480px) { .detail-amenities-grid { grid-template-columns: 1fr; } }
.amenity-item {
  display: flex; align-items: center; gap: 12px;
  padding: 16px; background: var(--gray-100); border-radius: 8px;
}
.amenity-item svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; stroke-width: 2; flex-shrink: 0; }
.amenity-item span { font-size: .875rem; font-weight: 500; color: var(--navy); }

.detail-sidebar {
  display: flex; flex-direction: column; gap: 24px;
}
.detail-price-card {
  padding: 32px; background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); box-shadow: var(--shadow-card);
}
.detail-price-card .price-label { font-size: .75rem; font-weight: 600; text-transform: uppercase; color: var(--gray-500); margin-bottom: 4px; }
.detail-price-card .price { font-size: 2rem; font-weight: 700; margin-bottom: 4px; }
.detail-price-card .price span { font-size: .875rem; font-weight: 400; color: var(--gray-500); }
.detail-price-card .price-note { font-size: .8125rem; color: var(--gray-500); margin-bottom: 24px; }
.detail-price-card .btn { width: 100%; justify-content: center; padding: 14px; font-size: 1.0625rem; }

.detail-gallery { padding: 0 0 64px; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px; max-width: var(--max-w); margin: 0 auto;
}
.gallery-grid img {
  width: 100%; height: 220px; object-fit: cover;
  border-radius: 8px; transition: all var(--transition);
}
.gallery-grid img:hover { transform: scale(1.02); box-shadow: var(--shadow-hover); }

