:root {
      --bg: #DCE9E4;
      --bg-soft: #C7D8D2;
      --accent-mid: #8BAFA3;
      --primary: #598F79;
      --primary-dark: #063629;
      --card-bg: #ffffff;
      --border: #C7D8D2;
      --text-main: #063629;
      --text-muted: #4b5563;
      --radius: 14px;
      --shadow: 0 12px 24px rgba(15,23,42,0.12);
    }

    *{margin:0; padding:0; box-sizing:border-box;}
    body{
      font-family:"Inter",sans-serif;
      background:var(--bg);
      color:var(--text-main);
      line-height:1.6;
    }
    .wrapper{
      max-width:1100px;
      margin:0 auto;
      padding:24px 16px 40px;
    }

    .page-header{margin-bottom:20px;}
    .page-kicker{
      font-size:13px;
      letter-spacing:.12em;
      text-transform:uppercase;
      color:var(--text-muted);
      margin-bottom:6px;
    }
    .page-title{
      font-family:"Playfair Display",serif;
      font-size:26px;
      color:var(--primary-dark);
      margin-bottom:6px;
    }
    .page-subtitle{
      font-size:14px;
      color:var(--text-muted);
      max-width:640px;
    }
    .accent-line{
      width:60px;
      height:3px;
      background:var(--accent-mid);
      border-radius:2px;
      margin:14px 0 16px;
    }

    .card{
      background:var(--card-bg);
      border-radius:var(--radius);
      border:1px solid var(--border);
      box-shadow:var(--shadow);
      padding:16px;
    }

    /* hero band */
    .hero-band{
      display:grid;
      grid-template-columns:1.4fr 1.1fr;
      gap:14px;
      margin-bottom:18px;
      align-items:stretch;
    }
    .hero-band .info{
      font-size:14px;
    }
    .hero-band .info h2{
      font-size:18px;
      margin-bottom:6px;
      color:var(--primary-dark);
    }

    .hero-photo{
      border-radius:12px;
      overflow:hidden;
      position:relative;
    }
    .hero-photo img{
      width:100%;
      height:100%;
      max-height:220px;
      object-fit:cover;
      display:block;
    }
    .hero-caption{
      position:absolute;
      left:10px;
      bottom:10px;
      background:rgba(6,54,41,0.9);
      color:#fff;
      padding:4px 10px;
      border-radius:999px;
      font-size:12px;
    }

    /* weekly menu */
    .menu-card h3{
      font-size:15px;
      margin-bottom:8px;
      color:var(--primary-dark);
    }
    table{
      width:100%;
      border-collapse:collapse;
      font-size:13px;
    }
    th,td{
      padding:6px 8px;
      border:1px solid #C7D8D2;
      text-align:left;
    }
    th{
      background:#f4faf7;
      font-weight:600;
    }

    .note{
      font-size:12px;
      color:var(--text-muted);
      margin-top:6px;
    }

    @media(max-width:880px){
      .hero-band{grid-template-columns:1fr;}
    }
    @media(max-width:600px){
      .page-title{font-size:22px;}
    }