/* =====================================================================
   SAKURA — Sushi & Japanese Restaurant Website Template
   Plain HTML5 + CSS3 + vanilla JS. No frameworks. No build step.
   ---------------------------------------------------------------------
   REBRAND: edit the CSS variables in :root below. Change --accent (the
   single red), --bg (off-white), --ink (near-black) and the fonts.
   Replace the name "Sakura" in the HTML files + logo.
   ===================================================================== */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Colors — calm, zen, minimal */
  --bg:          #faf8f5;   /* off-white background            */
  --bg-soft:     #ffffff;   /* cards / surfaces                */
  --bg-warm:     #f3efe8;   /* alternating section             */
  --ink:         #1a1a1a;   /* near-black text / headings      */
  --ink-soft:    #4a4744;   /* body text                       */
  --muted:       #8a857e;   /* muted / captions                */
  --accent:      #c1272d;   /* the single red accent           */
  --accent-dark: #9d1f24;   /* red hover                       */
  --white:       #ffffff;
  --line:        #e7e2d9;   /* hairline border                 */

  /* Typography */
  --font-head: "Cormorant", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --radius: 4px;
  --radius-sm: 3px;
  --shadow-sm: 0 4px 18px rgba(26, 26, 26, 0.05);
  --shadow-md: 0 16px 44px rgba(26, 26, 26, 0.09);
  --shadow-lg: 0 30px 70px rgba(26, 26, 26, 0.14);
  --header-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink-soft);
  background: var(--bg);
  line-height: 1.75;
  font-size: 16px;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.1; font-weight: 600; color: var(--ink); letter-spacing: .01em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 500; }
h3 { font-size: 1.45rem; }
p  { color: var(--ink-soft); }

/* ---------- LAYOUT HELPERS ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 110px 0; }
.section--warm { background: var(--bg-warm); }
.section--ink { background: var(--ink); color: var(--bg); }
.text-center { text-align: center; }
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 18px;
  display: inline-block;
}
.section-head { max-width: 640px; margin: 0 auto 64px; }
.section-head p { margin-top: 16px; font-size: 1.08rem; color: var(--muted); }
.lead { font-size: 1.18rem; color: var(--ink-soft); line-height: 1.8; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-radius: var(--radius);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s, border-color .3s;
  white-space: nowrap;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dark); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); transform: translateY(-3px); }
.btn--light { background: var(--bg); color: var(--ink); }
.btn--light:hover { background: #fff; transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--outline-light { border: 1px solid rgba(250,248,245,.45); color: var(--bg); }
.btn--outline-light:hover { background: var(--bg); color: var(--ink); }

/* =====================================================================
   HEADER (shared, sticky)
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 248, 245, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, background .3s, border-color .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(250,248,245,.96); border-bottom-color: var(--line); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 600; font-size: 1.5rem; color: var(--ink); letter-spacing: .04em; }
.logo-mark {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.2rem; color: #fff;
  background: var(--accent);
}
.logo span small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .58rem; letter-spacing: .34em; text-transform: uppercase; color: var(--muted); margin-top: 1px; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a {
  font-family: var(--font-body); font-weight: 500; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .1em;
  padding: 9px 16px; border-radius: var(--radius); color: var(--ink-soft);
  transition: color .2s; position: relative;
}
.nav-menu a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 1px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.nav-menu a:hover { color: var(--ink); }
.nav-menu a:hover::after { transform: scaleX(1); }
.nav-menu a.active { color: var(--accent); }
.nav-menu a.active::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-cta .btn { padding: 11px 24px; }

/* Hamburger */
.hamburger {
  display: none; width: 44px; height: 44px; border-radius: var(--radius);
  position: relative; background: transparent;
}
.hamburger span {
  position: absolute; left: 11px; right: 11px; height: 2px; border-radius: 3px;
  background: var(--ink); transition: transform .3s var(--ease), opacity .2s;
}
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 27px; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =====================================================================
   HERO (home)
   ===================================================================== */
.hero {
  position: relative; overflow: hidden;
  background: var(--bg);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  padding: 96px 0 104px;
}
.hero-text h1 { margin-bottom: 24px; }
.hero-text .lead { margin-bottom: 38px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 44px; flex-wrap: wrap; }
.hero-stats .stat strong { font-family: var(--font-head); font-size: 2.1rem; color: var(--ink); display: block; font-weight: 600; }
.hero-stats .stat span { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .14em; }

/* Hero visual */
.hero-art { position: relative; }
.hero-art .frame {
  position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
}
.hero-art .frame img { width: 100%; height: 560px; object-fit: cover; }
.hero-art .badge {
  position: absolute; left: -26px; bottom: 38px;
  background: var(--bg-soft); padding: 18px 24px; border-radius: var(--radius);
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 14px;
}
.hero-art .badge .seal { width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-size: 1.3rem; flex: none; }
.hero-art .badge b { font-family: var(--font-head); font-size: 1.2rem; color: var(--ink); display: block; line-height: 1.2; }
.hero-art .badge small { color: var(--muted); font-size: .78rem; }

/* =====================================================================
   PAGE BANNER (inner pages)
   ===================================================================== */
.page-banner {
  position: relative; padding: 86px 0 78px; text-align: center; color: var(--bg);
  background: var(--ink); overflow: hidden;
}
.page-banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 78% -10%, rgba(193,39,45,.5), transparent 60%);
  opacity: .9;
}
.page-banner .container { position: relative; }
.page-banner h1 { color: #fff; margin-bottom: 14px; font-size: clamp(2.3rem, 5vw, 3.6rem); }
.page-banner p { color: rgba(250,248,245,.78); max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; gap: 9px; justify-content: center; align-items: center; margin-top: 22px; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; }
.breadcrumb a { color: rgba(250,248,245,.7); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { opacity: .4; }
.breadcrumb .current { color: var(--accent); font-weight: 600; }

/* =====================================================================
   CARDS / GRIDS
   ===================================================================== */
.grid { display: grid; gap: 30px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: 12px; }
.card p { font-size: .96rem; }
.icon-badge {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  font-size: 1.4rem; margin-bottom: 22px; color: var(--accent);
  border: 1px solid var(--line); background: var(--bg);
}

/* Dish / signature cards (with photos) */
.dish { overflow: hidden; padding: 0; background: var(--bg-soft); }
.dish .thumb { position: relative; overflow: hidden; }
.dish .thumb img { width: 100%; height: 240px; object-fit: cover; transition: transform .6s var(--ease); }
.dish:hover .thumb img { transform: scale(1.05); }
.dish .thumb .tag { position: absolute; top: 16px; left: 16px; background: var(--bg-soft); color: var(--accent); font-weight: 600; font-size: .66rem; text-transform: uppercase; letter-spacing: .12em; padding: 6px 13px; border-radius: 50px; box-shadow: var(--shadow-sm); }
.dish .body { padding: 26px 28px 30px; }
.dish .body .row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.dish .body h3 { font-size: 1.3rem; }
.dish .body .price { font-family: var(--font-head); font-weight: 600; color: var(--accent); font-size: 1.3rem; white-space: nowrap; }
.dish .body p { font-size: .92rem; margin-top: 8px; color: var(--muted); }

/* =====================================================================
   SPLIT SECTIONS
   ===================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-visual {
  border-radius: var(--radius); position: relative; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.split-visual img { width: 100%; height: 480px; object-fit: cover; }
.split-text h2 { margin-bottom: 20px; }
.split-text p + p { margin-top: 16px; }
.check-list { margin-top: 26px; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--ink-soft); }
.check-list li::before { content: "—"; flex: none; color: var(--accent); font-weight: 600; }

/* =====================================================================
   HOURS / LOCATION STRIP
   ===================================================================== */
.strip { background: var(--ink); color: var(--bg); border-radius: var(--radius); padding: 48px; display: grid; grid-template-columns: repeat(3,1fr); gap: 34px; box-shadow: var(--shadow-md); }
.strip .item { display: flex; gap: 18px; align-items: flex-start; }
.strip .item .ic { font-size: 1.5rem; color: var(--accent); }
.strip .item h4 { color: #fff; font-size: 1.05rem; margin-bottom: 6px; font-family: var(--font-body); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; font-size: .82rem; }
.strip .item p { color: rgba(250,248,245,.74); font-size: .94rem; }

/* =====================================================================
   GALLERY TEASER (home strip)
   ===================================================================== */
.gallery-teaser { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-teaser .tile { aspect-ratio: 1; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.gallery-teaser .tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-teaser .tile:hover img { transform: scale(1.06); }

/* =====================================================================
   TESTIMONIAL
   ===================================================================== */
.quote-card { max-width: 760px; margin: 0 auto; text-align: center; }
.quote-card .stars { color: var(--accent); font-size: 1rem; letter-spacing: 4px; margin-bottom: 22px; }
.quote-card blockquote { font-family: var(--font-head); font-size: clamp(1.5rem,2.8vw,2.1rem); color: var(--ink); line-height: 1.4; font-weight: 500; font-style: italic; }
.quote-card .who { margin-top: 28px; display: flex; gap: 14px; align-items: center; justify-content: center; }
.quote-card .avatar { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }
.quote-card .who b { font-family: var(--font-body); color: var(--ink); display: block; font-size: .95rem; }
.quote-card .who small { color: var(--muted); }

.testi-grid .card .stars { color: var(--accent); letter-spacing: 3px; margin-bottom: 14px; font-size: .9rem; }
.testi-grid .card p { color: var(--ink-soft); font-style: italic; font-family: var(--font-head); font-size: 1.2rem; line-height: 1.5; }
.testi-grid .card .who { margin-top: 22px; display: flex; align-items: center; gap: 13px; }
.testi-grid .card .avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testi-grid .card .who b { font-family: var(--font-body); font-size: .92rem; color: var(--ink); display: block; }
.testi-grid .card .who small { color: var(--muted); }

/* =====================================================================
   CTA BAND
   ===================================================================== */
.cta-band { text-align: center; }
.cta-band .inner {
  background: var(--ink); position: relative; overflow: hidden;
  border-radius: var(--radius); padding: 80px 40px; color: var(--bg); box-shadow: var(--shadow-lg);
}
.cta-band .inner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(500px 280px at 85% 120%, rgba(193,39,45,.45), transparent 60%);
}
.cta-band .inner > * { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: rgba(250,248,245,.82); max-width: 520px; margin: 0 auto 32px; }
.cta-band .hero-actions { justify-content: center; margin-bottom: 0; }

/* =====================================================================
   TEAM / CHEF
   ===================================================================== */
.team-card { text-align: center; }
.team-card .photo { width: 130px; height: 130px; border-radius: 50%; margin: 0 auto 20px; object-fit: cover; box-shadow: var(--shadow-md); }
.team-card h3 { font-size: 1.2rem; margin-bottom: 3px; }
.team-card .role { color: var(--accent); font-weight: 600; font-size: .74rem; text-transform: uppercase; letter-spacing: .16em; }
.team-card p { font-size: .92rem; margin-top: 12px; color: var(--muted); }

/* =====================================================================
   MENU PAGE
   ===================================================================== */
.menu-cat { margin-bottom: 78px; }
.menu-cat:last-child { margin-bottom: 0; }
.menu-cat-head { text-align: center; margin-bottom: 44px; }
.menu-cat-head h2 { font-size: 2.3rem; }
.menu-cat-head .jp { color: var(--accent); font-size: .9rem; letter-spacing: .3em; text-transform: uppercase; font-weight: 600; display: block; margin-bottom: 8px; }
.menu-cat-head p { font-size: .96rem; color: var(--muted); max-width: 540px; margin: 10px auto 0; }
.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 56px; max-width: 920px; margin: 0 auto; }
.menu-item { padding: 20px 0; border-bottom: 1px solid var(--line); }
.menu-item .top { display: flex; align-items: baseline; gap: 12px; }
.menu-item .name { font-family: var(--font-head); font-weight: 600; color: var(--ink); white-space: nowrap; font-size: 1.25rem; }
.menu-item .dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-5px); }
.menu-item .price { font-family: var(--font-head); font-weight: 600; color: var(--accent); font-size: 1.25rem; }
.menu-item .desc { font-size: .9rem; margin-top: 4px; color: var(--muted); }
.menu-item .badge { font-size: .62rem; background: var(--bg-warm); color: var(--accent); padding: 3px 9px; border-radius: 50px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; vertical-align: middle; }

/* Menu photo feature row */
.menu-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 80px; }

/* =====================================================================
   GALLERY PAGE
   ===================================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.tile {
  border-radius: var(--radius); position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm); cursor: pointer;
}
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.tile::after {
  content: attr(data-label); position: absolute; left: 0; right: 0; bottom: 0;
  padding: 36px 18px 16px; font-family: var(--font-head); font-size: 1.05rem; font-weight: 600; color: #fff;
  background: linear-gradient(transparent, rgba(26,26,26,.78)); text-align: left;
  opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s;
}
.tile:hover img { transform: scale(1.05); }
.tile:hover::after { opacity: 1; transform: translateY(0); }
.tile.tall { grid-row: span 2; }
.tile.wide { grid-column: span 2; }

/* =====================================================================
   RESERVATIONS / FORM PAGE
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info .info-item { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-info .info-item:last-child { border-bottom: none; }
.contact-info .info-item .ic { font-size: 1.3rem; color: var(--accent); flex: none; }
.contact-info .info-item h4 { margin-bottom: 4px; font-family: var(--font-body); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--ink); }
.contact-info .info-item p, .contact-info .info-item a { color: var(--muted); font-size: .96rem; }
.contact-info .info-item a:hover { color: var(--accent); }

.form { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-body); font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink); margin-bottom: 9px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .95rem; color: var(--ink); background: var(--bg);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(193,39,45,.12); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.field.error input, .field.error textarea, .field.error select { border-color: var(--accent); }
.field .msg { color: var(--accent); font-size: .78rem; margin-top: 6px; display: none; }
.field.error .msg { display: block; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 8px; }
.form-success { display: none; background: rgba(193,39,45,.07); border: 1px solid rgba(193,39,45,.3); color: var(--accent-dark); padding: 16px 20px; border-radius: var(--radius-sm); font-weight: 600; margin-bottom: 22px; }
.form-success.show { display: block; }

/* =====================================================================
   FOOTER (shared)
   ===================================================================== */
.site-footer { background: var(--ink); color: rgba(250,248,245,.7); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 44px; }
.footer-grid h4 { color: var(--bg); font-size: .82rem; margin-bottom: 22px; text-transform: uppercase; letter-spacing: .14em; font-family: var(--font-body); font-weight: 600; }
.footer-brand .logo { color: var(--bg); margin-bottom: 18px; }
.footer-brand .logo span small { color: var(--muted); }
.footer-brand p { font-size: .92rem; max-width: 300px; }
.footer-col a, .footer-col p { display: block; color: rgba(250,248,245,.7); font-size: .92rem; padding: 6px 0; transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: var(--accent); padding-left: 6px; }
.socials { display: flex; gap: 12px; margin-top: 10px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-size: 1rem; background: rgba(250,248,245,.07); padding: 0; transition: background .2s; }
.socials a:hover { background: var(--accent); padding-left: 0; }
.footer-bottom { border-top: 1px solid rgba(250,248,245,.12); margin-top: 56px; padding-top: 28px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .84rem; }
.footer-bottom a:hover { color: var(--accent); }

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .09s; }
.reveal.d2 { transition-delay: .18s; }
.reveal.d3 { transition-delay: .27s; }
.no-js .reveal { opacity: 1; transform: none; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .menu-features { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-art { order: -1; }
  .hero-art .frame img { height: 420px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-visual img { height: 380px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-teaser { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .section { padding: 72px 0; }
  .hamburger { display: block; }
  .nav-menu {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--bg); padding: 18px 22px 28px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-menu a { padding: 14px 16px; font-size: .95rem; }
  .nav-menu a::after { display: none; }
  .nav-cta .btn { display: none; }
  .strip { grid-template-columns: 1fr; gap: 24px; padding: 36px; }
  .menu-list { grid-template-columns: 1fr; gap: 0; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .hero-stats { gap: 30px; }
  .hero-art .badge { left: 0; }
}

@media (max-width: 480px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .menu-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-teaser { grid-template-columns: 1fr 1fr; }
  .tile.wide, .tile.tall { grid-column: span 1; grid-row: span 1; }
  .container { padding: 0 18px; }
  .cta-band .inner { padding: 56px 24px; }
  .form { padding: 28px; }
}
