/* Fast Break Cafe — shared site stylesheet.
   Linked by index.html (home) and commercial-kitchen.html.
   Edit design tokens, nav, buttons and footer here once. */

  :root {
    --navy: #1a3a5c;
    --navy-deep: #12293f;
    --navy-darker: #0e2032;
    --gold: #f5b800;
    --gold-deep: #d99e00;
    --gold-ink: #8a5e00; /* darkened gold for text on light — passes WCAG AA */
    --cream: #fdf6e3;
    --cream-2: #f7ecd0;
    --ink: #25313d;
    --muted: #546372; /* darkened to clear WCAG AA (4.5:1) on cream-2 backgrounds */
    --white: #ffffff;

    --font-head: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --container: 1180px;
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-pill: 999px;

    --shadow-sm: 0 4px 14px rgba(26, 58, 92, 0.08);
    --shadow-md: 0 14px 40px rgba(26, 58, 92, 0.12);
    --shadow-lg: 0 28px 70px rgba(14, 32, 50, 0.28);
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; scroll-padding-top: 84px; }

  body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.08; color: var(--navy); font-weight: 800; }

  a { color: inherit; text-decoration: none; }

  /* Visible keyboard focus — navy ring on light grounds (default), gold ring on dark grounds */
  :focus-visible { outline: 3px solid var(--navy); outline-offset: 2px; border-radius: 3px; }
  .nav :focus-visible, .mobile-menu :focus-visible, .hero :focus-visible,
  .strip :focus-visible, .values :focus-visible, .contact :focus-visible,
  .footer :focus-visible, .order-head :focus-visible,
  .on-navy :focus-visible, .cta :focus-visible { outline-color: var(--gold); }

  /* Skip link — visually hidden until focused */
  .skip-link {
    position: absolute; left: 12px; top: -60px; z-index: 300;
    background: var(--navy); color: #fff; padding: 10px 18px;
    border-radius: var(--r-pill); font-weight: 700; font-size: 0.9rem;
    transition: top 0.2s var(--ease);
  }
  .skip-link:focus { top: 12px; }

  .container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }

  .eyebrow {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--gold-ink);
    display: inline-block;
    margin-bottom: 18px;
  }

  .section { padding: 110px 0; }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: var(--font-body);
    font-weight: 700; font-size: 1rem;
    padding: 15px 30px;
    border-radius: var(--r-pill);
    cursor: pointer; border: 2px solid transparent;
    transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease), color 0.18s var(--ease);
    white-space: nowrap;
  }
  .btn-gold { background: var(--gold); color: var(--navy); box-shadow: 0 10px 26px rgba(245, 184, 0, 0.34); }
  .btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(245, 184, 0, 0.46); background: #ffc619; }
  .btn-gold:active { transform: translateY(0) scale(0.98); }

  .btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

  .btn-navy { background: var(--navy); color: var(--white); box-shadow: var(--shadow-sm); }
  .btn-navy:hover { transform: translateY(-3px); background: var(--navy-deep); box-shadow: var(--shadow-md); }

  .btn-navy-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
  .btn-navy-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-3px); }

  /* ---------- Navbar ---------- */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), padding 0.3s var(--ease);
    padding: 22px 0;
  }
  .nav.scrolled {
    background: rgba(26, 58, 92, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 6px 28px rgba(14, 32, 50, 0.22);
    padding: 14px 0;
  }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; }
  .logo {
    font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--white);
    letter-spacing: 0.01em; display: flex; align-items: center; gap: 11px; white-space: nowrap;
  }
  .logo .nav-logo {
    width: 48px; height: 48px; border-radius: 50%;
    background: #fff; padding: 2px; object-fit: contain;
    box-shadow: 0 3px 10px rgba(14,32,50,0.28);
    transition: transform 0.2s var(--ease);
  }
  .logo:hover .nav-logo { transform: rotate(-6deg) scale(1.05); }
  .nav-links { display: flex; align-items: center; gap: 36px; }
  .nav-links a {
    color: rgba(255,255,255,0.88); font-weight: 700; font-size: 0.95rem;
    position: relative; padding: 4px 0; transition: color 0.18s var(--ease);
  }
  .nav-links a::after {
    content: ''; position: absolute; left: 0; bottom: -3px; height: 2px; width: 0;
    background: var(--gold); transition: width 0.22s var(--ease);
  }
  .nav-links a:hover { color: var(--white); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta { display: flex; align-items: center; gap: 16px; }
  .nav .btn-gold { padding: 11px 24px; font-size: 0.92rem; }

  .menu-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
  .menu-toggle span { display: block; width: 26px; height: 2.5px; background: var(--white); border-radius: 2px; transition: 0.25s var(--ease); }

  /* ---------- Hero ---------- */
  .hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    /* Conneaut breakwater lighthouse photo + navy scrim for text legibility.
       Falls back to the original navy gradient if the image is missing. */
    background:
      linear-gradient(180deg, rgba(13,31,51,0.78) 0%, rgba(13,31,51,0.42) 34%, rgba(13,31,51,0.58) 72%, var(--navy-deep) 100%),
      url('img/hero-lighthouse.jpg') center 32% / cover no-repeat,
      radial-gradient(circle at 70% 15%, #234d77 0%, var(--navy) 45%, var(--navy-deep) 100%);
    color: var(--white); overflow: hidden; padding: 140px 0 90px;
  }
  .hero-texture {
    position: absolute; inset: 0; opacity: 0.07; pointer-events: none;
    background-image: radial-gradient(circle, var(--gold) 1.4px, transparent 1.6px);
    background-size: 34px 34px;
  }
  .hero-glow {
    position: absolute; width: 620px; height: 620px; border-radius: 50%; pointer-events: none;
    background: radial-gradient(circle, rgba(245,184,0,0.22) 0%, transparent 68%);
    top: -160px; right: -120px;
  }
  .hero-glow.two { background: radial-gradient(circle, rgba(53,110,165,0.4) 0%, transparent 70%); top: auto; bottom: -200px; left: -180px; right: auto; }
  .hero-beam {
    position: absolute; top: 150px; left: 50%; z-index: 1; margin-left: -260px;
    width: 520px; height: 780px; pointer-events: none; opacity: 0.75; mix-blend-mode: screen;
    background: linear-gradient(to bottom, rgba(245,184,0,0.30), rgba(245,184,0,0) 70%);
    clip-path: polygon(50% 0, 63% 100%, 37% 100%);
    filter: blur(16px); transform-origin: 50% 0;
    animation: sweep 9s ease-in-out infinite;
  }
  .hero-beam.two { opacity: 0.4; animation-duration: 9s; animation-delay: -4.5s; background: linear-gradient(to bottom, rgba(255,255,255,0.22), rgba(255,255,255,0) 66%); }
  @keyframes sweep { 0%{ transform: rotate(-30deg);} 50%{ transform: rotate(30deg);} 100%{ transform: rotate(-30deg);} }
  @media (prefers-reduced-motion: reduce){ .hero-beam, .hero-logo img, .scroll-cue .arrow { animation: none; } }
  .hero .container { position: relative; z-index: 2; max-width: 920px; text-align: center; }
  .hero-logo { margin-bottom: 22px; }
  .hero-logo img {
    width: 138px; height: 138px; border-radius: 50%; background: rgba(253,246,227,0.96);
    padding: 6px; box-shadow: 0 0 0 8px rgba(245,184,0,0.16), 0 22px 50px rgba(0,0,0,0.4);
    animation: floaty 5s var(--ease) infinite;
  }
  @keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-9px);} }
  .hero h1 {
    color: var(--white); font-size: clamp(3rem, 7.5vw, 5.4rem); font-weight: 800;
    letter-spacing: -0.015em; margin-bottom: 8px; line-height: 0.96;
  }
  .hero h1 .gold { color: var(--gold); font-style: italic; }
  .hero .tagline { font-family: var(--font-head); font-style: italic; font-size: clamp(1.4rem, 3.2vw, 2.05rem); color: var(--gold); font-weight: 500; margin-bottom: 18px; }
  .hero .subtext { font-size: 1.18rem; color: rgba(255,255,255,0.82); max-width: 560px; margin: 0 auto 38px; font-weight: 300; }
  .hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 46px; }
  .hours-pill {
    display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
    padding: 13px 28px; border-radius: var(--r-pill);
    font-weight: 700; font-size: 0.96rem; letter-spacing: 0.02em;
  }
  .hours-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(245,184,0,0.25); }
  .hours-pill .sep { color: rgba(255,255,255,0.32); }
  .hours-pill .accent { color: var(--gold); }

  .scroll-cue { position: absolute; bottom: 96px; left: 50%; transform: translateX(-50%); z-index: 3; color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; text-align: center; }
  .scroll-cue .arrow { display: block; margin: 8px auto 0; width: 18px; height: 18px; border-right: 2px solid rgba(255,255,255,0.5); border-bottom: 2px solid rgba(255,255,255,0.5); transform: rotate(45deg); animation: bob 1.8s var(--ease) infinite; }
  @keyframes bob { 0%,100%{ transform: rotate(45deg) translate(0,0);} 50%{ transform: rotate(45deg) translate(4px,4px);} }

  /* ---------- Hero wave + Gold strip ---------- */
  .hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 1; line-height: 0; pointer-events: none; }
  .hero-wave svg { width: 100%; height: 92px; display: block; }
  @media (max-width: 560px){
    .hero-logo img { width: 108px; height: 108px; }
    /* Keep the lighthouse comfortably in frame on tall, narrow screens. */
    .hero { background-position: 0 0, 70% 28%, 0 0; }
  }
  .strip { background: var(--gold); color: var(--navy); padding: 26px 0; }
  .strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .strip-item { display: flex; align-items: center; justify-content: center; gap: 11px; font-weight: 700; font-size: 1.02rem; text-align: center; padding: 0 8px; position: relative; }
  .strip-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%); height: 30px; width: 1px; background: rgba(26,58,92,0.22); }
  .strip-item .emo { font-size: 1.4rem; line-height: 1; }
  .strip-item small { display: block; font-weight: 400; font-size: 0.82rem; opacity: 0.78; }

  /* ---------- About ---------- */
  .about { background: var(--cream); }
  .about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 70px; align-items: center; }
  .about h2 { font-size: clamp(2.3rem, 4.6vw, 3.5rem); margin-bottom: 26px; }
  .about p { color: var(--muted); font-size: 1.08rem; margin-bottom: 18px; max-width: 540px; }
  .about p strong { color: var(--navy); }

  .about-card {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
    border-radius: var(--r-lg); padding: 48px 40px; color: var(--white);
    box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
  }
  .about-card::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(245,184,0,0.16), transparent 70%); }
  .about-card .fb-circle {
    width: 104px; height: 104px; border-radius: 50%; background: var(--cream); padding: 6px;
    display: block; object-fit: contain;
    margin: 0 auto 18px; box-shadow: 0 0 0 6px rgba(245,184,0,0.18), 0 12px 28px rgba(0,0,0,0.3); position: relative;
  }
  .about-card .card-name { text-align: center; font-family: var(--font-head); font-weight: 800; font-size: 1.65rem; color: var(--white); margin-bottom: 4px; }
  .about-card .card-sub { text-align: center; color: rgba(255,255,255,0.6); font-size: 0.92rem; margin-bottom: 32px; }
  .stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat-tile { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-md); padding: 22px 18px; text-align: center; transition: transform 0.2s var(--ease), background 0.2s var(--ease); }
  .stat-tile:hover { transform: translateY(-4px); background: rgba(255,255,255,0.1); }
  .stat-tile .num { font-family: var(--font-head); font-weight: 800; font-size: 1.95rem; color: var(--gold); line-height: 1; margin-bottom: 6px; }
  .stat-tile .lbl { font-size: 0.82rem; color: rgba(255,255,255,0.72); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 700; }

  /* ---------- Menu ---------- */
  .menu { background: var(--cream-2); text-align: center; }
  .section-head { max-width: 660px; margin: 0 auto 56px; }
  .section-head h2 { font-size: clamp(2.3rem, 4.6vw, 3.5rem); margin-bottom: 16px; }
  .section-head p { color: var(--muted); font-size: 1.12rem; }
  .menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; text-align: left; }
  .menu-card {
    background: var(--white); border-radius: var(--r-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); border: 1px solid rgba(26,58,92,0.06);
    transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
    display: flex; flex-direction: column;
  }
  .menu-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
  .menu-photo { display: block; width: 100%; height: 196px; }
  .menu-photo::part(empty) { color: var(--navy); font-weight: 600; }
  .menu-photo::part(ring) { border-color: rgba(26,58,92,0.25); }
  .menu-photo.t1::part(frame) { background: linear-gradient(135deg,#fff1cf,#ffe1a0); }
  .menu-photo.t2::part(frame) { background: linear-gradient(135deg,#ffe6cf,#ffcf9e); }
  .menu-photo.t3::part(frame) { background: linear-gradient(135deg,#ffeacc,#f4cf93); }
  .menu-photo.t4::part(frame) { background: linear-gradient(135deg,#e6f3dd,#c8e6b8); }
  .menu-photo.t5::part(frame) { background: linear-gradient(135deg,#d9ecf5,#b4d8ea); }
  .menu-photo.t6::part(frame) { background: linear-gradient(135deg,#fbe0db,#f1bdb3); }
  .menu-body { padding: 26px 26px 28px; flex: 1; display: flex; flex-direction: column; }
  .menu-body h3 { font-size: 1.5rem; margin-bottom: 10px; line-height: 1.16; }
  .menu-body p { color: var(--muted); font-size: 1rem; margin-bottom: 20px; flex: 1; }
  .tag-pill {
    align-self: flex-start; background: var(--navy); color: var(--gold);
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 7px 15px; border-radius: var(--r-pill); white-space: nowrap;
  }
  .menu-cta { margin-top: 50px; }

  /* ---------- Menu (live from Square catalog) ---------- */
  .menu-real { background: var(--cream-2); text-align: center; }
  .menu-cats { columns: 2; column-gap: 54px; max-width: 900px; margin: 0 auto; text-align: left; }
  .menu-cat-block { break-inside: avoid; margin-bottom: 34px; }
  .menu-cat-h {
    font-family: var(--font-body); font-weight: 700; font-size: 0.82rem;
    letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-ink);
    padding-bottom: 8px; margin-bottom: 4px; border-bottom: 2px solid var(--gold);
  }
  .menu-row { padding: 11px 0; border-bottom: 1px solid rgba(26,58,92,0.08); }
  .menu-row:last-child { border-bottom: 0; }
  .mr-top { display: flex; align-items: baseline; gap: 8px; }
  .mr-name { font-family: var(--font-head); font-weight: 700; font-size: 1.06rem; color: var(--navy); }
  .mr-dots { flex: 1; border-bottom: 1px dotted rgba(26,58,92,0.32); position: relative; top: -4px; }
  .mr-price { font-family: var(--font-head); font-weight: 800; font-size: 1.06rem; color: var(--gold-ink); white-space: nowrap; font-variant-numeric: tabular-nums; }
  .mr-desc { color: var(--muted); font-size: 0.9rem; margin-top: 3px; max-width: 46ch; }
  .menu-loading { columns: 1; text-align: center; color: var(--muted); padding: 30px 0; font-size: 1.02rem; }
  .menu-loading a { color: var(--gold-ink); font-weight: 700; text-decoration: underline; }

  /* ---------- Gallery (photo cards, formerly the menu) ---------- */
  .gallery { background: var(--cream); text-align: center; }

  /* ---------- Values ---------- */
  .values { background: linear-gradient(165deg, var(--navy) 0%, var(--navy-darker) 100%); color: var(--white); text-align: center; position: relative; overflow: hidden; }
  .values::before { content: ''; position: absolute; inset: 0; opacity: 0.06; background-image: radial-gradient(circle, var(--gold) 1.4px, transparent 1.6px); background-size: 36px 36px; }
  .values .container { position: relative; z-index: 2; }
  .values h2 { color: var(--white); font-size: clamp(2.3rem, 4.6vw, 3.5rem); margin-bottom: 14px; }
  .values .lead { color: rgba(255,255,255,0.72); font-size: 1.12rem; max-width: 540px; margin: 0 auto 58px; font-weight: 300; }
  .values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .value-tile { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-lg); padding: 38px 24px; transition: transform 0.22s var(--ease), background 0.22s var(--ease); }
  .value-tile:hover { transform: translateY(-6px); background: rgba(255,255,255,0.09); }
  .value-tile .emo { font-size: 2.6rem; display: block; margin-bottom: 18px; }
  .value-tile h3 { color: var(--gold); font-size: 1.32rem; margin-bottom: 10px; }
  .value-tile p { color: rgba(255,255,255,0.7); font-size: 0.96rem; }

  /* ---------- Reviews ---------- */
  .reviews { background: var(--cream); text-align: center; }
  .reviews .stars-big { color: var(--gold); font-size: 1.6rem; letter-spacing: 4px; margin-bottom: 14px; }
  .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; text-align: left; margin-bottom: 50px; }
  .review-card { background: var(--white); border-radius: var(--r-lg); padding: 34px 30px; box-shadow: var(--shadow-sm); border: 1px solid rgba(26,58,92,0.06); display: flex; flex-direction: column; transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease); position: relative; }
  .review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
  .review-card.featured { border: 2px solid var(--gold); }
  .review-card .stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; margin-bottom: 16px; }
  .review-card blockquote { font-family: var(--font-head); font-style: italic; font-size: 1.22rem; color: var(--navy); line-height: 1.4; margin-bottom: 22px; flex: 1; }
  .review-author { display: flex; align-items: center; gap: 13px; }
  .review-author .av { width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: var(--gold); display: grid; place-items: center; font-weight: 800; font-family: var(--font-head); font-size: 1.05rem; flex-shrink: 0; }
  .review-author .meta strong { display: block; color: var(--navy); font-size: 0.98rem; }
  .review-author .meta span { color: var(--muted); font-size: 0.84rem; }
  .review-badge { position: absolute; top: -13px; right: 24px; background: var(--gold); color: var(--navy); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 13px; border-radius: var(--r-pill); }

  /* ---------- Contact ---------- */
  .contact { background: linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 100%); color: var(--white); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: stretch; }
  .contact h2 { color: var(--white); font-size: clamp(2.3rem, 4.6vw, 3.5rem); margin-bottom: 14px; }
  .contact .intro { color: rgba(255,255,255,0.72); font-size: 1.1rem; margin-bottom: 38px; font-weight: 300; max-width: 460px; }
  .info-list { display: flex; flex-direction: column; gap: 26px; }
  .info-item { display: flex; gap: 18px; align-items: flex-start; }
  .info-item .ic { width: 50px; height: 50px; border-radius: 14px; background: rgba(245,184,0,0.14); color: var(--gold); display: grid; place-items: center; font-size: 1.4rem; flex-shrink: 0; }
  .info-item .it-body h4 { color: var(--gold); font-family: var(--font-body); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 5px; }
  .info-item .it-body p { color: rgba(255,255,255,0.9); font-size: 1.06rem; }
  .info-item .it-body p span { color: rgba(255,255,255,0.55); font-size: 0.92rem; }

  .map-col { display: flex; flex-direction: column; gap: 20px; }
  .map-placeholder {
    flex: 1; min-height: 340px; border-radius: var(--r-lg); overflow: hidden; position: relative;
    background: #e8eef4; border: 1px solid rgba(255,255,255,0.14);
  }
  .map-frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; filter: saturate(1.04); }
  .map-btns { display: flex; gap: 14px; flex-wrap: wrap; }
  .map-btns .btn { flex: 1; justify-content: center; }
  .get-dir { position: absolute; bottom: 16px; right: 16px; z-index: 3; }

  /* ---------- Footer ---------- */
  .footer { background: var(--navy-darker); color: rgba(255,255,255,0.7); padding: 64px 0 36px; }
  .footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .footer-brand .logo { color: var(--gold); font-size: 2rem; margin-bottom: 14px; display: flex; align-items: center; gap: 14px; }
  .footer-brand .logo img { width: 56px; height: 56px; border-radius: 50%; background: #fff; padding: 3px; }
  .footer-brand p { font-size: 0.98rem; max-width: 280px; }
  .footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
  .footer-col h4 { color: var(--white); font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; }
  .footer-col a, .footer-col p { display: block; color: rgba(255,255,255,0.7); font-size: 0.96rem; margin-bottom: 9px; transition: color 0.18s var(--ease); }
  .footer-col a:hover { color: var(--gold); }
  .fb-link { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,0.08); padding: 10px 18px; border-radius: var(--r-pill); font-weight: 700; color: var(--white) !important; }
  .fb-link:hover { background: var(--gold); color: var(--navy) !important; }
  .footer-bottom { padding-top: 28px; text-align: center; font-size: 0.9rem; color: rgba(255,255,255,0.5); }
  .footer-credit { padding-top: 8px; text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.45); }
  .footer-credit a { color: var(--gold, #f5b800); text-decoration: none; font-weight: 700; }
  .footer-credit a:hover { text-decoration: underline; }

  /* ---------- Reveal animation ---------- */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }

  /* ---------- Responsive ---------- */
  @media (max-width: 900px) {
    .section { padding: 80px 0; }
    .nav-links, .nav-cta .btn { display: none; }
    .menu-toggle { display: flex; }
    .nav { background: rgba(26,58,92,0.97); backdrop-filter: blur(12px); }
    .nav-cta { gap: 8px; }
    .nav-cta .menu-toggle { display: flex; }
    .mobile-menu { display: flex; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
    .menu-grid, .reviews-grid, .values-grid { grid-template-columns: 1fr 1fr; }
    .strip-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
    .strip-item:nth-child(2)::after { display: none; }
  }
  @media (max-width: 560px) {
    .container { padding: 0 18px; }
    .menu-grid, .reviews-grid, .values-grid { grid-template-columns: 1fr; }
    .stat-grid { grid-template-columns: 1fr 1fr; }
    .strip-grid { grid-template-columns: 1fr; }
    .strip-item::after { display: none !important; }
    .hero-ctas .btn { width: 100%; justify-content: center; }
  }

  /* Mobile slide menu */
  .mobile-menu {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(78vw, 320px); z-index: 200;
    background: var(--navy-deep); padding: 90px 32px 40px;
    transform: translateX(100%); transition: transform 0.32s var(--ease);
    box-shadow: -20px 0 60px rgba(0,0,0,0.4); display: flex; flex-direction: column; gap: 6px;
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu a { color: var(--white); font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .mobile-menu .btn { margin-top: 24px; justify-content: center; }
  .mm-close { position: absolute; top: 26px; right: 26px; background: none; border: none; color: var(--white); font-size: 2rem; cursor: pointer; line-height: 1; }
  .mm-overlay { position: fixed; inset: 0; background: rgba(14,32,50,0.5); z-index: 150; opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease); }
  .mm-overlay.open { opacity: 1; pointer-events: auto; }

  /* ---------- Order (Square) Modal ---------- */
  .order-overlay {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(14,32,50,0.62); backdrop-filter: blur(3px);
    display: flex; align-items: flex-end; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.28s var(--ease);
  }
  .order-overlay.open { opacity: 1; pointer-events: auto; }
  @media (min-width: 720px) { .order-overlay { align-items: center; padding: 24px; } }
  .order-modal {
    background: var(--cream, #fdf6e3); color: var(--navy, #1a3a5c);
    width: 100%; max-width: 760px; max-height: 92vh;
    border-radius: 22px 22px 0 0; display: flex; flex-direction: column;
    overflow: hidden; box-shadow: 0 -10px 60px rgba(0,0,0,0.3);
    transform: translateY(24px); transition: transform 0.28s var(--ease);
  }
  .order-overlay.open .order-modal { transform: translateY(0); }
  @media (min-width: 720px) { .order-modal { border-radius: 22px; } }
  .order-head {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; padding: 20px 22px; border-bottom: 1px solid rgba(26,58,92,0.12);
    background: var(--navy, #1a3a5c); color: #fff;
  }
  .order-head h3 { font-family: var(--font-head); font-size: 1.4rem; margin: 0; }
  .order-head p { font-size: 0.82rem; opacity: 0.8; margin: 2px 0 0; }
  .order-close { background: none; border: none; color: #fff; font-size: 1.9rem; line-height: 1; cursor: pointer; }
  .order-body { overflow-y: auto; padding: 18px 22px 8px; flex: 1; }
  .order-cat { font-family: var(--font-head); font-size: 1.15rem; margin: 18px 0 10px; color: var(--gold-ink, #8a5e00); }
  .order-cat:first-child { margin-top: 4px; }
  .order-item {
    display: flex; gap: 14px; align-items: center; justify-content: space-between;
    padding: 12px 0; border-bottom: 1px solid rgba(26,58,92,0.08);
  }
  .order-item-info { min-width: 0; }
  .order-item-info h4 { font-size: 1.02rem; margin: 0 0 2px; }
  .order-item-info p { font-size: 0.84rem; color: var(--muted, #5a6b7a); margin: 0; }
  .order-item-price { font-weight: 700; font-size: 0.92rem; margin-top: 3px; }
  .order-qty { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
  .order-qty button {
    width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--navy, #1a3a5c);
    background: #fff; color: var(--navy, #1a3a5c); font-size: 1.25rem; font-weight: 700;
    cursor: pointer; line-height: 1; display: grid; place-items: center;
  }
  .order-qty button:disabled { opacity: 0.3; cursor: default; }
  .order-qty .q { min-width: 22px; text-align: center; font-weight: 700; }
  .order-add {
    border: 2px solid var(--gold, #f5b800); background: var(--gold, #f5b800);
    color: var(--navy, #1a3a5c); border-radius: var(--r-pill, 999px);
    padding: 8px 16px; font-weight: 700; cursor: pointer; font-size: 0.9rem; white-space: nowrap;
  }
  /* Customizable items stack their pickers full-width below the description. */
  .order-item-custom { flex-direction: column; align-items: stretch; }
  .order-item-custom .order-controls { width: 100%; margin-top: 12px; }
  .order-item-custom .order-add { width: 100%; margin-top: 4px; }
  .order-item-custom .order-qty { justify-content: center; margin-top: 4px; }
  .order-customizable {
    font-family: var(--font-body, inherit); font-size: 0.66rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.04em; color: var(--gold-ink, #8a5e00);
    background: rgba(245,184,0,0.16); border-radius: 999px; padding: 2px 8px;
    vertical-align: middle; margin-left: 6px;
  }
  .order-mods { border: 1.5px solid rgba(26,58,92,0.14); border-radius: 12px; padding: 10px 12px; margin: 0 0 10px; }
  .order-mods legend { font-weight: 700; font-size: 0.9rem; padding: 0 4px; }
  .order-mods legend .hint { font-weight: 500; color: var(--muted, #5a6b7a); font-size: 0.78rem; }
  .order-mod {
    display: flex; align-items: center; gap: 10px; padding: 9px 10px; margin-top: 6px;
    border: 1.5px solid rgba(26,58,92,0.12); border-radius: 10px; cursor: pointer; font-size: 0.92rem;
  }
  .order-mod.on { border-color: var(--gold, #f5b800); background: rgba(245,184,0,0.08); }
  .order-mod input { width: 18px; height: 18px; accent-color: var(--navy, #1a3a5c); flex-shrink: 0; }
  .order-mod-name { flex: 1; }
  .order-mod-price { font-weight: 700; color: var(--gold-ink, #8a5e00); }
  .order-foot {
    border-top: 1px solid rgba(26,58,92,0.14); padding: 16px 22px;
    display: flex; align-items: center; gap: 14px; background: #fff;
  }
  .order-total { font-family: var(--font-head); font-size: 1.25rem; font-weight: 800; }
  .order-total span { color: var(--gold-ink, #8a5e00); }
  .order-foot .btn { flex: 1; justify-content: center; }
  .order-foot .btn:disabled { opacity: 0.55; cursor: default; }
  .order-note { width: 100%; border: 2px solid rgba(26,58,92,0.18); border-radius: 12px; padding: 10px 12px; font: inherit; resize: vertical; margin-bottom: 4px; }
  .order-msg { padding: 0 22px 14px; color: #b00020; font-weight: 600; font-size: 0.92rem; }
  .order-loading { padding: 40px 22px; text-align: center; color: var(--muted, #5a6b7a); }
  .order-empty-note { padding: 8px 22px 0; font-size: 0.86rem; color: var(--muted, #5a6b7a); }
  body.order-open { overflow: hidden; }
