 :root {
    --accent:       #ff5b69;
    --accent-dark:  #e04050;
    --accent-pale:  #fff0f1;
    --accent-light: #ffe0e3;
    --navy:         #1a1f36;
    --sb-text:      #2d3250;
    --sb-muted:     #6b7280;
    --bg-soft:      #f9fafb;
    --border-col:   #e8eaed;
    --border-soft:  #f0f0f0;
  }

  html { scroll-behavior: smooth; }
  body {  color: var(--sb-text); -webkit-font-smoothing: antialiased; }

  h1 {  font-weight: 700; color: #fff; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; }
  h1 em { font-style: italic; color: var(--accent); }
  h2 {  font-weight: 700; color: var(--navy); font-size: clamp(1.6rem, 2.5vw, 2.2rem); line-height: 1.2; }
  h2 em { font-style: italic; color: var(--accent); }
  h3 { font-weight: 700; color: var(--navy); font-size: 15px; }

  .section-tag {
    display: inline-block; font-size: 11px; font-weight: 800;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 10px;
  }

  /* ── HERO ── */
  .hero {
    position: relative; background: var(--navy);
    padding: 90px 0 80px; overflow: hidden;
  }
  .hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 85% 50%, rgba(255,91,105,0.12) 0%, transparent 65%);
    pointer-events: none;
  }
  .hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 70px; background: #fff;
    clip-path: ellipse(55% 100% at 50% 100%);
  }
  .hero-content { position: relative; z-index: 1; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,91,105,0.15); border: 1px solid rgba(255,91,105,0.35);
    color: #ff8a94; font-size: 12px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase; border-radius: 100px;
  }
  .hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
  .hero-lead { font-size: 17px; color: rgba(255,255,255,0.72); line-height: 1.75; }

  /* ── QUICK STATS BAR ── */
  .quick-stat { text-align: center; }
  .quick-stat-number {  font-size: 2rem; font-weight: 700; color: var(--accent); line-height: 1; display: block; }
  .quick-stat-label { font-size: 12px; font-weight: 600; color: var(--sb-muted); }

  /* ── BUTTONS ── */
  .btn-accent {
    background: var(--accent); color: #fff; font-weight: 700;
    
    box-shadow: 0 4px 16px rgba(255,91,105,0.3);
    transition: background 0.2s, transform 0.15s; border: none;
  }
  .btn-accent:hover { background: var(--accent-dark); color: #fff; transform: translateY(-1px); }

  .btn-outline-accent {
    border: 2px solid var(--border-col); color: var(--sb-text);
    font-weight: 700;  background: transparent;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
  }
  .btn-outline-accent:hover { border-color: var(--accent-light); background: var(--accent-pale); color: var(--accent); }

  .btn-white-outline {
    border: 2px solid rgba(255,255,255,0.35); color: rgba(255,255,255,0.9);
    font-weight: 600; 
    transition: border-color 0.2s, background 0.2s;
  }
  .btn-white-outline:hover { border-color: rgba(255,255,255,0.7); color: #fff; background: rgba(255,255,255,0.08); }

  /* ── PRICING CARDS ── */
  .pricing-card {
    background: #fff; border: 1.5px solid var(--border-col);
    border-radius: 16px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  }
  .pricing-card:hover { border-color: var(--accent-light); box-shadow: 0 8px 32px rgba(255,91,105,0.1); transform: translateY(-4px); }
  .pricing-card.featured { border-color: var(--accent); box-shadow: 0 8px 32px rgba(255,91,105,0.15); }

  .featured-badge {
    position: absolute; top: 0; right: 0;
    background: var(--accent); color: #fff;
    font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 5px 14px; border-radius: 0 14px 0 12px;
  }
  .plan-name { font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
  .price-amount {  font-size: 3rem; font-weight: 700; color: var(--navy); line-height: 1; }
  .price-currency { font-size: 1rem; font-weight: 700; color: var(--sb-muted); vertical-align: top; padding-top: 8px; display: inline-block; }
  .price-period { font-size: 13px; font-weight: 600; color: var(--sb-muted); }
  .save-badge { display: inline-block; background: #dcfce7; color: #166534; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px; }

  .feature-list { list-style: none; padding: 0; margin: 0; }
  .feature-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; color: var(--sb-muted);
    padding: 7px 0; border-bottom: 1px solid var(--border-soft); line-height: 1.4;
  }
  .feature-list li:last-child { border-bottom: none; }
  .feature-list li .check {
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--accent-pale); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; margin-top: 1px;
  }
  .feature-list li .check::after { content: '✓'; font-size: 11px; font-weight: 800; color: var(--accent); }
  .feature-list li strong { color: var(--sb-text); }

  /* ── USE CASE CARDS ── */
  .use-card {
    background: #fff; border: 1.5px solid var(--border-col);
    border-radius: 14px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  }
  .use-card:hover { border-color: var(--accent-light); box-shadow: 0 4px 20px rgba(255,91,105,0.08); transform: translateY(-3px); }
  .use-icon { width: 48px; height: 48px; background: var(--accent-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }

  /* ── AMENITY GRID ── */
  .amenity-card {
    background: #fff; border: 1.5px solid var(--border-col);
    border-radius: 14px; text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .amenity-card:hover { border-color: var(--accent-light); box-shadow: 0 4px 16px rgba(255,91,105,0.07); }
  .amenity-icon { font-size: 28px; margin-bottom: 10px; display: block; }

  /* ── BOOKING FORM ── */
  .booking-card { background: var(--bg-soft); border: 1px solid var(--border-col); border-radius: 16px; position: sticky; top: 24px; }
  .form-control-sb { border: 1.5px solid var(--border-col); border-radius: 8px;  font-size: 14px; padding: 10px 14px; transition: border-color 0.2s; }
  .form-control-sb:focus { border-color: var(--accent); box-shadow: none; outline: none; }
  .form-label-sb { font-size: 13px; font-weight: 700; color: var(--sb-text); margin-bottom: 6px; }

  /* ── ROOM PHOTO ── */
  .room-photo { border-radius: 16px; overflow: hidden; }
  .room-photo img { width: 100%; object-fit: cover; display: block; }

  /* ── HOW IT WORKS ── */
  .step-num {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--accent); color: #fff;
    font-size: 16px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .step-connector { width: 2px; background: var(--accent-light); flex: 1; min-height: 32px; margin: 4px auto; }

  /* ── FAQ ── */
  .faq-item { border-bottom: 1px solid var(--border-col); }
  .faq-question { cursor: pointer; }
  .faq-toggle {
    width: 28px; height: 28px; background: var(--accent-pale);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 20px; line-height: 1; color: var(--accent);
    transition: background 0.2s, transform 0.3s;
  }
  .faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--accent-light); }
  .faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
  .faq-item.open .faq-answer { max-height: 300px; }
  .faq-answer p { font-size: 14px; color: var(--sb-muted); line-height: 1.8; }

  /* ── GALLERY ── */
  .gallery-main img, .gallery-thumb {
    transition: opacity 0.2s, transform 0.2s;
  }
  .gallery-main img:hover, .gallery-thumb:hover {
    opacity: 0.88; transform: scale(1.01);
  }
  #lightbox { display: none; }
  #lightbox.active { display: flex !important; }

  .bg-soft { background: var(--bg-soft); }

  /* ── PRICING GLANCE CARD ── */
  .pricing-glance-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
  }
  .pricing-glance-title {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .pricing-glance-room-divider {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .pricing-glance-room-label {
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .pricing-glance-price {
    
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
  }
  .pricing-glance-price-accent {
    
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
  }
  .pricing-glance-period {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
  }
  .pricing-glance-feature {
    color: rgba(255,255,255,0.75);
    font-size: 13px;
  }
  .pricing-glance-feature-check {
    color: var(--accent);
  }

  /* ── ROOM SIZE SECTION HEADERS ── */
  .room-size-header {
    background: var(--accent-pale);
    border: 1.5px solid var(--accent-light);
    border-radius: 8px;
    padding: 8px 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .room-size-header-large {
    background: var(--navy);
    border: 1.5px solid var(--navy);
    border-radius: 8px;
    padding: 8px 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .room-size-icon {
    font-size: 18px;
  }
  .room-size-title {
    font-size: 11px !important;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
  }
  .room-size-title-light {
    font-size: 11px !important;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
  }
  .room-size-capacity {
    font-size: 13px;
    font-weight: 600;
    color: var(--sb-text);
  }
  .room-size-capacity-light {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
  }
  .room-size-divider {
    height: 1px;
    flex: 1;
    background: var(--border-col);
  }

  /* ── INLINE HELPER CLASSES ── */
  .max-width-460 { max-width: 460px; }
  .max-width-500 { max-width: 500px; }
  .font-size-11 { font-size: 11px !important; }
  .font-size-12 { font-size: 12px !important; }
  .font-size-13 { font-size: 13px !important; }
  .font-size-14 { font-size: 14px !important; }
  .font-size-15 { font-size: 15px !important; }
  .font-size-17 { font-size: 17px !important; }
  .font-size-18 { font-size: 18px !important; }
  .link-accent {
    color: var(--accent);
  }
  .sticky-top-40 {
    top: 40px;
  }

  @keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
  .fade-up   { animation: fadeUp 0.6s ease both; }
  .fade-up-2 { animation: fadeUp 0.6s ease 0.1s both; }
  .fade-up-3 { animation: fadeUp 0.6s ease 0.2s both; }