:root{
    --bg: #f6f4ee;
    --surface: #ffffff;
    --surface-soft: #f1ede3;
    --text: #213022;
    --muted: #5e6b5d;
    --olive: #556b2f;
    --olive-dark: #3f5221;
    --gold: #d8bf7a;
    --shadow: 0 12px 30px rgba(0,0,0,.10);
    --shadow-soft: 0 8px 20px rgba(0,0,0,.08);
    --radius: 22px;
    --max: 1160px;
    --header-height: 84px;
  }
  
  *{ box-sizing: border-box; }
  html{ scroll-behavior: smooth; }
  
  body{
    margin: 0;
    font-family: 'Lato', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: url("/images/palms.jpg") center top / cover fixed no-repeat;
    overflow-x: hidden;
  }
  body.fireworks {background:url("/images/1.jpg") center top / cover fixed no-repeat;
    overflow-x: hidden;}
  body.menu {background:url("/images/small_slider_bg.jpg") center top / cover fixed no-repeat;
    overflow-x: hidden;}   
  body.gallery {background:url("/images/11.jpg") center top / cover fixed no-repeat;
      overflow-x: hidden;}   
  img{
    display: block;
    max-width: 100%;
    height: auto;
  }
  
  a{
    color: inherit;
    text-decoration: none;
  }
  
  .container{
    width: min(var(--max), calc(100% - 2rem));
    margin-inline: auto;
  }
  
  .section{
    padding: clamp(2.75rem, 5vw, 5rem) 0;
  }
  
  .card{
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
  }
  
  .site-header{
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 18px rgba(0,0,0,.08);
  }
  
  .header-inner{
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .75rem 0;
  }
  
  .brand img{
    height: 58px;
    width: auto;
    object-fit: contain;
  }
  
  .nav-toggle{
    display: none;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 12px;
    background: var(--surface-soft);
    color: var(--text);
    cursor: pointer;
    font-size: 1.2rem;
  }
  
  .site-nav{
    display: flex;
    align-items: center;
  }
  
  .site-nav ul{
    display: flex;
    list-style: none;
    gap: .35rem;
    margin: 0;
    padding: 0;
  }
  
  .site-nav a{
    display: block;
    padding: .85rem 1rem;
    border-radius: 10px;
    font-weight: 800;
    transition: .2s ease;
  }
  
  .site-nav a:hover,
  .site-nav a.active{
    background: var(--surface-soft);
    color: var(--olive);
  }
  
  .section-title{
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    font-weight: 900;
    color:gold;
  }
  
  .section-kicker{
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--olive);
    color:gold !important;
    font-weight: 900;
    margin-bottom: .75rem;
    font-size: .92rem;
  }
  
  .quick-actions{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .85rem;
    margin-top: 1.5rem;
  }
  
  .quick-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: .85rem 1.15rem;
    border-radius: 12px;
    font-weight: 900;
    transition: .25s ease;
  }
  
  .quick-btn-primary{
    background: var(--olive);
    color: #fff;
  }
  
  .quick-btn-primary:hover{
    background: var(--olive-dark);
    transform: translateY(-1px);
  }
  
  .quick-btn-soft{
    background: var(--surface-soft);
    color: var(--text);
  }
  
  .quick-btn-soft:hover{
    background: #e8e4da;
  }
  
  @media (max-width: 900px){
    body{
      background-attachment: scroll;
    }
  
    .nav-toggle{
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
  
    .site-nav{
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: #fff;
      box-shadow: 0 14px 30px rgba(0,0,0,.12);
      padding: 0 1rem 1rem;
      display: none;
    }
  
    .site-nav.open{
      display: block;
    }
  
    .site-nav ul{
      flex-direction: column;
      gap: .35rem;
    }
  
    .site-nav a{
      background: var(--surface-soft);
    }
  }
  
  @media (max-width: 700px){
    :root{
      --header-height: 76px;
    }
  
    .brand img{
      height: 48px;
    }
  
    .section{
      padding: 2.75rem 0;
    }
  
    .quick-actions{
      flex-direction: column;
    }
  
    .quick-btn{
      width: 100%;
    }
  }
  .site-footer{
    background: #1f241d;
    color: #fff;
    padding: 2.25rem 0;
    margin-top: 3rem;
  }
  
  .footer-grid{
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: start;
  }
  
  .footer-social{
    display: flex;
    gap: .85rem;
    flex-wrap: wrap;
    margin-top: 1rem;
  }
  
  .footer-social a{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.08);
    color: #7fc7ff;
    font-size: 1.1rem;
    transition: .2s ease;
  }
  
  .footer-social a:hover{
    color: #0be3e3;
    background: rgba(255,255,255,.14);
  }
  
  .contact-block h4{
    margin: 0 0 .75rem;
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: .05em;
  }
  
  .contact-block address{
    font-style: normal;
    line-height: 1.7;
    color: rgba(255,255,255,.86);
    margin: .75rem 0 0;
  }
  
  .footer-bottom{
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.75);
    font-size: .95rem;
  }
  
  #back-to-top{
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--olive);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1100;
    box-shadow: 0 8px 18px rgba(0,0,0,.25);
  }
  
  #back-to-top:hover{
    background: var(--olive-dark);
  }
  
  @media (max-width: 900px){
    .footer-grid{
      grid-template-columns: 1fr;
    }
  
    .footer-social{
      justify-content: center;
    }
  
    .contact-block{
      text-align: center;
    }
  }
  /* MOBILE FIX — disable fixed background for small devices */
@media (max-width: 962px){

  body{
    background: url("/images/palms.jpg") center top / cover no-repeat;
    background-attachment: scroll;
  }

  body.fireworks{
    background: url("/images/1.jpg") center top / cover no-repeat;
    background-attachment: scroll;
  }

  body.menu{
    background: url("/images/8.jpg") center top / cover no-repeat;
    background-attachment: scroll;
  }

  body.gallery{
    background: url("/bkgrnds/gg-21.jpg") center top / cover no-repeat;
    background-attachment: scroll;
  }
section.menu-hero {display:none;}
div.notice-wrap {margin-top:20px;background:red;}
}