:root {
    --red: #C8102E;
    --red-dark: #9B0C22;
    --red-light: #FDECEA;
    --green: #2E7D32;
    --green-light: #E8F5E9;
    --white: #FFFFFF;
    --off-white: #F7F3EF;
    --cream: #FDF8F3;
    --text: #1E1008;
    --text-soft: #6B5B4E;
    --gold: #C4922A;
    --border: #E8E0D8;
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 48px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  }
  .nav-logo { display: flex; align-items: center; gap: 12px; }
  .logo-icon {
    width: 45px; height: 45px;
    background: var(--red); border-radius: 50%; border-color:red; border-size:2px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 20px; font-weight: 900; color: white;
  }
  .logo-text { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; color: var(--text); line-height: 1.1; }
  .logo-text span { display: block; font-size: 10px; font-weight: 400; color: var(--text-soft); letter-spacing: 3px; text-transform: uppercase; font-family: 'DM Sans', sans-serif; }
  .nav-links { display: flex; gap: 28px; list-style: none; }
  .nav-links a { color: var(--text-soft); text-decoration: none; font-size: 14px; letter-spacing: 0.5px; transition: color .2s; }
  .nav-links a:hover { color: var(--red); }
  .nav-cta {
    background: var(--red); color: white;
    padding: 10px 22px; border-radius: 6px;
    text-decoration: none; font-size: 13px; font-weight: 500;
    letter-spacing: 0.5px; transition: background .2s;
  }
  .nav-cta:hover { background: var(--red-dark); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: var(--cream);
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding-top: 76px;
  }
  .hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Motel building photo as background */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('motel-building.jpg') center/cover no-repeat;
  z-index: 0;
}

/* Dark overlay so text stays readable */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Particle video — blend mode removes dark background */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen; /* 👈 this is the magic */
  z-index: 1;
  opacity: 0.85;
}

/* Text on top of everything */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}


  .hero-content {
    position: relative; z-index: 2;
    padding: 0 80px; max-width: 600px;
    animation: fadeUp .8s ease both;
  }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--green-light); color: var(--green);
    font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
    padding: 6px 16px; border-radius: 20px; margin-bottom: 24px;
    font-weight: 500;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(52px, 7vw, 90px);
    font-weight: 900; color: var(--text);
    line-height: 0.95; margin-bottom: 6px;
  }
  .hero h1 em { font-style: italic; color: var(--red); }
  .hero-sub {
    font-size: 13px; color: var(--text-soft); letter-spacing: 3px;
    text-transform: uppercase; margin-bottom: 20px;
  }
  .hero-bar { width: 56px; height: 3px; background: linear-gradient(to right, var(--red), var(--green)); margin-bottom: 22px; }
  .hero p { font-size: 17px; color: var(--red); line-height: 1.75; margin-bottom: 36px; max-width: 460px; }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-red {
    background: var(--red); color: white;
    padding: 14px 30px; border-radius: 6px;
    text-decoration: none; font-size: 14px; font-weight: 500;
    transition: background .2s, transform .2s;
  }
  .btn-red:hover { background: var(--red-dark); transform: translateY(-2px); }
  .btn-ghost {
    border: 2px solid var(--border); color: var(--text);
    padding: 14px 30px; border-radius: 6px;
    text-decoration: none; font-size: 14px; font-weight: 500;
    transition: border-color .2s, transform .2s;
  }
  .btn-ghost:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }

  /* floating contact card */
  .hero-float {
    position: absolute; right: 60px; bottom: 60px;
    background: white; border-radius: 14px;
    padding: 20px 28px;
    box-shadow: 0 8px 40px rgba(200,16,46,0.15);
    border: 1px solid var(--border); z-index: 2;
    animation: fadeUp 1s .3s ease both;
  }
  .hero-float p { font-size: 11px; color: var(--text-soft); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
  .hero-float a { font-size: 20px; font-weight: 700; color: var(--red); text-decoration: none; display: block; margin-bottom: 6px; }
  .hero-float span { font-size: 12px; color: var(--text-soft); }

  /* ── SERVICES STRIP ── */
  .strip {
    background: var(--red);
    display: flex; flex-wrap: wrap;
  }
  .strip-item {
    flex: 1; min-width: 180px;
    padding: 24px 28px;
    display: flex; align-items: center; gap: 14px;
    border-right: 1px solid rgba(255,255,255,0.15);
    color: white; cursor: default;
    transition: background .2s;
  }
  .strip-item:hover { background: var(--red-dark); }
  .strip-item:last-child { border-right: none; }
  .strip-icon {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
  }
  .strip-item h3 { font-size: 14px; font-weight: 600; letter-spacing: 0.5px; }
  .strip-item p { font-size: 12px; opacity: 0.75; margin-top: 2px; }

  /* ── ABOUT ── */
  .about { display: grid; grid-template-columns: 1fr 1fr; }
  .about-text {
    background: var(--white);
    padding: 80px 64px;
    display: flex; flex-direction: column; justify-content: center;
  }
  .sec-label { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--red); font-weight: 500; margin-bottom: 14px; }
  .about-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(30px, 4vw, 48px); font-weight: 900; line-height: 1.1; margin-bottom: 18px; }
  .about-text h2 em { color: var(--green); font-style: italic; }
  .about-text p { font-size: 15px; line-height: 1.8; color: var(--text-soft); margin-bottom: 20px; }
  .stats-row { display: flex; gap: 16px; margin-top: 8px; }
  .stat-box { flex: 1; background: var(--off-white); border-radius: 10px; padding: 18px; text-align: center; border-top: 3px solid var(--red); }
  .stat-box .num { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 900; color: var(--red); display: block; }
  .stat-box .lbl { font-size: 11px; color: var(--text-soft); text-transform: uppercase; letter-spacing: 1px; }
  .about-visual {
    background: var(--green);
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    min-height: 420px;
  }
  .about-visual::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--green) 0%, #1B5E20 100%); }
  .about-pattern { position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 22px); }
  .about-visual-text { position: relative; z-index: 1; text-align: center; padding: 40px; color: white; }
  .about-visual-text .av-icon { font-size: 100px; display: block; margin-bottom: 12px; }
  .about-visual-text h3 { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 900; opacity: 0.2; }
  .about-visual-text p { font-size: 13px; letter-spacing: 3px; text-transform: uppercase; opacity: 0.65; margin-top: 6px; }

  /* ── ROOMS ── */
  .rooms { background: var(--off-white); padding: 80px 60px; }
  .sec-head { text-align: center; margin-bottom: 52px; }
  .sec-head h2 { font-family: 'Playfair Display', serif; font-size: clamp(30px, 4vw, 52px); font-weight: 900; color: var(--text); margin-top: 10px; }
  .sec-head h2 em { color: var(--red); font-style: italic; }
  .rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1080px; margin: 0 auto; }
  .room-card { background: white; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 2px 16px rgba(0,0,0,0.05); transition: transform .3s, box-shadow .3s; }
  .room-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(200,16,46,0.12); }
  .room-img { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 52px; position: relative; }
  .room-img.r1 { background: linear-gradient(135deg, #FFE4E7, #FFCCD2); }
  .room-img.r2 { background: linear-gradient(135deg, #E8F5E9, #C8E6C9); }
  .room-img.r3 { background: linear-gradient(135deg, #FFF3E0, #FFE0B2); }
  .room-badge { position: absolute; top: 12px; right: 12px; background: var(--red); color: white; font-size: 11px; padding: 4px 10px; border-radius: 20px; font-weight: 500; }
  .room-body { padding: 22px; }
  .room-body h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--text); margin-bottom: 6px; }
  .room-body p { font-size: 13px; color: var(--text-soft); line-height: 1.6; margin-bottom: 14px; }
  .room-price { font-size: 20px; font-weight: 700; color: var(--red); display: flex; align-items: baseline; gap: 4px; }
  .room-price span { font-size: 12px; color: var(--text-soft); font-weight: 400; }
  .tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
  .tag { background: var(--off-white); border-radius: 20px; padding: 3px 10px; font-size: 11px; color: var(--text-soft); }

  /* ── BAR ── */
  .bar { display: grid; grid-template-columns: 1fr 1fr; }
  .bar-img {
    background: var(--red);
    min-height: 440px; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .bar-img::after { content: '🍹'; font-size: 220px; position: absolute; right: -30px; bottom: -20px; opacity: 0.08; }
  .bar-img-inner { position: relative; z-index: 1; text-align: center; color: white; padding: 40px; }
  .bar-img-inner span { font-size: 72px; display: block; margin-bottom: 16px; }
  .bar-img-inner h3 { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 900; }
  .bar-img-inner p { font-size: 14px; opacity: 0.8; margin-top: 6px; }
  .bar-text { background: white; padding: 64px; display: flex; flex-direction: column; justify-content: center; }
  .bar-text h2 { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 900; margin-bottom: 14px; }
  .bar-text h2 em { color: var(--red); font-style: italic; }
  .bar-text p { font-size: 15px; line-height: 1.8; color: var(--text-soft); margin-bottom: 20px; }
  .menu-list { display: flex; flex-direction: column; gap: 2px; }
  .menu-row { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text); }
  .menu-row::before { content: '▶'; color: var(--red); font-size: 9px; flex-shrink: 0; }

  /* ── GARDENS ── */
  .gardens { background: var(--green); padding: 80px 60px; position: relative; overflow: hidden; }
  .gardens::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(60deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 28px); }
  .gardens-inner { position: relative; z-index: 1; max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .gardens h2 { font-family: 'Playfair Display', serif; font-size: clamp(34px, 5vw, 58px); font-weight: 900; color: white; line-height: 1.1; margin-bottom: 16px; }
  .gardens > .gardens-inner > div > p { font-size: 15px; color: rgba(255,255,255,0.82); line-height: 1.8; margin-bottom: 24px; }
  .g-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .g-feat { background: rgba(255,255,255,0.1); border-radius: 10px; padding: 18px; border-left: 3px solid rgba(255,255,255,0.25); }
  .g-feat .gi { font-size: 26px; margin-bottom: 6px; display: block; }
  .g-feat h4 { font-size: 14px; color: white; font-weight: 500; }
  .g-feat p { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 3px; }

  /* ── CONTACT ── */
  .contact { background: var(--cream); padding: 80px 60px; text-align: center; }
  .contact h2 { font-family: 'Playfair Display', serif; font-size: clamp(30px, 4vw, 50px); font-weight: 900; margin-bottom: 10px; color: var(--text); }
  .contact h2 em { color: var(--red); font-style: italic; }
  .contact > p { font-size: 15px; color: var(--text-soft); margin-bottom: 44px; }
  .c-cards { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; max-width: 780px; margin: 0 auto 40px; }
  .c-card { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 26px 28px; flex: 1; min-width: 190px; text-align: center; transition: box-shadow .2s; }
  .c-card:hover { box-shadow: 0 8px 30px rgba(200,16,46,0.1); }
  .c-card .ci { font-size: 28px; margin-bottom: 10px; display: block; }
  .c-card h4 { font-size: 10px; color: var(--text-soft); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
  .c-card p, .c-card a { color: var(--text); font-size: 15px; font-weight: 500; text-decoration: none; }
  .c-card a:hover { color: var(--red); }
  .map-wrap {
    max-width: 780px; margin: 0 auto 40px;
    height: 320px; border-radius: 16px; overflow: hidden;
    border: 1px solid var(--border); box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  }
  .wa-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: #25D366; color: white;
    padding: 15px 34px; border-radius: 50px;
    text-decoration: none; font-size: 15px; font-weight: 500;
    transition: opacity .2s, transform .2s;
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  }
  .wa-btn:hover { opacity: 0.9; transform: translateY(-2px); }

  /* ── FOOTER ── */
  footer {
    background: var(--text); padding: 24px 48px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
    border-top: 3px solid var(--red);
  }
  footer p { font-size: 12px; color: rgba(255,255,255,0.4); }
  .f-dots { display: flex; gap: 6px; align-items: center; }
  .f-dot { width: 8px; height: 8px; border-radius: 50%; }
  .f-legal { width: 100%; text-align: center; order: 10; margin-top: 4px; }
  .f-legal a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color .2s; }
  .f-legal a:hover { color: white; }

  /* ── NINA CHATBOT ── */
  .nina-btn {
    position: fixed; bottom: 28px; left: 28px; z-index: 999;
    width: 60px; height: 60px; border-radius: 50%;
    background: linear-gradient(135deg, var(--red), #8B0C1E);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; cursor: pointer;
    box-shadow: 0 4px 20px rgba(200,16,46,0.4);
    border: none; transition: transform .2s;
  }
  .nina-btn:hover { transform: scale(1.08); }
  .nina-label {
    position: fixed; bottom: 96px; left: 28px; z-index: 999;
    background: var(--text); color: white;
    font-size: 12px; font-weight: 500;
    padding: 5px 12px; border-radius: 20px;
    pointer-events: none; white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  }
  .nina-label::after { content: ''; position: absolute; bottom: -5px; left: 16px; width: 10px; height: 10px; background: var(--text); clip-path: polygon(0 0, 100% 0, 50% 100%); }

  .nina-window {
    position: fixed; bottom: 100px; left: 28px; z-index: 998;
    width: 330px; height: 480px;
    background: white; border-radius: 18px;
    box-shadow: 0 12px 60px rgba(0,0,0,0.18);
    display: flex; flex-direction: column; overflow: hidden;
    transform: scale(0.85) translateY(20px); opacity: 0;
    transform-origin: bottom left;
    transition: transform .25s ease, opacity .25s ease;
    pointer-events: none;
    border: 1px solid var(--border);
  }
  .nina-window.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }

  .nina-header {
    background: linear-gradient(135deg, var(--red), #8B0C1E);
    padding: 16px 18px;
    display: flex; align-items: center; gap: 12px;
  }
  .nina-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
  }
  .nina-info h4 { color: white; font-size: 15px; font-weight: 600; }
  .nina-info p { color: rgba(255,255,255,0.75); font-size: 12px; }
  .nina-status { margin-left: auto; display: flex; align-items: center; gap: 5px; color: rgba(255,255,255,0.8); font-size: 11px; }
  .nina-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; }

  .nina-msgs {
    flex: 1; overflow-y: auto; padding: 16px;
    display: flex; flex-direction: column; gap: 10px;
    background: #FAFAFA;
  }
  .nina-msgs::-webkit-scrollbar { width: 4px; }
  .nina-msgs::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

  .msg { max-width: 82%; font-size: 13px; line-height: 1.55; padding: 10px 14px; border-radius: 14px; }
  .msg.bot { background: white; color: var(--text); border: 1px solid var(--border); border-bottom-left-radius: 4px; align-self: flex-start; }
  .msg.user { background: var(--red); color: white; border-bottom-right-radius: 4px; align-self: flex-end; }
  .msg-time { font-size: 10px; color: var(--text-soft); text-align: center; margin: 4px 0; }

  .nina-typing { display: none; align-items: center; gap: 4px; padding: 6px 0; }
  .nina-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--text-soft); animation: bounce .9s infinite; }
  .nina-typing span:nth-child(2) { animation-delay: .15s; }
  .nina-typing span:nth-child(3) { animation-delay: .3s; }
  @keyframes bounce { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-5px)} }

  .nina-quick { padding: 8px 12px; display: flex; gap: 6px; overflow-x: auto; background: white; border-top: 1px solid var(--border); }
  .nina-quick::-webkit-scrollbar { display: none; }
  .q-chip {
    background: var(--red-light); color: var(--red);
    border: 1px solid #f5c2c7; border-radius: 20px;
    padding: 5px 12px; font-size: 12px; white-space: nowrap;
    cursor: pointer; flex-shrink: 0; transition: background .15s;
  }
  .q-chip:hover { background: #f5c2c7; }

  .nina-input-row {
    display: flex; gap: 8px; padding: 10px 12px;
    border-top: 1px solid var(--border); background: white;
  }
  .nina-input {
    flex: 1; border: 1px solid var(--border); border-radius: 20px;
    padding: 9px 14px; font-size: 13px; font-family: 'DM Sans', sans-serif;
    outline: none; resize: none;
  }
  .nina-input:focus { border-color: var(--red); }
  .nina-send {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--red); color: white; border: none;
    cursor: pointer; font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s; flex-shrink: 0; align-self: center;
  }
  .nina-send:hover { background: var(--red-dark); }

  /* ── FLOAT WA ── */
  .float-wa {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform .2s;
  }
  .float-wa:hover { transform: scale(1.1); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── REVIEWS ── */
  .reviews { background: var(--off-white); padding: 80px 60px; text-align: center; }
  .reviews .sec-head { margin-bottom: 32px; }
  .reviews .sec-head h2 { font-family: 'Playfair Display', serif; font-size: clamp(30px, 4vw, 52px); font-weight: 900; color: var(--text); margin-top: 10px; }
  .reviews .sec-head h2 em { color: var(--red); font-style: italic; }

  .reviews-overall {
    display: inline-flex; flex-direction: column; align-items: center;
    background: white; border: 1px solid var(--border);
    border-radius: 14px; padding: 22px 48px; margin-bottom: 52px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  }
  .ov-score { font-family: 'Playfair Display', serif; font-size: 56px; font-weight: 900; color: var(--text); line-height: 1; }
  .ov-stars { color: var(--gold); font-size: 22px; letter-spacing: 3px; margin: 6px 0 4px; }
  .ov-label { font-size: 11px; color: var(--text-soft); letter-spacing: 2px; text-transform: uppercase; }

  .reviews-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; max-width: 1080px; margin: 0 auto;
    text-align: left;
  }
  .review-card {
    background: white; border: 1px solid var(--border);
    border-radius: 14px; padding: 28px;
    transition: box-shadow .2s, transform .2s;
    display: flex; flex-direction: column; gap: 14px;
  }
  .review-card:hover { box-shadow: 0 8px 30px rgba(200,16,46,0.1); transform: translateY(-3px); }
  .rv-stars { color: var(--gold); font-size: 16px; letter-spacing: 3px; }
  .rv-text { font-size: 14px; color: var(--text-soft); line-height: 1.8; flex: 1; font-style: italic; }
  .rv-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 14px; }
  .rv-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--red); color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700; flex-shrink: 0;
  }
  .rv-author h5 { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
  .rv-author span { font-size: 12px; color: var(--text-soft); }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    nav { padding: 14px 20px; }
    .nav-links { display: none; }
    .hero-content { padding: 0 24px; }
    .hero-info-card { display: none; }
    .reviews { padding: 60px 24px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .reviews-overall { padding: 18px 32px; }
    .about, .bar-section { grid-template-columns: 1fr; }
    .about-visual { min-height: 200px; }
    .about-text, .bar-text { padding: 48px 24px; }
    .rooms { padding: 60px 24px; }
    .gardens { padding: 60px 24px; }
    .gardens-inner { grid-template-columns: 1fr; gap: 32px; }
    .contact { padding: 60px 24px; }
    .map-wrap { height: 240px; }
    footer { padding: 24px; flex-direction: column; text-align: center; }
    .stats-row { gap: 12px; }
    .about-text { padding: 48px 24px; }
  }

  /* floating whatsapp */
  .float-wa {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform .2s;
  }

  .float-wa:hover { transform: scale(1.1); }

  /* ── MOBILE NAV TOGGLE ── */
  .nav-toggle {
    display: none; background: none; border: none;
    font-size: 24px; cursor: pointer; color: var(--text);
    padding: 4px;
  }

  /* ── PAGE HERO (inner pages) ── */
  .page-hero {
    min-height: 38vh; background: var(--cream);
    display: flex; align-items: center;
    padding: 120px 64px 64px; position: relative; overflow: hidden;
  }
  .page-hero::after {
    content: ''; position: absolute; inset: 0;
    background: repeating-linear-gradient(45deg, rgba(200,16,46,0.025) 0, rgba(200,16,46,0.025) 1px, transparent 1px, transparent 28px);
  }
  .page-hero-content { position: relative; z-index: 1; }
  .page-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 6vw, 76px); font-weight: 900;
    color: var(--text); line-height: 1; margin: 10px 0 16px;
  }
  .page-hero-content h1 em { color: var(--red); font-style: italic; }
  .page-hero-content p { font-size: 16px; color: var(--text-soft); max-width: 480px; line-height: 1.8; }
  .page-hero-deco {
    position: absolute; right: 80px; top: 50%; transform: translateY(-50%);
    font-size: 200px; opacity: 0.06; z-index: 0; line-height: 1;
  }

  /* ── HOME TEASERS ── */
  .teasers { background: var(--white); padding: 80px 60px; }
  .teasers .sec-head { margin-bottom: 48px; }
  .teasers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1080px; margin: 0 auto; }
  .teaser-card {
    border-radius: 14px; overflow: hidden; border: 1px solid var(--border);
    transition: transform .3s, box-shadow .3s; text-decoration: none;
    display: block; color: inherit;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  }
  .teaser-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(200,16,46,0.12); }
  .teaser-img { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 60px; }
  .teaser-img.t1 { background: linear-gradient(135deg, #FFE4E7, #FFCCD2); }
  .teaser-img.t2 { background: linear-gradient(135deg, #FFF3E0, #FFE0B2); }
  .teaser-img.t3 { background: linear-gradient(135deg, #E8F5E9, #C8E6C9); }
  .teaser-body { padding: 22px; background: white; }
  .teaser-body h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--text); margin-bottom: 6px; }
  .teaser-body p { font-size: 13px; color: var(--text-soft); line-height: 1.65; margin-bottom: 14px; }
  .teaser-link { font-size: 13px; color: var(--red); font-weight: 600; letter-spacing: 0.3px; }

  /* ── ROOMS DETAIL PAGE ── */
  .room-detail { background: var(--white); padding: 80px 60px; }
  .room-detail-item {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    max-width: 1080px; margin: 0 auto 72px; align-items: center;
  }
  .room-detail-item:last-child { margin-bottom: 0; }
  .room-detail-item.reverse .room-detail-img { order: 2; }
  .room-detail-item.reverse .room-detail-text { order: 1; }
  .room-detail-img {
    border-radius: 16px; height: 320px;
    display: flex; align-items: center; justify-content: center;
    font-size: 90px; position: relative; overflow: hidden;
  }
  .room-detail-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .room-detail-img.r1 { background: linear-gradient(135deg, #FFE4E7, #FFCCD2); }
  .room-detail-img.r2 { background: linear-gradient(135deg, #E8F5E9, #C8E6C9); }
  .room-detail-img.r3 { background: linear-gradient(135deg, #FFF3E0, #FFE0B2); }
  .img-placeholder-label {
    position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
    background: rgba(0,0,0,0.5); color: white; font-size: 11px;
    padding: 4px 12px; border-radius: 20px; white-space: nowrap;
    letter-spacing: 1px; font-family: 'DM Sans', sans-serif;
  }
  .rd-badge {
    display: inline-block; background: var(--red); color: white;
    font-size: 11px; padding: 4px 12px; border-radius: 20px;
    margin-bottom: 14px; letter-spacing: 1px; text-transform: uppercase; font-weight: 500;
  }
  .rd-title { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 900; color: var(--text); margin-bottom: 10px; }
  .rd-price { font-size: 30px; font-weight: 700; color: var(--red); margin-bottom: 16px; }
  .rd-price span { font-size: 14px; color: var(--text-soft); font-weight: 400; }
  .rd-desc { font-size: 15px; color: var(--text-soft); line-height: 1.8; margin-bottom: 22px; }
  .rd-amenities { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
  .rd-amenity { background: var(--off-white); border-radius: 20px; padding: 5px 14px; font-size: 12px; color: var(--text); border: 1px solid var(--border); }
  .room-divider { max-width: 1080px; margin: 0 auto 72px; border: none; border-top: 1px solid var(--border); }

  /* Booking banner */
  .book-banner {
    background: var(--red); padding: 56px 60px; text-align: center;
  }
  .book-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 44px); color: white; margin-bottom: 10px; }
  .book-banner p { color: rgba(255,255,255,0.8); font-size: 15px; margin-bottom: 28px; }
  .book-banner .btn-wa {
    display: inline-flex; align-items: center; gap: 10px;
    background: #25D366; color: white; padding: 14px 32px;
    border-radius: 50px; text-decoration: none; font-size: 15px; font-weight: 500;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2); transition: opacity .2s, transform .2s;
    margin: 0 8px;
  }
  .book-banner .btn-wa:hover { opacity: 0.9; transform: translateY(-2px); }
  .book-banner .btn-call {
    display: inline-flex; align-items: center; gap: 10px;
    background: white; color: var(--red); padding: 14px 32px;
    border-radius: 50px; text-decoration: none; font-size: 15px; font-weight: 600;
    transition: opacity .2s, transform .2s; margin: 0 8px;
  }
  .book-banner .btn-call:hover { opacity: 0.9; transform: translateY(-2px); }

  /* ── BAR & RESTAURANT PAGE ── */
  .bar-hero-strip {
    background: var(--red); padding: 32px 60px;
    display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
  }
  .bhs-item { color: white; text-align: center; }
  .bhs-item .bhi { font-size: 28px; margin-bottom: 4px; }
  .bhs-item h4 { font-size: 13px; font-weight: 600; }
  .bhs-item p { font-size: 11px; opacity: 0.75; }

  .menu-section { background: var(--off-white); padding: 80px 60px; }
  .menu-tabs { display: flex; gap: 10px; justify-content: center; margin-bottom: 48px; }
  .menu-tab {
    background: white; border: 1px solid var(--border); border-radius: 8px;
    padding: 10px 28px; font-size: 14px; color: var(--text-soft); cursor: pointer;
    transition: all .2s; font-family: 'DM Sans', sans-serif; font-weight: 500;
  }
  .menu-tab.active, .menu-tab:hover { background: var(--red); color: white; border-color: var(--red); }
  .menu-panel { display: none; max-width: 900px; margin: 0 auto; }
  .menu-panel.active { display: block; }
  .menu-cat { margin-bottom: 36px; }
  .menu-cat h3 {
    font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700;
    color: var(--text); margin-bottom: 14px; padding-bottom: 8px;
    border-bottom: 2px solid var(--red); display: inline-block;
  }
  .menu-items-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .menu-item {
    background: white; border-radius: 10px; padding: 14px 18px;
    display: flex; justify-content: space-between; align-items: flex-start;
    border: 1px solid var(--border);
  }
  .mi-left { flex: 1; }
  .mi-name { font-size: 14px; font-weight: 500; color: var(--text); }
  .mi-desc { font-size: 12px; color: var(--text-soft); margin-top: 2px; }
  .mi-price { font-size: 14px; font-weight: 700; color: var(--red); flex-shrink: 0; margin-left: 12px; white-space: nowrap; }

  /* ── GALLERY PAGE ── */
  .gallery-section { background: var(--white); padding: 80px 60px; }
  .gallery-filters { display: flex; gap: 10px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
  .gf-btn {
    background: var(--off-white); border: 1px solid var(--border); border-radius: 20px;
    padding: 8px 20px; font-size: 13px; color: var(--text-soft); cursor: pointer;
    transition: all .2s; font-family: 'DM Sans', sans-serif; border: 1px solid var(--border);
  }
  .gf-btn.active, .gf-btn:hover { background: var(--red); color: white; border-color: var(--red); }
  .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 1080px; margin: 0 auto; }
  .g-item {
    border-radius: 12px; overflow: hidden; position: relative;
    aspect-ratio: 4/3; cursor: pointer;
  }
  .g-item.wide { grid-column: span 2; }
  .g-item img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; transition: transform .35s;
  }
  .g-item:hover img { transform: scale(1.04); }
  .g-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 8px; transition: transform .35s;
  }
  .g-item:hover .g-placeholder { transform: scale(1.04); }
  .g-placeholder .g-icon { font-size: 36px; opacity: 0.5; }
  .g-placeholder .g-lbl {
    font-size: 11px; color: rgba(0,0,0,0.35); letter-spacing: 2px;
    text-transform: uppercase; font-family: 'DM Sans', sans-serif;
  }
  .g-overlay {
    position: absolute; inset: 0; background: rgba(200,16,46,0.55);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .3s; color: white; font-size: 26px;
  }
  .g-item:hover .g-overlay { opacity: 1; }
  .g-cat-label {
    position: absolute; bottom: 10px; left: 10px;
    background: rgba(0,0,0,0.5); color: white; font-size: 10px;
    padding: 3px 10px; border-radius: 20px; letter-spacing: 1px;
    text-transform: uppercase;
  }
  .gallery-note { text-align: center; margin-top: 36px; color: var(--text-soft); font-size: 13px; }

  /* ── RESPONSIVE (additional) ── */
  @media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-links {
      display: none; position: absolute; top: 100%; left: 0; width: 100%;
      background: white; flex-direction: column; padding: 16px 24px; gap: 16px;
      border-bottom: 1px solid var(--border); box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      z-index: 99;
    }
    .nav-links.open { display: flex; }
    .nav-cta { display: none; }
    .page-hero { padding: 100px 24px 48px; }
    .page-hero-deco { display: none; }
    .teasers { padding: 60px 24px; }
    .teasers-grid { grid-template-columns: 1fr; }
    .room-detail { padding: 60px 24px; }
    .room-detail-item { grid-template-columns: 1fr; gap: 24px; }
    .room-detail-item.reverse .room-detail-img,
    .room-detail-item.reverse .room-detail-text { order: unset; }
    .book-banner { padding: 48px 24px; }
    .menu-section { padding: 60px 24px; }
    .menu-items-grid { grid-template-columns: 1fr; }
    .gallery-section { padding: 48px 20px; }
    .gallery-grid { grid-template-columns: 1fr; gap: 16px; }
    .g-item, .g-item.wide { grid-column: span 1; aspect-ratio: 16/11; }
    .g-placeholder .g-icon { font-size: 48px; }
    .g-placeholder .g-lbl { font-size: 13px; }
    .gallery-filters { gap: 8px; }
    .gf-btn { padding: 7px 16px; font-size: 12.5px; }
    .bar-hero-strip { padding: 24px; gap: 24px; }
  }

  /* ── LIGHTBOX ── */
  .lightbox {
    position: fixed; inset: 0; background: rgba(0,0,0,0.93);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999; opacity: 0; pointer-events: none; transition: opacity .3s;
  }
  .lightbox.open { opacity: 1; pointer-events: all; }
  .lightbox-inner {
    position: relative; max-width: 820px; width: 90%; max-height: 82vh;
    border-radius: 16px; overflow: hidden;
    transform: scale(0.9); transition: transform .3s;
  }
  .lightbox.open .lightbox-inner { transform: scale(1); }
  .lightbox-inner img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .lb-placeholder {
    width: 100%; min-height: 420px;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  }
  .lb-placeholder .lb-icon { font-size: 72px; opacity: 0.5; }
  .lb-placeholder .lb-txt { font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 2px; text-transform: uppercase; }
  .lb-close {
    position: absolute; top: 12px; right: 12px; background: rgba(255,255,255,0.15);
    border: none; color: white; width: 36px; height: 36px; border-radius: 50%;
    font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background .2s; z-index: 1;
  }
  .lb-close:hover { background: rgba(255,255,255,0.3); }
  .lb-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(0,0,0,0.55); color: white; padding: 12px 20px;
    font-size: 13px; font-family: 'DM Sans', sans-serif; letter-spacing: 0.5px;
  }
  .lb-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.12); border: none; color: white;
    width: 42px; height: 42px; border-radius: 50%; font-size: 20px;
    cursor: pointer; transition: background .2s; display: flex; align-items: center; justify-content: center;
  }
  .lb-nav:hover { background: rgba(255,255,255,0.25); }
  .lb-prev { left: -60px; }
  .lb-next { right: -60px; }

  /* ── REVIEW FORM ── */
  .review-form-wrap {
    background: var(--off-white); border-top: 1px solid var(--border);
    padding: 64px 60px; text-align: center;
  }
  .review-form-wrap .sec-head { margin-bottom: 36px; }
  .rf-inner { max-width: 560px; margin: 0 auto; }
  .rf-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 20px; padding: 36px 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    text-align: left;
  }
  .rf-rating-label {
    text-align: center; font-size: 13px; color: var(--text-soft);
    letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; font-weight: 500;
  }
  .star-picker { display: flex; gap: 10px; justify-content: center; margin-bottom: 8px; }
  .star-picker .sp-star {
    font-size: 40px; cursor: pointer; color: #e0e0e0;
    transition: color .12s, transform .12s; user-select: none; line-height: 1;
  }
  .star-picker .sp-star:hover { transform: scale(1.15); }
  .star-picker .sp-star.lit { color: var(--gold); }
  .rf-rating-text {
    text-align: center; font-size: 14px; font-weight: 600; color: var(--text);
    margin-bottom: 22px; min-height: 20px;
  }
  .rf-field { margin-bottom: 16px; }
  .rf-field label {
    display: block; font-size: 13px; font-weight: 600; color: var(--text);
    margin-bottom: 6px; letter-spacing: 0.2px;
  }
  .rf-field input, .rf-field textarea {
    width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 12px;
    font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text);
    background: var(--off-white); outline: none; transition: border-color .2s, background .2s, box-shadow .2s;
    box-sizing: border-box;
  }
  .rf-field input::placeholder, .rf-field textarea::placeholder { color: #b0b0b0; }
  .rf-field input:focus, .rf-field textarea:focus {
    border-color: var(--red); background: white;
    box-shadow: 0 0 0 3px rgba(200,16,46,0.08);
  }
  .rf-field textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
  .rf-submit {
    width: 100%; background: var(--red); color: white; border: none;
    padding: 15px; border-radius: 12px; font-size: 15px; font-weight: 600;
    cursor: pointer; font-family: 'DM Sans', sans-serif; margin-top: 8px;
    letter-spacing: 0.3px; transition: opacity .2s, transform .15s;
    box-shadow: 0 4px 16px rgba(200,16,46,0.25);
  }
  .rf-submit:hover { opacity: 0.92; transform: translateY(-1px); }
  .rf-submit:active { transform: translateY(0); }
  .rf-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }
  .rf-msg {
    text-align: center; font-size: 13.5px; margin-top: 14px;
    padding: 10px 14px; border-radius: 10px; font-weight: 500; display: none;
  }
  .rf-msg.ok { color: #2e7d32; background: #E8F5E9; display: block; }
  .rf-msg.err { color: var(--red); background: #FFEBEE; display: block; }

  /* ── COMING SOON ── */
  .coming-soon { background: var(--cream); padding: 80px 60px; text-align: center; }
  .coming-soon .sec-head { margin-bottom: 48px; }
  .cs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 720px; margin: 0 auto; }
  .cs-card {
    background: white; border: 1px solid var(--border); border-radius: 16px;
    padding: 40px 28px; position: relative; overflow: hidden;
  }
  .cs-card::before {
    content: 'COMING SOON'; position: absolute; top: 18px; right: -28px;
    background: var(--red); color: white; font-size: 9px; letter-spacing: 2px;
    padding: 5px 36px; transform: rotate(35deg); font-weight: 700;
  }
  .cs-icon { font-size: 52px; margin-bottom: 14px; }
  .cs-card h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--text); margin-bottom: 8px; }
  .cs-card p { font-size: 14px; color: var(--text-soft); line-height: 1.7; }

  /* extra room gradient */
  .room-detail-img.r4 { background: linear-gradient(135deg, #EDE7F6, #D1C4E9); }

  @media (max-width: 768px) {
    .review-form-wrap { padding: 48px 24px; }
    .rf-card { padding: 28px 20px; border-radius: 16px; }
    .star-picker .sp-star { font-size: 36px; }
    .coming-soon { padding: 60px 24px; }
    .cs-grid { grid-template-columns: 1fr; }
    .lb-nav { display: none; }
  }

  /* ── BREAKFAST BADGE ── */
  .breakfast-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: #FFF8E1; color: #E65100;
    border: 1px solid #FFE082; border-radius: 20px;
    padding: 5px 14px; font-size: 12px; font-weight: 600;
    margin-bottom: 16px; letter-spacing: 0.3px;
  }

  /* ── OUTLINE BUTTON ── */
  .btn-outline-red {
    display: inline-block; padding: 12px 32px;
    border: 2px solid var(--red); color: var(--red);
    border-radius: 50px; text-decoration: none;
    font-size: 14px; font-weight: 600; letter-spacing: 0.3px;
    transition: background .2s, color .2s;
  }
  .btn-outline-red:hover { background: var(--red); color: white; }

  /* ── BOOKING FORM ── */
  .booking-form-section {
    background: var(--cream); padding: 80px 60px; text-align: center;
  }
  .booking-form-section .sec-head { margin-bottom: 40px; }
  .booking-form-section .sec-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4vw, 52px); font-weight: 900; color: var(--text); margin: 10px 0 12px;
  }
  .booking-form-section .sec-head h2 em { color: var(--red); font-style: italic; }
  .bf-card {
    max-width: 680px; margin: 0 auto;
    background: white; border-radius: 20px;
    padding: 36px 32px; border: 1px solid var(--border);
    box-shadow: 0 8px 40px rgba(0,0,0,0.07); text-align: left;
  }
  .bf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .bf-field { display: flex; flex-direction: column; gap: 6px; }
  .bf-field label { font-size: 13px; font-weight: 600; color: var(--text); }
  .bf-field input, .bf-field select, .bf-field textarea {
    padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 12px;
    font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text);
    background: var(--off-white); outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
    box-sizing: border-box; width: 100%;
  }
  .bf-field input:focus, .bf-field select:focus, .bf-field textarea:focus {
    border-color: var(--red); background: white;
    box-shadow: 0 0 0 3px rgba(200,16,46,0.08);
  }
  .bf-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
  .bf-field input[type="date"] { color-scheme: light; }
  .bf-field textarea { resize: vertical; min-height: 80px; line-height: 1.6; }
  .bf-submit {
    width: 100%; background: #25D366; color: white; border: none;
    padding: 16px; border-radius: 12px; font-size: 15px; font-weight: 600;
    cursor: pointer; font-family: 'DM Sans', sans-serif; margin-top: 16px;
    letter-spacing: 0.3px; transition: opacity .2s, transform .15s;
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
    display: flex; align-items: center; justify-content: center; gap: 8px;
  }
  .bf-submit:hover { opacity: 0.92; transform: translateY(-1px); }
  .bf-submit:active { transform: translateY(0); }
  .bf-note {
    text-align: center; font-size: 12px; color: var(--text-soft);
    margin-top: 10px; margin-bottom: 0;
  }
  .bf-msg {
    font-size: 13.5px; padding: 10px 14px; border-radius: 10px;
    font-weight: 500; display: none; margin-top: 12px; text-align: center;
  }
  .bf-msg.ok { color: #2e7d32; background: #E8F5E9; display: block; }
  .bf-msg.err { color: var(--red); background: #FFEBEE; display: block; }

  @media (max-width: 768px) {
    .booking-form-section { padding: 60px 24px; }
    .bf-card { padding: 24px 18px; border-radius: 16px; }
    .bf-grid { grid-template-columns: 1fr; gap: 14px; }
  }
