/* Pretty inline notice below the contact form */
.submit-note{
    display:flex;
    align-items:flex-start;
    gap:.6rem;
    padding:.75rem 1rem;
    border-radius:.75rem;
    color:#f9fafb;                               /* light text */
    background:linear-gradient(180deg,
    rgba(253,126,20,.20),
    rgba(253,126,20,.10));           /* warm orange glaze */
    border:1px solid rgba(253,126,20,.35);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.08),
    0 8px 20px rgba(2,6,23,.18);
    backdrop-filter: blur(2px);
}
.submit-note .bi{
    font-size:1.1rem;
    line-height:1;
    margin-top:.15rem;
    color:#ffd28a;                                /* soft amber icon */
    flex:0 0 auto;
}


/* Pretty one-line notice (reservation page) */
.reserve-inline-note{
    position: relative;
    margin: 12px 0 0;
    padding: .85rem 1rem .9rem 1.1rem;
    border-radius: 12px;
    background: rgba(255,255,255,.95);
    color: #0b1220;
    border: 1px solid rgba(15,23,42,.10);
    box-shadow: 0 10px 24px rgba(2,6,23,.20), inset 0 1px 0 rgba(255,255,255,.75);
    font-size: .98rem;
    line-height: 1.5;
    z-index: 1;
}
.reserve-inline-note::before{
    /* left accent bar */
    content:"";
    position:absolute;
    left:0; top:0; bottom:0;
    width:4px;
    border-radius:12px 0 0 12px;
    background:#fd7e14; /* Amano amber */
}
.reserve-inline-note b{ font-weight: 700; }




