/* ==========================================================================
   ひなたキッチン(架空店舗) サイト共通スタイル
   構成:
   0.  共通変数
   1.  リセット・基本設定
   2.  共通パーツ
   3.  ローディング画面
   4.  ヘッダー・ナビゲーション
   5.  ヒーロー
   6.  お店について
   7.  おすすめメニュー
   8.  季節限定メニュー
   9.  新着情報
   10. Instagram
   11. SNS
   12. ギャラリー
   13. お客様の声
   14. アクセス
   15. お問い合わせ(ご予約)
   16. フッター・モバイル固定アクションバー
   17. レスポンシブ
   色を変えたい場合は「0. 共通変数」だけを書き換えれば全体に反映されます。
   ========================================================================== */

/* ==========================================================================
   0. 共通変数
   ========================================================================== */
:root{
  --color-cream:     #fdf9f2;   /* ページ全体の背景 */
  --color-beige:     #f3e9d8;   /* セクション切り替え用の背景 */
  --color-white:     #ffffff;
  --color-ink:       #3a332c;   /* 本文テキスト(温かみのある濃茶) */
  --color-brown:     #5c4632;   /* 見出し */
  --color-brown-dk:  #40311f;
  --color-orange:    #e2894c;   /* メインアクセント */
  --color-orange-dk: #c96f36;
  --color-green:     #4c5d43;   /* サブアクセント(深緑) */
  --color-red:       #a6503b;   /* 季節限定・タグ用の落ち着いた赤 */
  --color-muted:     #7a6f61;
  --color-border:    #e8dcc7;

  --font-jp: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-en: "Quicksand", "Noto Sans JP", sans-serif;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 26px;
  --shadow-soft: 0 10px 28px rgba(92,70,50,0.10);
  --container: 1140px;
  --transition: 220ms ease;
}

/* ==========================================================================
   1. リセット・基本設定
   ========================================================================== */
*, *::before, *::after{ box-sizing:border-box; }
*{ margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family:var(--font-jp);
  color:var(--color-ink);
  background:var(--color-cream);
  line-height:1.9;
  font-size:15.5px;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img, svg{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul, ol{ list-style:none; }
button{ font:inherit; background:none; border:none; cursor:pointer; }
input, textarea, select{ font:inherit; color:inherit; }
h1, h2, h3{ font-family:var(--font-jp); line-height:1.5; font-weight:700; color:var(--color-brown); }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible{
  outline:2px solid var(--color-orange);
  outline-offset:3px;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ transition:none !important; animation:none !important; }
}

.skip-link{
  position:absolute; left:-999px; top:auto;
  background:var(--color-brown); color:#fff;
  padding:12px 20px; z-index:2000; border-radius:0 0 var(--radius-sm) 0;
}
.skip-link:focus{ left:0; top:0; }

/* ==========================================================================
   2. 共通パーツ
   ========================================================================== */
.container{ width:100%; max-width:var(--container); margin:0 auto; padding:0 22px; }
.section{ padding:68px 0; }
.section-alt{ background:var(--color-beige); }

.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--font-en); font-size:12.5px; font-weight:700; letter-spacing:0.2em;
  color:var(--color-orange-dk); margin-bottom:14px; text-transform:uppercase;
}
.eyebrow::before{ content:""; width:24px; height:2px; border-radius:2px; background:var(--color-orange); }

.section-head{ max-width:640px; margin:0 0 40px; }
.section-head h2{ font-size:clamp(22px,4vw,29px); margin-bottom:12px; }
.section-head p{ color:var(--color-muted); font-size:14.5px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head.center .eyebrow::before{ display:none; }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-weight:700; font-size:14.5px; padding:14px 26px; border-radius:999px;
  border:1px solid transparent; transition:background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn svg{ width:17px; height:17px; }
.btn:hover{ transform:translateY(-1px); }
.btn-primary{ background:var(--color-orange); color:#fff; }
.btn-primary:hover{ background:var(--color-orange-dk); }
.btn-outline{ background:rgba(255,255,255,0.06); color:#fff; border-color:rgba(255,255,255,0.55); }
.btn-outline:hover{ background:rgba(255,255,255,0.16); }
.btn-outline-dark{ background:transparent; color:var(--color-brown); border-color:var(--color-border); }
.btn-outline-dark:hover{ border-color:var(--color-orange); color:var(--color-orange-dk); }
.btn-line{ background:#ffffff; color:#06C755; border-color:#06C755; }
.btn-line:hover{ background:#06C755; color:#ffffff; }
.btn-lg{ padding:16px 30px; }

/* スクロールで控えめにフェードイン */
.reveal{ opacity:0; transform:translateY(16px); transition:opacity 750ms ease, transform 750ms ease; }
.reveal.is-visible{ opacity:1; transform:none; }

/* ==========================================================================
   3. ローディング画面
   ========================================================================== */
.loading-screen{
  position:fixed; inset:0; z-index:3000;
  display:flex; align-items:center; justify-content:center;
  background:var(--color-cream);
  opacity:0;
  animation:loaderFadeIn 1.8s ease forwards;
}
.loading-screen.is-leaving{
  animation:loaderFadeOut 0.8s ease forwards;
}
.loading-screen.is-hidden{ display:none; }
.loading-screen .loader-mark{
  width:120px; height:120px;
  opacity:0;
  animation:loaderMarkIn 1.8s ease forwards;
}
@keyframes loaderFadeIn{
  0%{ opacity:0; }
  100%{ opacity:1; }
}
@keyframes loaderMarkIn{
  0%{ opacity:0; transform:scale(0.86); }
  60%{ opacity:1; }
  100%{ opacity:1; transform:scale(1); }
}
@keyframes loaderFadeOut{
  0%{ opacity:1; }
  100%{ opacity:0; }
}
@media (prefers-reduced-motion: reduce){
  .loading-screen{ animation:none; opacity:1; }
  .loading-screen .loader-mark{ animation:none; opacity:1; }
}
body.is-loading{ overflow:hidden; height:100%; }

/* ==========================================================================
   4. ヘッダー・ナビゲーション
   ========================================================================== */
.site-header{
  position:sticky; top:0; z-index:200;
  background:rgba(253,249,242,0.92);
  backdrop-filter:blur(6px);
  border-bottom:1px solid var(--color-border);
}
.header-inner{
  max-width:var(--container); margin:0 auto; padding:12px 22px;
  display:flex; align-items:center; justify-content:space-between;
}
.brand{ display:flex; align-items:center; }
.brand svg{ height:34px; width:auto; }

.nav-toggle{
  display:flex; flex-direction:column; gap:5px; width:26px; height:26px;
  align-items:center; justify-content:center;
}
.nav-toggle-bars{ display:flex; flex-direction:column; gap:5px; width:20px; }
.nav-toggle-bars span{ height:2px; background:var(--color-brown); border-radius:2px; transition:transform var(--transition), opacity var(--transition); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.site-nav{
  position:fixed; top:60px; left:0; right:0; bottom:0;
  background:var(--color-cream); border-top:1px solid var(--color-border);
  transform:translateY(-8px); opacity:0; visibility:hidden;
  transition:opacity var(--transition), transform var(--transition), visibility var(--transition);
  overflow-y:auto; padding:10px 22px 30px;
}
.site-nav.is-open{ transform:translateY(0); opacity:1; visibility:visible; }
.site-nav ul{ display:flex; flex-direction:column; }
.site-nav a{ display:block; padding:14px 4px; font-size:15px; font-weight:700; border-bottom:1px solid var(--color-border); }
.site-nav a:hover{ color:var(--color-orange-dk); }
.nav-cta{ display:block; text-align:center; margin-top:18px; }

/* ==========================================================================
   5. ヒーロー
   ========================================================================== */
.hero{ position:relative; min-height:600px; display:flex; align-items:flex-end; overflow:hidden; }
.hero-media{ position:absolute; inset:0; z-index:0; }
.hero-media img{ width:100%; height:100%; object-fit:cover; transform:scale(1.03); }
.hero-overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(58,42,26,0.28) 0%, rgba(40,28,18,0.62) 100%);
}
.hero-inner{ position:relative; z-index:1; color:#fff; padding:70px 22px 58px; max-width:var(--container); margin:0 auto; width:100%; }
.hero-inner .eyebrow{ color:#f2cda3; }
.hero-inner .eyebrow::before{ background:#f2cda3; }
.hero h1{
  color:#fff; font-size:clamp(27px,6.4vw,42px); margin-bottom:18px; letter-spacing:0.01em;
  opacity:0; transform:translateY(14px); animation:heroIn 900ms ease 200ms forwards;
}
.hero-lead{
  max-width:480px; font-size:15.5px; margin-bottom:28px; color:#f4ede1;
  opacity:0; transform:translateY(14px); animation:heroIn 900ms ease 380ms forwards;
}
.hero-actions{
  display:flex; gap:12px; flex-wrap:wrap;
  opacity:0; transform:translateY(14px); animation:heroIn 900ms ease 560ms forwards;
}
@keyframes heroIn{ to{ opacity:1; transform:none; } }
@media (prefers-reduced-motion: reduce){
  .hero h1, .hero-lead, .hero-actions{ animation:none; opacity:1; transform:none; }
}

/* ==========================================================================
   6. お店について
   ========================================================================== */
.about-grid{ display:grid; gap:34px; align-items:center; }
.about-photo{ border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-soft); aspect-ratio:4/3; }
.about-photo img{ width:100%; height:100%; object-fit:cover; }
.about-copy h2{ font-size:clamp(21px,4vw,27px); margin-bottom:16px; }
.about-copy p{ color:var(--color-muted); font-size:14.5px; margin-bottom:14px; }
.about-points{ display:grid; gap:0; margin-top:22px; border-top:1px solid var(--color-border); }
.about-point{
  display:grid; grid-template-columns:auto 1fr; gap:14px; align-items:baseline;
  padding:16px 0; border-bottom:1px solid var(--color-border);
}
.about-point .mark{ flex:none; color:var(--color-orange); font-family:var(--font-en); font-weight:700; font-size:15px; }
.about-point h3{ font-size:15px; margin-bottom:4px; }
.about-point p{ margin:0; color:var(--color-muted); font-size:13.5px; }

/* ==========================================================================
   7. おすすめメニュー(写真主役・価格表示)
   ========================================================================== */
.menu-grid{ display:grid; gap:26px; }
.menu-item{
  background:var(--color-white); border-radius:var(--radius-md); overflow:hidden;
  box-shadow:var(--shadow-soft); transition:transform var(--transition), box-shadow var(--transition);
}
.menu-item:hover{ transform:translateY(-4px); }
.menu-photo{ aspect-ratio:4/3; overflow:hidden; }
.menu-photo img{ width:100%; height:100%; object-fit:cover; transition:transform 500ms ease; }
.menu-item:hover .menu-photo img{ transform:scale(1.06); }
.menu-body{ padding:18px 20px 22px; }
.menu-body-head{ display:flex; align-items:baseline; justify-content:space-between; gap:10px; margin-bottom:8px; }
.menu-body-head h3{ font-size:16px; }
.menu-price{ font-family:var(--font-en); font-weight:700; color:var(--color-orange-dk); font-size:16px; white-space:nowrap; }
.menu-body p{ color:var(--color-muted); font-size:13.5px; }

/* ==========================================================================
   8. 季節限定メニュー(通常メニューと視覚的に差別化)
   ========================================================================== */
.seasonal{
  background:linear-gradient(160deg, #eef1e6 0%, #f3e9d8 100%);
  position:relative;
}
.seasonal-head{ display:flex; align-items:flex-end; justify-content:space-between; flex-wrap:wrap; gap:16px; margin-bottom:36px; }
.seasonal-badge{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--color-green); color:#fff; font-size:12px; font-weight:700;
  padding:7px 16px; border-radius:999px; letter-spacing:0.04em;
}
.seasonal-grid{ display:grid; gap:28px; }
.seasonal-item{
  display:grid; gap:0; background:var(--color-white); border-radius:var(--radius-lg);
  overflow:hidden; box-shadow:var(--shadow-soft);
}
.seasonal-photo{ aspect-ratio:16/10; overflow:hidden; }
.seasonal-photo img{ width:100%; height:100%; object-fit:cover; }
.seasonal-body{ padding:24px 26px 28px; }
.seasonal-tag{
  display:inline-block; font-size:11.5px; font-weight:700; color:var(--color-red);
  border:1px solid var(--color-red); padding:4px 12px; border-radius:999px; margin-bottom:12px;
}
.seasonal-body h3{ font-size:19px; margin-bottom:10px; }
.seasonal-body p{ color:var(--color-muted); font-size:14px; margin-bottom:14px; }
.seasonal-price{ font-family:var(--font-en); font-weight:700; color:var(--color-red); font-size:17px; }

/* ==========================================================================
   9. 新着情報(お知らせ)
   ========================================================================== */
.news-list{ display:grid; gap:14px; }
.news-card{
  display:grid; grid-template-columns:auto 1fr; gap:18px; align-items:flex-start;
  background:var(--color-white); border:1px solid var(--color-border); border-radius:var(--radius-md);
  padding:20px 22px;
}
.news-date{ font-family:var(--font-en); font-weight:700; color:var(--color-muted); font-size:13px; white-space:nowrap; padding-top:2px; }
.news-tag{
  display:inline-block; font-size:11.5px; font-weight:700; padding:4px 11px; border-radius:999px; margin-bottom:8px;
}
.news-tag.is-menu{ background:#f2e2c8; color:var(--color-orange-dk); }
.news-tag.is-event{ background:#e4ead9; color:var(--color-green); }
.news-tag.is-close{ background:#f0dcd6; color:var(--color-red); }
.news-tag.is-campaign{ background:#f8ecd6; color:#a1791f; }
.news-card h3{ font-size:15.5px; margin-bottom:6px; }
.news-card p{ color:var(--color-muted); font-size:13.5px; }

/* ==========================================================================
   10. Instagram
   ========================================================================== */
.insta-head{ display:flex; align-items:flex-end; justify-content:space-between; flex-wrap:wrap; gap:16px; margin-bottom:30px; }
.insta-handle{ display:flex; align-items:center; gap:10px; font-weight:700; color:var(--color-brown); font-size:14.5px; }
.insta-handle svg{ width:20px; height:20px; color:var(--color-orange-dk); }
.insta-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:4px; }
.insta-post{ position:relative; aspect-ratio:1/1; overflow:hidden; }
.insta-post img{ width:100%; height:100%; object-fit:cover; transition:transform 500ms ease; }
.insta-post-overlay{
  position:absolute; inset:0; background:rgba(40,28,18,0.45);
  display:flex; align-items:center; justify-content:center; gap:16px;
  opacity:0; transition:opacity var(--transition); color:#fff; font-size:13px; font-weight:700;
}
.insta-post-overlay svg{ width:16px; height:16px; }
.insta-post-overlay span{ display:inline-flex; align-items:center; gap:5px; }
.insta-post:hover img{ transform:scale(1.08); }
.insta-post:hover .insta-post-overlay{ opacity:1; }
.insta-cta{ text-align:center; margin-top:30px; }

/* ==========================================================================
   11. SNS(コンパクトな帯)
   ========================================================================== */
.sns-band{ background:var(--color-brown); }
.sns-inner{
  display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:20px;
  padding:30px 0;
}
.sns-inner p{ color:#f0e4d3; font-size:14px; font-weight:700; }
.sns-icons{ display:flex; gap:12px; }
.sns-icon{
  width:44px; height:44px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,0.1); color:#fff; border:1px solid rgba(255,255,255,0.24);
  transition:background var(--transition), transform var(--transition);
}
.sns-icon svg{ width:19px; height:19px; }
.sns-icon:hover{ background:var(--color-orange); transform:translateY(-2px); }

/* ==========================================================================
   12. ギャラリー(あえて不揃いな配置でテンプレ感を排除)
   ========================================================================== */
.gallery-grid{
  display:grid; grid-template-columns:repeat(2,1fr); gap:12px; grid-auto-flow:dense;
}
.gallery-item{ border-radius:var(--radius-md); overflow:hidden; position:relative; }
.gallery-item img{ width:100%; height:100%; object-fit:cover; transition:transform 500ms ease; }
.gallery-item:hover img{ transform:scale(1.05); }
.gallery-item .gallery-label{
  position:absolute; left:12px; bottom:12px; z-index:1;
  font-size:11.5px; font-weight:700; color:#fff; background:rgba(40,28,18,0.55);
  padding:4px 11px; border-radius:999px;
}
.gallery-item.is-tall{ grid-row:span 2; aspect-ratio:auto; }
.gallery-item.is-wide{ grid-column:span 2; aspect-ratio:16/9; }
.gallery-item:not(.is-tall):not(.is-wide){ aspect-ratio:4/3; }

/* ==========================================================================
   13. お客様の声
   ========================================================================== */
.voice-list{ display:grid; gap:0; border-top:1px solid var(--color-border); }
.voice-item{
  padding:26px 0; border-bottom:1px solid var(--color-border);
  display:grid; grid-template-columns:auto 1fr; gap:16px; align-items:flex-start;
}
.voice-mark{ font-family:Georgia,serif; font-size:38px; line-height:1; color:var(--color-orange); opacity:0.55; font-weight:700; }
.voice-item p{ font-size:14.5px; margin-bottom:10px; }
.voice-item footer{ font-size:13px; color:var(--color-muted); font-weight:700; }

/* ==========================================================================
   14. アクセス
   ========================================================================== */
.access-grid{ display:grid; gap:26px; }
.access-photo{ border-radius:var(--radius-lg); overflow:hidden; aspect-ratio:16/10; box-shadow:var(--shadow-soft); }
.access-photo img{ width:100%; height:100%; object-fit:cover; }
.access-table{ background:var(--color-white); border:1px solid var(--color-border); border-radius:var(--radius-md); overflow:hidden; }
.access-table th, .access-table td{ text-align:left; padding:15px 18px; font-size:14.5px; border-bottom:1px solid var(--color-border); }
.access-table tr:last-child th, .access-table tr:last-child td{ border-bottom:none; }
.access-table th{ width:110px; color:var(--color-muted); font-weight:700; background:var(--color-beige); }
.access-map{ margin-top:20px; border:1px solid var(--color-border); border-radius:var(--radius-md); overflow:hidden; background:var(--color-white); }
.access-map iframe{ width:100%; height:260px; border:0; display:block; }
.map-note{ padding:10px 14px; font-size:12px; color:var(--color-muted); }

/* ==========================================================================
   15. お問い合わせ(ご予約)
   ========================================================================== */
.contact-section{ background:var(--color-brown); color:#f4ede1; }
.contact-section .eyebrow{ color:#f2cda3; }
.contact-section .eyebrow::before{ background:#f2cda3; }
.contact-section .section-head h2{ color:#fff; }
.contact-section .section-head p{ color:rgba(244,237,225,0.75); }

.contact-quick{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:34px; }

.reserve-form{
  background:var(--color-white); color:var(--color-ink);
  border-radius:var(--radius-lg); padding:28px 22px;
}
.form-grid{ display:grid; gap:18px; margin-bottom:18px; }
.form-row label{ display:block; font-size:13px; font-weight:700; margin-bottom:7px; color:var(--color-brown); }
.form-row .req{ color:var(--color-red); font-size:11.5px; margin-left:5px; }
.form-row input, .form-row textarea, .form-row select{
  width:100%; border:1px solid var(--color-border); border-radius:var(--radius-sm);
  padding:12px 14px; font-size:14.5px; background:var(--color-cream);
  transition:border-color var(--transition);
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus{ border-color:var(--color-orange); }
.form-row textarea{ min-height:110px; resize:vertical; }
#messageRow{ margin-bottom:18px; }
.form-error{ display:none; color:#a6503b; font-size:12.5px; margin-top:6px; }
.form-row.has-error .form-error{ display:block; }
.form-row.has-error input, .form-row.has-error textarea, .form-row.has-error select{ border-color:#a6503b; }
.hp-field{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.form-status{ margin-top:14px; font-size:13.5px; }
.form-status.success{ color:#2f6d4f; }
.form-status.error{ color:#a6503b; }

/* ==========================================================================
   16. フッター・モバイル固定アクションバー
   ========================================================================== */
.site-footer{ background:var(--color-brown-dk); color:#d9cdbc; padding:44px 0 100px; }
.footer-inner{ display:flex; flex-direction:column; gap:24px; }
.footer-brand svg{ height:32px; width:auto; }
.footer-brand-addr{ font-size:13px; color:#b3a695; margin-top:10px; }
.footer-nav{ display:flex; flex-wrap:wrap; gap:14px 20px; font-size:13.5px; }
.footer-nav a:hover{ color:#f2cda3; }
.footer-copy{ text-align:center; font-size:12px; color:#8c7d6a; margin-top:26px; }

/* モバイル専用の固定アクションバー(電話・LINE・Instagram・ご予約) */
.mobile-action-bar{
  position:fixed; left:0; right:0; bottom:0; z-index:250;
  display:grid; grid-template-columns:repeat(4,1fr);
  background:var(--color-white); border-top:1px solid var(--color-border);
  box-shadow:0 -6px 18px rgba(92,70,50,0.10);
  transform:translateY(100%); transition:transform var(--transition);
  padding-bottom:env(safe-area-inset-bottom,0);
}
.mobile-action-bar.is-visible{ transform:translateY(0); }
.mobile-action-bar a, .mobile-action-bar button{
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:4px;
  padding:10px 4px 8px; font-size:10.5px; font-weight:700; color:var(--color-muted);
}
.mobile-action-bar a svg, .mobile-action-bar button svg{ width:20px; height:20px; }
.mobile-action-bar .is-reserve{ color:var(--color-orange-dk); }
.mobile-action-bar .is-line{ color:#06C755; }

/* ==========================================================================
   17. レスポンシブ(モバイルファースト)
   ========================================================================== */
@media (min-width: 640px){
  .menu-grid{ grid-template-columns:repeat(2,1fr); }
  .seasonal-grid{ grid-template-columns:repeat(2,1fr); }
  .insta-grid{ grid-template-columns:repeat(3,1fr); }
  .gallery-grid{ grid-template-columns:repeat(3,1fr); }
  .access-grid{ grid-template-columns:1.1fr 0.9fr; align-items:start; }
  .form-grid{ grid-template-columns:1fr 1fr; }
}

@media (min-width: 860px){
  .mobile-action-bar{ display:none; }
  .nav-toggle{ display:none; }
  .site-nav{
    position:static; transform:none; opacity:1; visibility:visible; overflow:visible;
    background:none; border-top:none; padding:0; display:flex; align-items:center; gap:26px;
  }
  .site-nav ul{ flex-direction:row; gap:22px; }
  .site-nav a{ padding:4px 0; border-bottom:none; font-size:14px; }
  .nav-cta{ margin-top:0; }

  .section{ padding:96px 0; }
  .hero{ min-height:680px; }
  .about-grid{ grid-template-columns:1fr 1.05fr; }
  .menu-grid{ grid-template-columns:repeat(4,1fr); }
  .seasonal-item{ grid-template-columns:1fr 1fr; }
  .seasonal-item .seasonal-photo{ aspect-ratio:auto; height:100%; }
  .gallery-grid{ grid-template-columns:repeat(4,1fr); }
  .footer-inner{ flex-direction:row; align-items:flex-start; justify-content:space-between; }
  .site-footer{ padding-bottom:44px; }
}

@media (min-width: 1140px){
  .insta-grid{ grid-template-columns:repeat(6,1fr); }
}
