:root{
  --bg: #000;
  --panel: #05070d;
  --text: #f7f7f7;
  --muted: #d0d0d0;
  --gold: #e7b135;

  /* Conuco UI */
  --cream: #F8F3EA;
  --ink: #111;
  --danger: #c45024;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family:'Montserrat', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* HERO */
.hero{
  background: var(--bg);
  padding: 12px 16px 40px;
  text-align:center;
}
.hero-inner{
  max-width:480px;
  margin:0 auto;
}
.hero-header{
  display:block;
  width:100%;
  max-width:380px;     /* matches your Square sizing */
  height:auto;
  margin: 0 auto 16px;
}
.tagline{
  margin: 6px auto 0;
  font-size:14px;
  line-height:1.6;
  color:#e2e2e2;
  max-width:360px;
}
.cta-group{
  margin-top:26px;
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:center;
}
.btn{
  display:block;
  text-decoration:none;
  padding:11px 20px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  letter-spacing:0.5px;
  text-transform:uppercase;
  min-width:220px;
  text-align:center;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn-primary{
  background: var(--gold);
  color:#000;
  box-shadow:0 6px 14px rgba(231,177,53,0.45);
}
.btn-primary:hover{
  transform:translateY(-1px);
  box-shadow:0 8px 18px rgba(231,177,53,0.6);
}

/* Secondary hero CTA – Our Food */
.btn-red{
  background: #c45024;
  color: #fff;
  box-shadow: 0 6px 14px rgba(196,80,36,0.45);
}
.btn-red:hover{
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(196,80,36,0.6);
}

.btn-secondary{
  background:transparent;
  color: var(--text);
  border:1px solid var(--text);
}
.btn-secondary:hover{
  background: var(--text);
  color:#000;
}

/* VISIT */
.visit{
  background: var(--bg);
  padding:32px 16px 44px;
  text-align:center;
}
.visit-inner{
  max-width:720px;
  margin:0 auto;
}
.visit h1{
  font-size:20px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  margin:0 0 6px 0;
}
.visit h1::after{
  content:"";
  display:block;
  width:70px;
  height:3px;
  margin:10px auto 18px;
  background: var(--gold);
  border-radius:999px;
}
.visit-intro{
  font-size:13px;
  line-height:1.7;
  max-width:480px;
  margin:0 auto 22px;
  color: var(--muted);
}
.hours{
  max-width:420px;
  margin:0 auto 22px;
  font-size:14px;
  line-height:1.7;
}
.hours > div{
  display:flex;
  justify-content:space-between;
  gap:16px;
}
.closure{
  margin:10px 0 22px;
  font-size:13px;
  font-weight:600;
}
.contact{
  font-size:13px;
  line-height:1.8;
  margin-bottom:18px;
}
.contact a{
  color: var(--text);
  text-decoration:none;
  border-bottom:1px solid rgba(247,247,247,0.25);
}
.contact a:hover{
  border-bottom-color: var(--gold);
  color: var(--gold);
}
.address{
  font-size:13px;
  line-height:1.6;
}

/* FOOTER (Square-style) */
.site-footer{
  background: var(--bg);
  padding: 28px 16px 22px;
}
.footer-inner{
  max-width:720px;
  margin:0 auto;
  text-align:center;
}
.footer-divider{
  height:1px;
  background: rgba(247,247,247,0.12);
  margin: 18px 0;
}
.footer-logo{
  display:block;
  width:100%;
  max-width:70px;   /* small like Square footer */
  height:auto;
  margin: 0 auto 14px;
  opacity:0.95;
}
.footer-nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap: 10px 18px;   /* row/col gap */
  margin: 0 auto 14px;
  max-width: 520px;
}
.footer-nav a{
  color: var(--text);
  text-decoration:none;
  font-size:12px;
  font-weight:500;
  opacity:0.9;
}
.footer-nav a:hover{
  color: var(--gold);
  opacity:1;
}
.footer-social{
  display:flex;
  justify-content:center;
  gap:10px;
  margin: 8px 0 6px;
}
.social-icon{
  width:26px;
  height:26px;
  border-radius:999px;
  display:grid;
  place-items:center;
  border:1px solid rgba(247,247,247,0.18);
  text-decoration:none;
}
.social-icon svg{
  fill: var(--text);
  opacity:0.95;
}
.social-icon:hover{
  border-color: rgba(231,177,53,0.55);
}
.social-icon:hover svg{
  fill: var(--gold);
}
.footer-bottom{
  display:flex;
  justify-content:center;
  gap:14px;
  font-size:12px;
  color: rgba(247,247,247,0.75);
}
.cookie-link{
  color: rgba(247,247,247,0.75);
  text-decoration:none;
}
.cookie-link:hover{
  color: var(--gold);
}

/* Desktop tweak */
@media (min-width: 600px){
  .hero{ padding:50px 16px 60px; }
  .cta-group{
    flex-direction:row;
    justify-content:center;
  }
}

/* =========================
   TOP NAV
   ========================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(247,247,247,0.10);
}

.nav-inner{
  max-width: 980px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* =========================
   NAV – C MARK
   ========================= */

.nav-inner--with-mark{
  justify-content: space-between; /* C left, nav + burger right */
}

/* C mark */
.nav-mark{
  display: flex;
  align-items: center;
  text-decoration: none;

  /* 👇 subtle left bias (feels intentional, not accidental) */
  margin-left: -6px;
}

.nav-mark img{
  height: 30px;     /* main control */
  width: auto;
  display: block;
  opacity: 0.95;
}

/* Desktop inline nav */
.site-nav--desktop{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.site-nav--desktop a{
  color: rgba(247,247,247,0.88);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.site-nav--desktop a:hover{
  color: var(--gold);
}

/* Hamburger */
.nav-toggle{
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;

  width: 44px;
  height: 44px;

  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
}

.nav-toggle-bar{
  display: block;
  width: 30px;
  height: 2px;
  background: rgba(247,247,247,0.9);
  border-radius: 2px;
}

/* Mobile */
@media (max-width: 720px){
  .site-nav--desktop{ display: none; }
  .nav-toggle{ display: inline-flex; }

  .nav-mark img{
    height: 26px;
  }
}

/* =========================
   OVERLAY NAV (global defaults + desktop safety)
   ========================= */
.site-nav-overlay{
  display:none; /* closed by default for ALL sizes */
}

.site-nav-overlay.is-open{
  display:block;
}

/* Desktop safety: NEVER show overlay nav */
@media (min-width: 721px){
  .site-nav-overlay{
    display:none !important;
  }
}

/* =========================
   FULL-SCREEN OVERLAY NAV (mobile)
   ========================= */
@media (max-width: 720px){

  .site-nav-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;

    background: var(--cream);
    color: var(--ink);

    z-index: 99999;

    /* prevents the page behind from scrolling */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-overlay-inner{
    min-height: 100%;
    display:flex;
    flex-direction: column;
    padding: 22px 18px 26px;
  }

  /* Top row: logo centered + X on right */
  .nav-overlay-top{
    position: relative;
    padding-top: 10px;
    padding-bottom: 18px;
  }

  .nav-overlay-logo{
    display:flex;
    justify-content:center;
  }

  .nav-overlay-logo img{
    width: 92px;
    height:auto;
    display:block;
    opacity:0.95;
  }

  .nav-close{
    position:absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 28px;
    line-height: 1;
    cursor:pointer;
  }

  /* Center links */
  .nav-overlay-links{
    flex: 0;
    display:flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    text-align:center;

    margin-top: 160px;        /* controls how high links start */
    margin-bottom: 22px;     /* controls gap before CTA */
  }

  .nav-overlay-links a{
    color: var(--ink);
    text-decoration:none;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 20px;
  }

  /* Bottom CTA */
  .nav-overlay-bottom{
    display:flex;
    justify-content:center;
    padding-top: 60px;
  }

  .nav-cta{
    display:inline-block;
    padding: 14px 18px;
    border: 2px solid var(--ink);
    color: var(--ink);
    text-decoration:none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 14px;
    background: transparent;
  }

  body.nav-open{
    overflow:hidden;
  }
}

/* =========================
   SQUARE-STYLE FOOTER TIGHTEN
   ========================= */

.site-footer{
  background: var(--bg);
  color: var(--text);
  font-family:'Montserrat', Arial, sans-serif;
  padding: 26px 16px 18px;
  text-align:center;
}

.footer-inner{
  max-width: 520px;
  margin: 0 auto;
}

/* thin dividers like Square */
.footer-divider{
  height:1px;
  background: rgba(247,247,247,0.14);
  margin: 18px 0;
}

.footer-logo{
  margin: 0 auto 12px;
}

/* nav links */
.footer-nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px 16px;
  margin: 6px 0 14px;
}

.footer-nav a{
  color: rgba(247,247,247,0.82);
  text-decoration:none;
  font-size:12px;
  font-weight:600;
  letter-spacing:0.4px;
  text-transform:uppercase;
}

.footer-nav a:hover{
  color: var(--text);
  opacity:1;
}

/* socials */
.footer-social{
  display:flex;
  justify-content:center;
  gap:12px;
  margin: 10px 0 4px;
}

.social-icon{
  display:inline-flex;
  width:34px;
  height:34px;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(247,247,247,0.18);
  border-radius:999px;
  color: rgba(247,247,247,0.85);
  text-decoration:none;
  transition: transform 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.social-icon:hover{
  transform: translateY(-1px);
  border-color: rgba(231,177,53,0.55);
  color: var(--gold);
}

/* make SVG follow link color */
.social-icon svg{
  fill: currentColor;
}

/* bottom row */
.footer-bottom{
  display:flex;
  justify-content:center;
  gap:12px;
  align-items:center;
  font-size:12px;
  color: rgba(247,247,247,0.65);
  margin-top: 12px;
}

.cookie-link{
  color: rgba(247,247,247,0.75);
  text-decoration:none;
  border-bottom: 1px solid rgba(247,247,247,0.25);
}

.cookie-link:hover{
  border-bottom-color: var(--gold);
  color: var(--gold);
}

/* slightly wider + more horizontal breathing room on desktop */
@media (min-width: 700px){
  .site-footer{ padding: 30px 16px 18px; }
  .footer-inner{ max-width: 760px; }
}

/* =========================
   RESERVATIONS PAGE + MODAL
   ========================= */

.res-page{
  min-height: 100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 28px 16px;
  background: var(--bg);
}

/* =========================
   RESERVATION PAGE CLOSE
   ========================= */
.res-page-close{
  position: absolute;
  top: -18px;
  right: -18px;

  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  border: 1px solid rgba(231,177,53,0.45);

  background: #111;
  color: var(--gold);

  font-size: 18px;
  font-weight: 600;

  cursor: pointer;
  z-index: 20;

  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  transition: transform 0.15s ease, background 0.15s ease;
}

.res-page-close:hover{
  background: #000;
  transform: scale(1.05);
}

.res-card{
  position: relative;

  width: 100%;
  max-width: 520px;
  background: var(--cream);
  color: var(--ink);
  border-radius: 18px;
  padding: 22px 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
  border: 1px solid rgba(231,177,53,0.18);
}

.res-title{
  margin: 6px 0 6px;
  font-size: 26px;
  font-weight: 800;
  text-align:center;
  letter-spacing: 0.2px;
}

.res-title::after{
  content:"";
  display:block;
  width:70px;
  height:3px;
  margin:10px auto 10px;
  background: var(--gold);
  border-radius:999px;
}

.res-subtitle{
  margin: 18px 0 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.res-form{ display:block; }

.res-field{
  display:block;
  margin: 12px 0;
}

.res-field span{
  display:block;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(17,17,17,0.75);
}

.res-field input,
.res-field select,
.res-field textarea{
  width:100%;
  padding: 12px 12px;
  border: 1px solid rgba(17,17,17,0.18);
  border-radius: 12px;
  font-size: 15px;
  background: rgba(255,255,255,0.7);
  font-family:'Montserrat', Arial, sans-serif;
  outline: none;
}

.res-field input:focus,
.res-field select:focus,
.res-field textarea:focus{
  border-color: rgba(231,177,53,0.75);
  box-shadow: 0 0 0 3px rgba(231,177,53,0.18);
}

.res-field textarea{ resize: vertical; }

.res-closed{
  margin: 0 0 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(154,29,29,0.08);
  color: var(--danger);
  font-weight: 700;
  font-size: 13px;
  border: 1px solid rgba(154,29,29,0.18);
}

.res-rules{
  margin: 14px 0 6px;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.08);
}

.res-rules h2{
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.res-rules ul{
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(17,17,17,0.85);
}

.res-submit{
  width: 100%;
  margin-top: 14px;
  padding: 14px 16px;
  border: none;
  border-radius: 999px;
  background: var(--gold);
  color: #000;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(231,177,53,0.28);
  transition: transform .15s ease, box-shadow .15s ease;
}

.res-submit:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(231,177,53,0.35);
}

.res-submit:disabled{
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.res-done{ text-align:left; }

.res-summary{
  margin-top: 10px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.08);
  color: var(--ink);
  font-size: 13px;
  line-height: 1.5;
}

.res-actions{
  display:flex;
  gap:10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.res-btn{
  display:inline-block;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 12px;
  text-decoration:none;
  text-align:center;
}

.res-btn--secondary{
  border: 1px solid rgba(0,0,0,0.35);
  color: #000;
  background: transparent;
}

.res-btn--secondary:hover{
  border-color: rgba(231,177,53,0.75);
  box-shadow: 0 0 0 3px rgba(231,177,53,0.18);
}

.res-btn--orange{
  background: #c45024;
  color: #fff;
  border: 1px solid rgba(196,80,36,0.45);
}

.res-btn--orange:hover{
  filter: brightness(1.05);
}

/* keep this for any “back link” you still use */
.res-back{
  display:inline-block;
  margin-top: 14px;
  color:#111;
  text-decoration:none;
  font-weight:900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 12px;
}

/* =========================
   RESERVATION SUCCESS
   ========================= */

.res-card--success{
  text-align: center;
}

.res-success-logo{
  display: block;
  width: 72px;
  height: auto;
  margin: 4px auto 14px;
  opacity: 0.95;
}

.res-success-text{
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 18px;
}

.res-actions{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.res-btn{
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.res-btn--secondary{
  border: 1px solid #ccc;
  color: #111;
  background: transparent;
}

.res-btn--secondary:hover{
  border-color: var(--gold);
  color: var(--gold);
}

.res-btn--primary{
  background: var(--gold);
  color: #000;
}

.res-btn--primary:hover{
  opacity: 0.9;
}

/* =========================
   MODAL (Home quick booking)
   ========================= */
.res-modal{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
}

.res-modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(3px);
}

.res-modal-panel{
  position: relative;
  z-index: 1;
  width: min(520px, 92vw);
  margin: 40px auto;
}

.res-modal-note{
  margin: 12px 0 0;
  font-size: 12px;
  color: rgba(17,17,17,0.7);
  text-align:center;
}

.res-modal-close{
  position: absolute;
  top: -18px;
  right: -18px;

  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  border: 1px solid rgba(231,177,53,0.45);

  background: #111;
  color: var(--gold);

  font-size: 18px;
  font-weight: 600;

  cursor: pointer;
  z-index: 20;

  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.res-modal-close:hover{
  background: #000;
  transform: scale(1.05);
}

body.modal-open{
  overflow: hidden;
}

/* =========================
   OUR FOOD PAGE
   ========================= */

.food-page{
  background: var(--bg);
  color: var(--text);
}

/* Big hero image + CTA (Blues Kitchen vibe) */
.food-hero{
  padding: 14px 16px 22px;
  max-width: 980px;
  margin: 0 auto;
}

.food-hero-img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  border: 1px solid rgba(247,247,247,0.10);
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
}

.food-hero-cta{
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.food-cta-btn{
  display: inline-block;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--gold);
  color: #000;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  min-width: 220px;
  text-align: center;
  box-shadow: 0 10px 22px rgba(231,177,53,0.28);
}

.food-cta-btn:hover{
  transform: translateY(-1px);
}

.food-cta-link{
  display: block;
  text-align: center;
  color: rgba(247,247,247,0.80);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-size: 12px;
}

.food-cta-link:hover{
  color: var(--gold);
}

/* Gallery section */
.food-gallery{
  padding: 10px 16px 50px;
}

.food-gallery-inner{
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.food-title{
  margin: 18px 0 8px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.food-subtitle{
  margin: 0 auto 18px;
  max-width: 52ch;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(247,247,247,0.75);
}

.food-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.food-card{
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 0;
  background: transparent;
}

.food-card img{
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
   FOOD CARD TEXT HIERARCHY
   ========================= */

.food-card figcaption{
  padding: 12px 12px;
  text-transform: uppercase;
  line-height: 1.45;
  font-size: 12px;          /* description size */
  font-weight: 600;         /* description weight */
  letter-spacing: 0.4px;
  color: rgba(247,247,247,0.80);
}

/* Title (e.g. AREPAS) */
.food-card figcaption strong{
  display: block;
  margin-bottom: 6px;
  font-size: 14px;          /* title slightly larger */
  font-weight: 900;         /* bold */
  letter-spacing: 0.9px;
  color: rgba(247,247,247,0.95);
}

/* Desktop */
@media (min-width: 700px){
  .food-hero-cta{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .food-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* OUR FOOD – edge-to-edge hero on mobile */
@media (max-width: 720px){
  .food-hero{
    padding: 0;
    max-width: none;
    margin: 0;
  }

  .food-hero-img{
    width: 100vw;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }
}

/* =========================
   MENU PAGE
   ========================= */

.menu-page{
  background: var(--bg);
  color: var(--text);
  padding: 28px 16px 50px;
  font-family:'Montserrat', Arial, sans-serif;
}

.menu-header{
  text-align:center;
  max-width: 760px;
  margin: 0 auto 26px;
}

.menu-title{
  margin: 0;
  font-size: 28px;
  letter-spacing: 1px;
  font-weight: 700;
}

.menu-divider{
  width: 120px;
  height: 3px;
  margin: 12px auto 10px;
  background: var(--gold);
  border-radius: 999px;
}

.menu-subtitle{
  margin: 0;
  font-size: 13px;
  color: rgba(247,247,247,0.75);
}

.menu-section{
  max-width: 760px;
  margin: 0 auto 18px;
  padding: 26px 14px 18px;
  border-radius: 14px;
  position: relative;
}

.menu-section-title{
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

/* bordered sections */
.menu-section--gold{ border: 2px solid var(--gold); }
.menu-section--blue{ border: 2px solid #769ecd; }
.menu-section--orange{ border: 2px solid #c45024; }

/* simple list sections (no border) */
.menu-section--simple{
  border: 1px solid rgba(247,247,247,0.10);
  background: rgba(255,255,255,0.03);
}

/* grid cards */
.menu-grid{
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.menu-item{
  text-align: center;
  padding: 10px 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(247,247,247,0.10);
}

.menu-img{
  width: 100%;
  aspect-ratio: 16 / 10;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(247,247,247,0.12);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: rgba(247,247,247,0.55);
  font-size: 12px;
}

.menu-name{
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
}

.menu-price{
  margin-top: 4px;
  font-size: 13px;
  font-weight: 800;
  color: rgba(247,247,247,0.85);
}

/* list rows */
.menu-list{
  margin-top: 12px;
}

.menu-row{
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 8px;
  border-bottom: 1px solid rgba(247,247,247,0.08);
  font-size: 14px;
  color: rgba(247,247,247,0.9);
}

.menu-row:last-child{
  border-bottom: none;
}

/* footer actions */
.menu-actions{
  max-width: 760px;
  margin: 26px auto 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* wider screens */
@media (min-width: 700px){
  .menu-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .menu-title{
    font-size: 34px;
  }
}

/* =========================
   CONTACT PAGE
   ========================= */

.contact-page{
  background: var(--bg);
  color: var(--text);
  padding: 28px 16px 56px;
  font-family:'Montserrat', Arial, sans-serif;
}

.contact-header{
  text-align:center;
  max-width: 760px;
  margin: 0 auto 22px;
}

.contact-title{
  margin: 0;
  font-size: 30px;
  letter-spacing: 1px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-divider{
  width: 120px;
  height: 3px;
  margin: 12px auto 10px;
  background: var(--gold);
  border-radius: 999px;
}

.contact-subtitle{
  margin: 0;
  font-size: 13px;
  color: rgba(247,247,247,0.75);
}

.contact-block{
  max-width: 760px;
  margin: 0 auto 18px;
  padding: 22px 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(247,247,247,0.10);
  background: rgba(255,255,255,0.03);
}

.contact-hours{
  max-width: 520px;
  margin: 0 auto 16px;
  font-size: 14px;
  line-height: 1.8;
}

.contact-hours > div{
  display:flex;
  justify-content:space-between;
  gap:16px;
  border-bottom: 1px solid rgba(247,247,247,0.06);
  padding: 6px 0;
}
.contact-hours > div:last-child{ border-bottom:none; }

.contact-details{
  text-align:center;
  font-size: 13px;
  line-height: 1.9;
  margin: 14px 0 16px;
  color: rgba(247,247,247,0.9);
}

.contact-details a{
  color: var(--text);
  text-decoration:none;
  border-bottom:1px solid rgba(247,247,247,0.25);
}
.contact-details a:hover{
  border-bottom-color: var(--gold);
  color: var(--gold);
}

/* Phone + email links (global: mobile + desktop) */
.contact-direct-link{
  color: rgba(247,247,247,0.92);
  text-decoration: none;
  border-bottom: none;
  font-weight: 700;
  letter-spacing: 0.2px;
  display: block; /* ensures email sits under phone */
}

.contact-direct-link:hover{
  color: var(--gold);
}

.contact-address{
  margin-top: 10px;
  line-height: 1.6;
  color: rgba(247,247,247,0.85);
}

.contact-actions{
  display:flex;
  justify-content:center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.contact-btn{
  display:inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}

.contact-btn--primary{
  background: var(--gold);
  color: #000;
  box-shadow:0 10px 22px rgba(231,177,53,0.22);
}
.contact-btn--primary:hover{
  transform: translateY(-1px);
  box-shadow:0 14px 26px rgba(231,177,53,0.30);
}

/* =========================
   COLOURED BUTTON VARIANTS (logo palette)
   ========================= */

/* shared behaviour for any filled colour button */
.contact-btn--blue,
.contact-btn--red,
.contact-btn--gold{
  color: #000;
  border: 0;
  box-shadow: 0 10px 22px rgba(0,0,0,0.25);
}

.contact-btn--blue:hover,
.contact-btn--red:hover,
.contact-btn--gold:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(0,0,0,0.30);
}

/* Book a Table */
.contact-btn--blue{
  background: #769ecd;
}

/* Contact Us */
.contact-btn--red{
  background: #c45024;
  color: #fff; /* better contrast on the red */
}

/* Send an Enquiry */
.contact-btn--gold{
  background: #e7b135;
  color: #000;
}

.contact-btn--secondary{
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(247,247,247,0.28);
}
.contact-btn--secondary:hover{
  border-color: rgba(231,177,53,0.65);
  color: var(--gold);
}

.contact-forms{
  max-width: 760px;
  margin: 18px auto 0;
  display:grid;
  gap: 14px;
}

.contact-form-card{
  border-radius: 14px;
  border: 1px solid rgba(247,247,247,0.10);
  background: rgba(255,255,255,0.03);
  padding: 20px 16px;
}

.contact-form-title{
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.contact-form-sub{
  margin: 8px 0 14px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(247,247,247,0.78);
}

.contact-form{ display:block; }

.contact-field{
  display:block;
  margin: 12px 0;
}

.contact-field span{
  display:block;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(247,247,247,0.70);
}

.contact-field input,
.contact-field textarea{
  width:100%;
  padding: 12px 12px;
  border: 1px solid rgba(247,247,247,0.14);
  border-radius: 12px;
  font-size: 14px;
  background: rgba(0,0,0,0.30);
  color: var(--text);
  font-family:'Montserrat', Arial, sans-serif;
  outline: none;
}

.contact-field input:focus,
.contact-field textarea:focus{
  border-color: rgba(231,177,53,0.75);
  box-shadow: 0 0 0 3px rgba(231,177,53,0.18);
}

.contact-submit{
  width: 100%;
  margin-top: 10px;
  padding: 14px 16px;
  border: none;
  border-radius: 999px;
  background: var(--gold);
  color: #000;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(231,177,53,0.22);
  transition: transform .15s ease, box-shadow .15s ease;
}
.contact-submit:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(231,177,53,0.30);
}

@media (min-width: 760px){
  .contact-forms{
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================
   CONTACT PAGE – Mobile tidy (Blues Kitchen feel)
   ========================= */
@media (max-width: 720px){

  .contact-header,
  .contact-title,
  .contact-divider,
  .contact-hero{
    display:none !important;
  }

  /* Remove the “border/card” look around hours + contact */
  .contact-block{
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding-top: 18px;
    padding-bottom: 10px;
  }

  /* Hours: remove “row divider” look + tighten spacing */
  .contact-hours{
    max-width: 420px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.45;
  }

  .contact-hours > div{
    display:flex;
    justify-content:space-between;
    gap:16px;
    padding: 4px 0;
    border: 0 !important;
    box-shadow: none !important;
  }

  /* Phone + email under hours (centered, white, no underline) */
  .contact-direct{
    margin-top: 12px;
    text-align:center;
    display:flex;
    flex-direction:column;
    gap: 6px;
  }

  .contact-actions--primary{
    margin-top: 40px;
  }

  .contact-details--tight{
    margin-top: 30px;
  }

  .enquiries-section{
    margin-top: 34px;
    text-align: center;
  }

  .enquiries-title{
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 18px;
  }

  .enquiry-block{
    margin: 0 auto 26px;
    max-width: 520px;
  }

  .enquiry-heading{
    font-size: 16px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin: 0 0 10px;
  }

  .enquiry-text{
    margin: 0 auto 14px;
    max-width: 40ch;
    opacity: 0.9;
    line-height: 1.5;
  }

}

/* =========================
   CONTACT PAGE – Desktop layout (Blues Kitchen style)
   ========================= */
@media (min-width: 721px){

  /* remove the box outline on desktop */
  .contact-block{
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  /* remove the divider lines in the opening hours rows on desktop */
  .contact-hours > div{
    border-bottom: 0 !important;
  }

  /* top two columns */
  .contact-top{
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 140px;
    align-items: start;
  }

  .contact-col--left{
    text-align: left;
  }

  .contact-col--right{
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* keeps the button on the right */
  }

  /* phone/email should sit right under hours */
  .contact-direct{
    margin-top: 18px;
    text-align: left;
    align-items: flex-start;
  }

  /* Button aligned right */
  .contact-actions--primary{
    margin-top: 0;
    align-self: flex-end;
  }

  /* Make button a consistent width (so we can perfectly center address under it) */
  .contact-actions--primary .contact-btn--primary{
    min-width: 220px;
    text-align: center;
  }

  /* Address: SAME width as button + centered text + sits directly underneath */
  .contact-details--tight{
    margin-top: 40px;
    align-self: flex-end;
    width: 220px;
    text-align: center;
  }

  .contact-details--tight .contact-address{
    line-height: 2.5; /* increase spacing between lines */
  }

  /* Book a table centered under BOTH columns (Blues Kitchen style) */
  .contact-actions--book{
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 38px auto 0;
  }

  /* SAFETY: if these sections are inside a 2-col grid somewhere, force full-width */
  .contact-actions--book,
  .enquiries-section,
  .faq-section{
    grid-column: 1 / -1;
  }

  /* =========================
     OTHER ENQUIRIES – Blues Kitchen layout
     ========================= */

  /* 2-column layout + gold divider under BOTH blocks */
  .enquiries-section{
    max-width: 1500px;                 /* ⬅️ wider like Blues Kitchen */
    margin: 44px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;                 /* ⬅️ tighter gap */
    row-gap: 24px;
    align-items: start;

    padding-bottom: 28px;
    border-bottom: 2px solid rgba(231,177,53,0.75);
    text-align: left;
  }

  /* OTHER ENQUIRIES title spans both columns */
  .enquiries-title{
    grid-column: 1 / -1;
    text-align: center;
    text-transform: uppercase; /* ALL CAPS */
    letter-spacing: 2px;
    font-weight: 900;
    margin: 0 0 10px;
  }

  /* Keep each enquiry block tight and aligned */
  .enquiry-block{
    margin: 0;
    max-width: none;
  }

  /* FAQ centered under Other enquiries */
  .faq-section{
    width: 100%;
    max-width: 520px;
    margin: 34px auto 0;
  }
}

/* =========================
   CONTACT – FAQ accordion
   ========================= */

.faq-section{
  margin-top: 34px;
  text-align: left;
}

.faq-title{
  text-align:center;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.faq-list{
  max-width: 520px;
  margin: 0 auto;
}

.faq-item{
  border: 0;
  background: transparent;
  margin: 0;
  padding: 0;
}

.faq-summary{
  list-style: none;
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 0;
  border: none;
}

.faq-summary::-webkit-details-marker{
  display:none;
}

.faq-label{
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.faq-icon{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  position: relative;
  flex: 0 0 34px;
}

.faq-icon:before,
.faq-icon:after{
  content:"";
  position:absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  background: rgba(255,255,255,0.92);
  transform: translate(-50%, -50%);
}

.faq-icon:after{
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-icon:after{
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-content{
  padding: 0 0 16px;
  color: rgba(247,247,247,0.88);
  line-height: 1.6;
}

.faq-content p{
  margin: 0;
  font-size: 14px;
}

/* =========================
   FOOTER – Blues Kitchen style (mobile-first)
   ========================= */

.site-footer.footer-bk{
  background: var(--bg);
  color: var(--text);
  padding: 34px 16px 26px;
}

.footer-bk-inner{
  max-width: 760px;
  margin: 0 auto;
}

/* Opening hours */
.footer-hours{
  font-size: 16px;
  line-height: 1.55;
}

.footer-hours-row{
  display:flex;
  justify-content: space-between;
  gap: 18px;
  margin: 2px 0;
}

/* “We’ll be closed…” */
.footer-closure{
  margin-top: 16px;
  font-weight: 900;
  font-size: 17px;     /* slightly bigger */
  line-height: 1.35;
  text-align: left;    /* left indented look */
}

/* Phone + Email */
.footer-contact{
  margin-top: 18px;
  display:flex;
  flex-direction: column;
  gap: 8px;
  text-align:left;
}

.footer-phone,
.footer-email{
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;  /* match closure size */
  line-height: 1.2;
}

.footer-phone:hover,
.footer-email:hover{
  color: var(--gold);
}

/* Social row with vertical divider */
.footer-social-row{
  margin-top: 18px;
  display:flex;
  align-items:center;
  gap: 14px;
  text-align:left;
}

.footer-social-icon{
  color: var(--text);
  text-decoration:none;
  font-weight: 700;
  font-size: 16px;
}

.footer-social-icon:hover{
  color: var(--gold);
}

.footer-social--stacked{
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
}

/* vertical divider between icons */
.social-divider{
  width: 1px;
  height: 18px;
  background: rgba(247,247,247,0.35);
}

/* Footer social icons — align with left text column */
.site-footer .footer-social{
  justify-content: flex-start;   /* ⬅️ left align */
  margin-left: 0;               /* safety reset */
}

/* Optional: if footer text is indented, match it */
.site-footer .footer-inner{
  text-align: left;
}

/* Address */
.footer-address{
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.6;   /* nice spacing like Blues Kitchen */
  text-align:left;
  color: rgba(247,247,247,0.9);
}

/* Link row with separators */
.footer-links{
  margin-top: 18px;
  text-align:left;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  align-items:center;
}

.footer-links a{
  color: rgba(247,247,247,0.88);
  text-decoration:none;
  font-weight: 700;
  font-size: 14px;
}

.footer-links a:hover{
  color: var(--gold);
}

.footer-link-divider{
  color: rgba(247,247,247,0.35);
}