
  @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Roboto:ital,wdth,wght@0,75..100,100..900;1,75..100,100..900&display=swap');
  
  :root{
    --navy:#1c3144;
    --navy-deep:#1B2A4A;
    --cream:#f7f5f0;
    --sand:#eef1ec;
    --light-gold:#C9A055;
    --gold:#D4A548;
    --ink:#28323a;
    --muted:#6b7580;
    --line:#e2e2dc;
    --white:#fff;
  }
  *{box-sizing:border-box;margin:0;padding:0;}
  body{
    font-family:'Jost',sans-serif;
    color:var(--ink);
    background:var(--cream);
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,.serif{
    font-family:'Cormorant Garamond', serif;
    font-weight:500;
  }
  a{text-decoration:none;color:inherit; cursor: pointer;}
  ul{list-style:none;}
  img{max-width:100%;display:block;}

  html{
    scroll-behavior: smooth;
  
  }

   .section__eyebrow{
    font-size:.72rem;
    letter-spacing:3px;
    color:var(--light-gold);
    font-weight:600;
    text-transform:uppercase;
    margin-bottom:14px;
  }

  .section__title{
    font-size:2.7rem;
    margin-bottom:44px;
    color:var(--navy-deep);
  }

 

  /* ---------- HEADER ---------- */
  header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 48px;
    background:var(--sand);
    border-bottom:1px solid var(--line);
    position:relative;
    z-index:20;
  }
  .brand{
    display:flex;
    align-items:center;
    gap:10px;
    font-family:'Cormorant Garamond', serif;
    font-size:1.35rem;
    font-weight:600;
    color:var(--navy);
    letter-spacing:.3px;
  }
   .logo{
    width:90px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .nav__link--list{
    display:flex;
    justify-content: center;
    align-items: center;
    gap:38px;
    font-size:.78rem;
    letter-spacing:1.5px;
    font-weight:500;
    color:var(--navy);
  }
  .nav__link--anchor{
    position:relative;
    padding-bottom:4px;
    transition:color .2s ease;
  }

  .nav__title{
    color: #1B2A4A;
    font-size: 1.5rem;
  }
  .nav__link--anchor:hover{
    color:var(--gold);
  }
 
  .find__us--btn{
    background:var(--light-gold);
    color:#1B2A4A;
    font-size:.75rem;
    font-weight:600;
    letter-spacing:1.2px;
    padding:11px 26px;
    border-radius:30px;
    border:none;
    cursor:pointer;
    transition:transform .18s ease, background .18s ease, box-shadow .18s ease;
    box-shadow:0 2px 6px rgba(201,138,68,.25);
  }
  .find__us--btn:hover{
    background:var(--gold);
    transform:translateY(-1px);
    box-shadow:0 6px 14px rgba(201,138,68,.35);
  }

  /* ---------- MAIN ---------- */
  .main{
    position:relative;
    min-height:600px;
    display:flex;
    align-items:center;
    overflow:hidden;
  }

  .main__image{
    position:absolute; 
    inset:0; 
    width:100%;
    height:100%; 
    object-fit:cover; 
    z-index:0;
  }
  
  .main__content{
    position:relative;
    z-index:2;
    padding:70px 48px;
    max-width:620px;
    color:#fdfbf6;
    
  }
  .eyebrow{
    font-size:.72rem;
    letter-spacing:3px;
    font-weight:600;
    color:var(--navy);
    margin-bottom:18px;
    text-transform:uppercase;
    opacity:.95;
    
  }
  .main__title{
    font-size:4rem;
    line-height:1.08;
    /* color:#B8E0DC; */
    color:#0793a5;
    color:#027b8b;
    font-weight:700;
    margin-bottom:22px;
    text-shadow:0 2px 18px rgba(0,0,0,.25);
    
  }
  .main__para{
    font-size:1rem;
    line-height:1.65;
    /* color:#eae7de; */
    color: var(--navy-deep);
    max-width:460px;
    margin-bottom:34px;
  }
  .today__card{
    background:rgba(28,40,50,.55);
    backdrop-filter:blur(6px);
    border:1px solid rgba(255,255,255,.12);
    border-radius:10px;
    padding:22px 26px;
    max-width:460px;
  }
  .eyebrow{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:12px;
    font-size:.68rem;
  }
  .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clay);
  display: inline-block;
  animation: pulse 1.5s infinite;
 
}

  @keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 4px rgba(224, 164, 95, 0.25);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(224, 164, 95, 0.05);
  }
}
  .card__title{
    color:#fff;
    font-size:1.6rem;
    font-weight:500;
    margin-bottom:12px;
  }

  .card__eyebrow{
    color: var(--gold);
  }
  .today__meta{
    display:flex;
    gap:26px;
    font-size:.82rem;
    color:#dcd9d0;
    flex-wrap:wrap;
  }
  .todayAddress{
    display:flex;
    align-items:center;
    gap:7px;
}


  /* ---------- SCHEDULE SECTION ---------- */
  .schedule{
    padding:90px 48px 100px;
    max-width:1120px;
    margin:0 auto;
  }
  .section__title{
    font-size:2.7rem;
    margin-bottom:44px;
  }
  .day__strip{
    display:grid;
    grid-template-columns:repeat(7, 1fr);
    gap:14px;
    margin-bottom:38px;
  }
  .day__card{
    border:1px solid #D4A548;
    background:var(--white);
    border-radius:10px;
    padding:16px 18px 18px;
    cursor:pointer;
    transition:all .2s ease;
    text-align:left;
  }
  .day__card:hover{
    border-color:var(--clay);
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(28,49,68,.08);
  }
  .day__card .dow{
    font-size:.68rem;
    letter-spacing:1.5px;
    color:var(--muted);
    font-weight:500;
    display:block;
    margin-bottom:8px;
  }
  .day__card .date{
    font-family:'Cormorant Garamond', serif;
    font-size:2rem;
    color:var(--navy);
    display:block;
    line-height:1;
  }
  .day__card .mon{
    font-size:.65rem;
    letter-spacing:1.5px;
    color:var(--muted);
    display:block;
    margin-top:6px;
  }
  .day__card.selected{
    background:#B8E0DC;
    border-color:#1B2A4A;
    box-shadow:inset 0 0 0 1px #1B2A4A;
  }

  .divider{
    height:1px;
    background:var(--line);
    margin-bottom:36px;
  }

  .location-panel{
    display:flex;
    justify-content:space-between;
    gap:40px;
    flex-wrap:wrap;
  }
  .location-info h3{
    font-size:2.4rem;
    margin-bottom:10px;
  }
  .location-info p{
    color:var(--muted);
    font-size:.98rem;
  }
  .location-details{
    display:flex;
    flex-direction:column;
    gap:14px;
    min-width:280px;
  }
  .location-details .row{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:.92rem;
    color:var(--ink);
  }
  
  .maps__btn{
    margin-top:6px;
    align-self:flex-start;
    background:var(--light-gold);
    color:#1B2A4A;
    font-size:.72rem;
    font-weight:600;
    letter-spacing:1.5px;
    padding:13px 28px;
    border-radius:30px;
    border:none;
    cursor:pointer;
    transition:background .2s ease, transform .18s ease;
  }
  .maps__btn:hover{
    background:var(--gold);
    transform:translateY(-1px);
  }

  /* fade transition for panel content */
  .fade{
    animation:fadeIn .35s ease;
  }
  @keyframes fadeIn{
    from{opacity:0; transform:translateY(4px);}
    to{opacity:1; transform:translateY(0);}
  }

  @media (max-width:900px){
    header{padding:16px 22px;}
    nav{display:none;}
    .main{min-height:auto;}
    .main__content{padding:48px 22px;}
    .main__title{font-size:4.5rem;}
    .schedule{padding:60px 22px 70px;}
    .day__strip{grid-template-columns:repeat(4,1fr);}
    .location-panel{flex-direction:column;}
  }
  @media (max-width:520px){
    .day__strip{grid-template-columns:repeat(3,1fr);}
    .main__title{font-size: 3rem;}
    .eyebrow{
      font-size: 10px;
    }
    .logo{
      width: 70px;
    }
    
  }

  /* ---------- MENU SECTION ---------- */
  .menu__section{
    padding:90px 48px 110px;
    max-width:1120px;
    margin:0 auto;
  }

  .pill__row{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-bottom:46px;
  }
  .pill{
    border:1px solid var(--gold);
    background:var(--white);
    color:var(--navy);
    font-size:.72rem;
    letter-spacing:1.5px;
    font-weight:500;
    padding:11px 22px;
    border-radius:30px;
    cursor:pointer;
    transition:all .2s ease;
  }
  .pill:hover{border-color:var(--clay);}
  .pill.active{
    background:#B8E0DC;
    border-color:#1B2A4A;
    color:#1B2A4A;
  }
  .menu-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:56px;
    align-items:start;
  }
  .menu-image{
    width:100%;
    aspect-ratio:4/5;
    border-radius:4px;
    overflow:hidden;
    background:var(--sand);
  }
  .menu-image img{
    width:100%;
    height:100%;
    object-fit:cover;
  }
  .menu-copy .section-eyebrow{margin-bottom:10px;}
  .menu-copy h3{
    font-size:2.4rem;
    margin-bottom:16px;
    color: #D4A548;
  }
  .menu-copy > p{
    color:var(--muted);
    font-size:.95rem;
    line-height:1.6;
    max-width:440px;
    margin-bottom:34px;
  }
  .menu-items{
    display:flex;
    flex-direction:column;
  }
  .menu-item{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;
    padding:20px 0;
    border-bottom:1px solid var(--line);
  }
  .menu-item:first-child{padding-top:0;}
  .menu-item:last-child{border-bottom:none;}
  .item-main h4{
    font-family:'Jost',sans-serif;
    font-weight:500;
    font-size:1.02rem;
    /* color:var(--ink); */
    color: #14a193;
    margin-bottom:6px;
  }
  .item-main .desc{
    font-size:.85rem;
    color:var(--muted);
    margin-bottom:8px;
  }
  .item-main .tags{
    font-size:.68rem;
    letter-spacing:1.5px;
    color:var(--gold);
    /* color:var(--clay-dark); */
    font-weight:500;
    text-transform:uppercase;
  }
  .item-price{
    font-family:'Cormorant Garamond', serif;
    font-size:1.15rem;
    color:var(--navy);
    white-space:nowrap;
    padding-top:2px;
  }

  @media (max-width:860px){
    .menu-grid{grid-template-columns:1fr;}
    .menu-image{aspect-ratio:10/10;}
    .menu-section{padding:60px 32px 70px;}
  }

  /* ---------- OUR STORY ---------- */
  .story-section{
    background:var(--sand);
    padding:100px 48px;
  }
  .story-grid{
    max-width:1120px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:64px;
    align-items:center;
  }
  .story__title{
    color:#0793a5;
    font-size:2.9rem;
    line-height:1.15;
    margin-bottom:28px;
    font-weight: 600;
  }
  .story-copy p{
    color:var(--ink);
    font-size:1rem;
    line-height:1.7;
    max-width:460px;
    margin-bottom:20px;
  }
  .story-copy p:last-child{margin-bottom:0;}
  .story-image{
    border-radius:4px;
    overflow:hidden;
    aspect-ratio:11/9;
  }
  .story-image img{
    width:100%;height:100%;object-fit:cover;
  }
  @media (max-width:860px){
    .story-section{padding:60px 22px;}
    .story-grid{grid-template-columns:1fr;gap:36px;}
    .story__ttile h2{font-size:2.2rem;}
  }

  /* ---------- FOOTER ---------- */
  footer{
    /* background:var(--navy-deep); */
    background:#0793a5;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding:90px 32px 44px;
    text-align:center;
    color:#eae7de;
  }
  .footer__logo{
    width:125px;
    height:90px;
    margin-bottom: 32px;
  }

  footer h2{
    /* color:#fff; */
    color: #1B2A4A;
    font-size:2.4rem;
    margin-bottom:16px;
  }
  footer > p{
    /* color:#b9c0c6; */
    color: #fff;
    color: #1B2A4A;
    font-size:.95rem;
    max-width:480px;
    margin:0 auto 38px;
    line-height:1.6;
  }
  .footer-actions{
    display:flex;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
    margin-bottom:60px;
  }
  .footer-btn{
    display:flex;
    align-items:center;
    gap:9px;
    border-radius:30px;
    padding:13px 24px;
    font-size:.78rem;
    letter-spacing:1px;
    font-weight:500;
    border:1px solid rgba(255,255,255,.18);
    background:transparent; 
    /* color:#eae7de; */
    color: #1B2A4A;
    cursor:pointer;
    transition:all .2s ease;
  }


 
  /* .footer-btn.primary{
    background:var(--clay);
    border-color:var(--clay);
    color:#3a2410;
    font-weight:600;
  } */
   
  .footer-btn:hover{
    background:var(--clay-dark);
    /* background:#58d3c7; */
    border-color:var(--clay-dark);
    /* border-color:var(--gold);
    color: var(--navy-deep); */
  }
  .footer-fine{
    font-size:.72rem;
    letter-spacing:1.5px;
    /* color:#7c8790; */
    color: var(--navy-deep);
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:28px;
    max-width:1120px;
    margin:0 auto;
  }

  /* ---------- ITEM MODAL ---------- */
.menu-item{
  cursor:pointer;
  transition:opacity .15s ease;
}
.menu-item:hover{
  opacity:.75;
}

.modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(21,37,49,.55);
  backdrop-filter:blur(3px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  opacity:0;
  visibility:hidden;
  transition:opacity .2s ease, visibility .2s ease;
  z-index:100;
}
.modal-overlay.open{
  opacity:1;
  visibility:visible;
}
.modal-box{
  background:var(--white);
  border-radius:10px;
  max-width:420px;
  width:100%;
  overflow:hidden;
  position:relative;
  transform:translateY(12px);
  transition:transform .2s ease;
  box-shadow:0 20px 60px rgba(0,0,0,.25);
}
.modal-overlay.open .modal-box{
  transform:translateY(0);
}
.modal-close{
  position:absolute;
  top:14px;
  right:14px;
  width:24px;
  height:24px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,.85);
  color:var(--navy);
  font-size:.8rem;
  line-height:1;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2;
}
.modal-close:hover{
  background:#fff;
}
.modal-image{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  background:var(--sand);
}
.modal-content{
  padding:26px 28px 30px;
}
.modal-content h3{
  font-size:1.7rem;
  margin-bottom:10px;
  color: #58d3c7;
}
.modal-tags{
  font-size:.68rem;
  letter-spacing:1.5px;
  color:var(--clay-dark);
  font-weight:500;
  text-transform:uppercase;
  margin-bottom:14px;
}
.modal-desc{
  font-size:.95rem;
  line-height:1.6;
  /* color:var(--muted); */
  color: var(--gold);
  margin-bottom:18px;
}
.modal-price{
  font-family:'Cormorant Garamond', serif;
  font-size:1.4rem;
  color:var(--navy);
}
