    @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&amp;family=Lato:wght@300;400;700&amp;display=swap');

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --cream: #fdf6ec;
      --warm-white: #fffaf4;
      --brown: #5c3d2e;
      --brown-mid: #8b5e3c;
      --tan: #c8a97e;
      --tan-light: #e8d5b7;
      --chalk: #f5f0e8;
      --dark: #2e1f14;
      --text: #3d2b1f;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Lato', sans-serif;
      background: var(--cream);
      color: var(--text);
      line-height: 1.6;
    }

    /* ── HEADER ── */
    header {
      position: sticky; top: 0; z-index: 100;
      background: var(--brown);
      padding: 0 2rem;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 0.5rem;
      box-shadow: 0 2px 12px rgba(0,0,0,0.25);
    }



    .logo {
      font-family: 'Playfair Display', serif;
      color: var(--tan-light);
      font-size: clamp(1rem, 2.5vw, 1.3rem);
      padding: 1rem 0;
      letter-spacing: 0.03em;
      line-height: 1.2;
    }
    .logo span { display: block; font-size: 0.65em; font-weight: 300; color: var(--tan); letter-spacing: 0.15em; text-transform: uppercase; }

    .header-right { display: flex; align-items: center; flex-wrap: wrap; gap: 0.9rem; }

    nav { display: flex; flex-wrap: wrap; gap: 0.25rem; }
    nav a {
      color: var(--tan-light);
      text-decoration: none;
      font-size: 0.85rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.5rem 0.75rem;
      border-radius: 4px;
      transition: background 0.2s, color 0.2s;
    }
    nav a:hover { background: var(--brown-mid); color: #fff; }

    /* Language toggle */
    .lang-toggle {
      display: flex; gap: 0.25rem; align-items: center;
      border-left: 1px solid rgba(200,169,126,0.3);
      padding-left: 0.75rem;
      margin-left: 0.25rem;
    }
    .lang-btn {
      background: transparent;
      border: 1px solid transparent;
      color: var(--tan-light);
      font-size: 0.75rem;
      font-family: 'Lato', sans-serif;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.3rem 0.55rem;
      border-radius: 4px;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s, color 0.2s;
    }
    .lang-btn:hover { background: var(--brown-mid); color: #fff; }
    .lang-btn.active { background: var(--tan); color: var(--dark); border-color: var(--tan); font-weight: 700; }

    /* ── HERO ── */
    .hero {
      min-height: 92vh;
      background: linear-gradient(160deg, #3a2214 0%, #6b3f24 50%, #8b5e3c 100%);
      display: flex; align-items: center; justify-content: center;
      text-align: center;
      padding: 4rem 2rem;
      position: relative;
      overflow: hidden;
    }
    .hero::after {
      content: '🥐';
      position: absolute; font-size: 12rem; opacity: 0.04;
      bottom: -2rem; right: -2rem; pointer-events: none;
    }

    .hero-content { position: relative; max-width: 700px; }

    .hero-badge {
      display: inline-block;
      border: 1.5px solid var(--tan);
      color: var(--tan);
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 0.35rem 1.2rem;
      border-radius: 50px;
      margin-bottom: 1.5rem;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 7vw, 5rem);
      color: var(--tan-light);
      line-height: 1.1;
      margin-bottom: 0.5rem;
    }
    .hero h1 em { color: var(--tan); font-style: italic; }

    .hero-sub {
      font-size: clamp(1rem, 2.5vw, 1.25rem);
      color: #d4b896;
      margin: 1rem 0 2.5rem;
      font-weight: 300;
      letter-spacing: 0.04em;
    }

    .btn {
      display: inline-block;
      padding: 0.85rem 2.2rem;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      cursor: pointer;
    }
    .btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
    .btn-primary { background: var(--tan); color: var(--dark); }
    .btn-outline { background: transparent; border: 2px solid var(--tan-light); color: var(--tan-light); margin-left: 1rem; }

    /* ── SECTION COMMONS ── */
    section { padding: 5rem 2rem; }
    .section-label {
      text-align: center;
      font-size: 0.75rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--brown-mid);
      margin-bottom: 0.5rem;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      color: var(--brown);
      text-align: center;
      margin-bottom: 1rem;
    }
    .section-divider {
      width: 60px; height: 3px;
      background: var(--tan);
      margin: 0 auto 3rem;
      border-radius: 2px;
    }

    /* ── MENU HIGHLIGHTS ── */
    #menu { background: var(--dark); }
    #menu .section-label { color: var(--tan); }
    #menu .section-title { color: var(--tan-light); }
    #menu .section-divider { background: var(--tan); }

    .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .menu-card {
      background: #1e1008;
      border: 1px solid #3a2a1a;
      border-radius: 12px;
      overflow: hidden;
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .menu-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.5); }
    .menu-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
    .menu-card-body { padding: 1.25rem; }
    .menu-card-cat { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--tan); margin-bottom: 0.3rem; }
    .menu-card-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--tan-light); margin-bottom: 0.4rem; }
    .menu-card-desc { font-size: 0.85rem; color: #a08060; line-height: 1.5; margin-bottom: 0.75rem; }
    .menu-card-price { font-size: 1.1rem; font-weight: 700; color: var(--tan); }

    /* ── ABOUT ── */
    #about { background: var(--warm-white); }
    .about-inner {
      max-width: 900px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
    }
    .about-img { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 30px rgba(92,61,46,0.2); }
    .about-img img { width: 100%; display: block; }
    .about-text h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--brown); margin-bottom: 1rem; }
    .about-text p { color: #5a4030; line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; }
    .about-tag {
      display: inline-block;
      background: var(--tan-light); color: var(--brown);
      font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
      padding: 0.3rem 0.9rem; border-radius: 50px; margin: 0.25rem 0.25rem 0 0;
    }

    /* ── HOURS &amp; LOCATION ── */
    #hours { background: var(--chalk); }
    .hours-grid {
      max-width: 900px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
    }
    .hours-box, .location-box {
      background: #fff; border-radius: 16px; padding: 2rem;
      box-shadow: 0 4px 20px rgba(92,61,46,0.08);
    }
    .hours-box h3, .location-box h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem; color: var(--brown); margin-bottom: 1.25rem;
      display: flex; align-items: center; gap: 0.5rem;
    }
    .hours-row {
      display: flex; justify-content: space-between;
      padding: 0.5rem 0; border-bottom: 1px dashed var(--tan-light);
      font-size: 0.9rem; color: var(--text);
    }
    .hours-row:last-child { border-bottom: none; }
    .hours-row .day { font-weight: 700; color: var(--brown-mid); }
    .closed { color: #b07070 !important; }

    .location-box p { font-size: 0.9rem; color: #5a4030; line-height: 1.7; margin-bottom: 1rem; }
    .map-placeholder {
      background: var(--tan-light); border-radius: 10px; height: 140px;
      display: flex; align-items: center; justify-content: center;
      color: var(--brown-mid); font-size: 0.85rem; letter-spacing: 0.05em;
    }

    /* ── CONTACT ── */
    #contact {
      background: linear-gradient(135deg, var(--brown) 0%, #3a2214 100%);
      text-align: center;
    }
    #contact .section-label { color: var(--tan); }
    #contact .section-title { color: var(--tan-light); }
    #contact .section-divider { background: var(--tan); }
    #contact p { color: #c4a07a; max-width: 520px; margin: 0 auto 2rem; font-size: 1rem; line-height: 1.7; }
    .contact-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

    /* ── FOOTER ── */
    footer {
      background: var(--dark); color: #8a6a50;
      padding: 3rem 2rem; text-align: center;
    }
    .footer-logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--tan-light); margin-bottom: 0.5rem; }
    .footer-tagline { font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--tan); margin-bottom: 1.5rem; }
    .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-bottom: 1.5rem; }
    .footer-links a { color: #8a6a50; text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
    .footer-links a:hover { color: var(--tan); }
    .footer-social { display: flex; justify-content: center; gap: 1rem; margin-bottom: 1.5rem; }
    .footer-social a {
      width: 36px; height: 36px; border-radius: 50%;
      border: 1px solid #3a2a1a;
      display: flex; align-items: center; justify-content: center;
      color: #8a6a50; text-decoration: none; font-size: 0.9rem;
      transition: border-color 0.2s, color 0.2s;
    }
    .footer-social a:hover { border-color: var(--tan); color: var(--tan); }
    .footer-copy { font-size: 0.75rem; color: #5a4030; }

    /* ── RESPONSIVE ── */
    @media (max-width: 700px) {
      .about-inner { grid-template-columns: 1fr; }
      .hours-grid { grid-template-columns: 1fr; }
      .btn-outline { margin-left: 0; }
      header { justify-content: center; }
      .logo { text-align: center; }
      .header-right { justify-content: center; }
      .lang-toggle { border-left: none; padding-left: 0; }
    }

    /*
Source - https://stackoverflow.com/a/25941018
Posted by brenna, modified by community. See post 'Timeline' for change history
Retrieved 2026-05-02, License - CC BY-SA 4.0
*/

.svg-container {
 width: auto;
 height: auto;
 resize: none;
 overflow: auto;
 /* border: 1px dashed #aaa;*/
}

.svg-xy {
 width: 99%;
 height: 99%;
}