/*
Theme Name: OHANABU
Theme URI: https://ohanabu.com
Author: flower shop OHANABU
Author URI: https://ohanabu.com
Description: 名古屋市中川区八田町の花屋 flower shop OHANABU 公式テーマ。ナチュラルで親しみやすい花屋サイト用。ACF対応。
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ohanabu
Tags: flower-shop, custom-theme, acf, japanese
*/

/* ============ ROOT ============ */
:root{
  --ink:        #2d2520;
  --ink-soft:   #6b5d52;
  --ink-light:  #9b8a7e;
  --rose:       #b87878;
  --rose-soft:  #d4a8a4;
  --rose-pale:  #f4ebe6;
  --sand:       #e8dfd2;
  --cream:      #f5efe6;
  --warm:       #fbf7f0;
  --leaf:       #88997a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Serif JP', serif;
  background: var(--warm);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }

/* ============ HEADER ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(251, 247, 240, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--sand);
}
.hd-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.hd-logo-en {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 15px; font-weight: 500; letter-spacing: 0.32em;
  color: var(--ink); text-transform: uppercase;
}
.hd-logo-div { width: 1px; height: 18px; background: var(--rose-soft); }
.hd-logo-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px; font-style: italic;
  color: var(--rose); letter-spacing: 0.08em;
}

.main-nav { display: flex; gap: 30px; }
.main-nav a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.26em;
  text-transform: uppercase; font-weight: 400;
  color: var(--ink-soft); text-decoration: none;
  transition: color 0.25s; position: relative;
}
.main-nav a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; right: 0; height: 1px;
  background: var(--rose);
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.3s;
}
.main-nav a:hover { color: var(--rose); }
.main-nav a:hover::after { transform: scaleX(1); }

.hbg {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; border: none; background: none; padding: 6px;
}
.hbg span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: 0.25s; }
.hbg.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hbg.open span:nth-child(2) { opacity: 0; }
.hbg.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0; z-index: 299;
  background: var(--warm); padding: 40px 32px;
  flex-direction: column; gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 14px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--ink); text-decoration: none;
  padding: 18px 0; border-bottom: 1px solid var(--sand);
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh; padding-top: 64px;
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-l {
  background: var(--cream);
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px 80px 80px;
  position: relative;
}
.hero-eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.46em;
  color: var(--rose); text-transform: uppercase;
  margin-bottom: 32px;
  display: flex; align-items: center; gap: 14px;
  animation: fadein 0.8s 0.1s both;
}
.hero-eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--rose-soft);
}
.hero-catch {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 56px);
  font-style: italic; font-weight: 400;
  line-height: 1.5; color: var(--ink);
  margin-bottom: 28px;
  animation: up 0.8s 0.25s both;
}
.hero-catch em {
  font-style: normal; color: var(--rose);
  position: relative; z-index: 1;
}
.hero-catch em::after {
  content: ''; position: absolute;
  bottom: 2px; left: 0; right: 0; height: 8px;
  background: var(--rose-pale); z-index: -1;
}
.hero-desc {
  font-size: 14px; font-weight: 400; line-height: 2.4;
  color: var(--ink-soft); letter-spacing: 0.06em;
  margin-bottom: 48px; max-width: 420px;
  animation: up 0.8s 0.4s both;
}
.hero-cta {
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
  animation: up 0.8s 0.55s both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 38px;
  background: var(--rose); color: #fff;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 500;
  text-decoration: none; border-radius: 2px;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(184, 120, 120, 0.22);
  cursor: pointer; border: none;
}
.btn-primary:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(45, 37, 32, 0.2);
}
.btn-primary::after { content: '→'; font-family: serif; font-size: 14px; }
.btn-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-style: italic;
  color: var(--ink-soft); text-decoration: none;
  border-bottom: 1px solid var(--sand); padding-bottom: 3px;
  transition: color 0.25s, border-color 0.25s;
}
.btn-text:hover { color: var(--rose); border-color: var(--rose); }

.hero-dog-row {
  position: absolute; bottom: 48px; left: 80px;
  display: flex; align-items: center; gap: 14px;
  animation: up 0.8s 1s both;
}
.hero-dog-row img {
  width: 72px; height: 72px;
  image-rendering: pixelated;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}
.hero-dog-lbl {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 9.5px; letter-spacing: 0.32em;
  color: var(--rose); text-transform: uppercase;
  border-left: 1px solid var(--rose-soft);
  padding-left: 14px; line-height: 1.6;
}
.hero-dog-lbl small {
  display: block; font-size: 8px; color: var(--ink-light);
  margin-top: 3px; letter-spacing: 0.2em;
}

.hero-r {
  position: relative; background: var(--rose-pale);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-photo {
  width: 100%; height: 100%; object-fit: cover;
  animation: zoomin 1.4s 0.3s ease both;
}
.hero-dog-jump {
  position: absolute; bottom: 32px; right: 32px;
  width: 96px; height: 96px;
  image-rendering: pixelated;
  animation: bounce 2s ease-in-out infinite;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
  z-index: 2;
}
.hero-r-tag {
  position: absolute; bottom: 36px; left: 36px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 9.5px; letter-spacing: 0.4em;
  color: #fff; text-transform: uppercase;
  background: rgba(45, 37, 32, 0.5);
  backdrop-filter: blur(4px);
  padding: 8px 16px; border-radius: 2px;
}

/* ============ SECTION ============ */
.sec { padding: 100px 80px; }
.s-en {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.46em;
  color: var(--rose); text-transform: uppercase;
  display: block; margin-bottom: 14px;
}
.s-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 42px);
  font-style: italic; font-weight: 400;
  color: var(--ink); line-height: 1.3;
  margin-bottom: 16px;
}
.s-rule { width: 32px; height: 1px; background: var(--rose-soft); margin-bottom: 48px; }

.rv {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.rv.on { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.22s; }
.d3 { transition-delay: 0.34s; }

/* ============ ABOUT ============ */
.about-sec {
  background: var(--warm);
  display: grid; grid-template-columns: 1fr 1fr; gap: 96px;
  align-items: center;
}
.about-img {
  position: relative; aspect-ratio: 4/5;
  background: var(--cream);
  overflow: hidden;
  border-radius: 2px;
}
.about-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-img-lbl {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 24px;
  background: linear-gradient(transparent, rgba(45, 37, 32, 0.5));
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.92); text-transform: uppercase;
}
.about-txt p {
  font-size: 14px; font-weight: 400; line-height: 2.6;
  color: var(--ink-soft); margin-bottom: 32px;
  letter-spacing: 0.04em;
}
.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  padding: 7px 18px; border: 1px solid var(--sand);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.2em;
  color: var(--ink-soft); text-transform: uppercase;
  transition: all 0.25s; cursor: default;
  background: var(--cream);
  border-radius: 2px;
}
.tag:hover { border-color: var(--rose-soft); color: var(--rose); background: var(--rose-pale); }

/* ============ GALLERY ============ */
.gallery-sec { background: var(--cream); }
.gallery-top {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 40px;
}
.view-all {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.32em;
  color: var(--ink-soft); text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid var(--sand);
  padding-bottom: 3px; transition: all 0.25s;
}
.view-all:hover { color: var(--rose); border-color: var(--rose); }

.grd {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: 10px;
}
.gi {
  overflow: hidden; cursor: pointer; position: relative;
  border-radius: 2px;
}
.gi::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(45, 37, 32, 0); transition: background 0.4s;
}
.gi:hover::after { background: rgba(45, 37, 32, 0.1); }
.gi img.ph {
  width: 100%; height: 100%; min-height: 220px;
  object-fit: cover; transition: transform 0.6s ease;
}
.gi:hover img.ph { transform: scale(1.06); }
.gi .ph-emoji {
  width: 100%; min-height: 220px;
  display: flex; align-items: center; justify-content: center;
  font-size: 52px;
  background: linear-gradient(145deg, var(--rose-pale), var(--sand));
}
.gi-lbl {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 16px 14px;
  background: linear-gradient(transparent, rgba(45, 37, 32, 0.6));
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.92); text-transform: uppercase;
}
.g1 { grid-column: span 6; }
.g2 { grid-column: span 3; }
.g3 { grid-column: span 3; }
.g4 { grid-column: span 4; }
.g5 { grid-column: span 4; }
.g6 { grid-column: span 4; }

/* ============ MENU ============ */
.menu-sec { background: var(--warm); }
.menu-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--sand);
  border-radius: 2px;
  overflow: hidden;
}
.mc {
  padding: 44px 28px; border-right: 1px solid var(--sand);
  transition: background 0.3s; position: relative; overflow: hidden;
  background: var(--warm);
}
.mc:last-child { border-right: none; }
.mc::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--rose);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.mc:hover { background: var(--rose-pale); }
.mc:hover::after { transform: scaleX(1); }
.mc-n {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.4em;
  color: var(--rose-soft); display: block; margin-bottom: 24px; font-weight: 400;
}
.mc-icon { font-size: 30px; margin-bottom: 18px; display: block; }
.mc h3 {
  font-size: 14px; font-weight: 500;
  color: var(--ink); margin-bottom: 10px; letter-spacing: 0.04em;
}
.mc p {
  font-size: 12px; font-weight: 400;
  color: var(--ink-soft); line-height: 2.2; letter-spacing: 0.04em;
}
.mc-price {
  display: block; margin-top: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-style: italic;
  color: var(--rose);
}

/* ============ NEWS ============ */
.news-sec {
  background: var(--cream);
  display: grid; grid-template-columns: 240px 1fr; gap: 96px;
}
.news-side p {
  font-size: 13px; font-weight: 400; line-height: 2.6;
  color: var(--ink-soft);
}
.nl { border-top: 1px solid var(--sand); }
.ni {
  display: grid; grid-template-columns: 96px 80px 1fr; gap: 20px;
  padding: 24px 0; border-bottom: 1px solid var(--sand);
  align-items: start; text-decoration: none;
  transition: background 0.2s;
}
.ni:hover { background: rgba(255, 255, 255, 0.4); }
.ni-date {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.14em;
  color: var(--rose-soft); padding-top: 3px;
}
.ni-cat {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 9px; letter-spacing: 0.2em;
  color: var(--ink-soft); text-transform: uppercase;
  border: 1px solid var(--sand); padding: 4px 10px;
  width: fit-content; margin-top: 1px;
  background: var(--warm);
}
.ni-txt {
  font-size: 13px; font-weight: 400;
  color: var(--ink); line-height: 2.1; letter-spacing: 0.04em;
}

/* ============ ORDER ============ */
.order-sec {
  background: var(--rose-pale); padding: 100px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 96px;
  align-items: center; position: relative; overflow: hidden;
}
.order-sec::before {
  content: 'OHANABU'; position: absolute;
  right: -24px; top: 50%; transform: translateY(-50%);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 120px; font-weight: 300;
  color: rgba(184, 120, 120, 0.06);
  letter-spacing: 0.12em; line-height: 1; pointer-events: none;
}
.order-txt p {
  font-size: 13px; font-weight: 400;
  color: var(--ink-soft); line-height: 2.6;
  letter-spacing: 0.06em;
}
.order-info {
  margin-top: 24px; padding: 20px 24px;
  background: rgba(255, 255, 255, 0.6);
  border-left: 3px solid var(--rose);
  border-radius: 2px;
}
.order-info dt {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 9.5px; letter-spacing: 0.28em;
  color: var(--rose); text-transform: uppercase;
  margin-bottom: 4px;
}
.order-info dd {
  font-size: 14px; color: var(--ink); margin-bottom: 14px;
  font-weight: 500;
}
.order-info dd:last-child { margin-bottom: 0; }

.order-form {
  background: var(--warm); border: 1px solid var(--sand);
  padding: 44px; border-radius: 2px;
}
.order-form h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.38em;
  color: var(--rose); text-transform: uppercase;
  margin-bottom: 28px; font-weight: 500;
}
.fr { margin-bottom: 18px; }
.fr label {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 9px; letter-spacing: 0.28em;
  color: var(--ink-soft); text-transform: uppercase;
  margin-bottom: 8px; font-weight: 400;
}
.fr input, .fr textarea {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid var(--sand);
  padding: 10px 0;
  font-family: 'Noto Serif JP', serif;
  font-size: 13px; font-weight: 400;
  color: var(--ink); outline: none;
  transition: border-color 0.25s;
}
.fr input:focus, .fr textarea:focus { border-bottom-color: var(--rose); }
.fr input::placeholder, .fr textarea::placeholder {
  color: var(--ink-light); font-size: 12px;
}
.fr textarea { height: 80px; resize: none; }
.fr-btn {
  width: 100%; padding: 16px;
  background: var(--rose); color: #fff;
  border: none;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.36em;
  text-transform: uppercase; cursor: pointer;
  margin-top: 12px; font-weight: 500;
  transition: background 0.3s; border-radius: 2px;
}
.fr-btn:hover { background: var(--ink); }

/* ============ ACCESS ============ */
.access-sec {
  background: var(--warm);
  display: grid; grid-template-columns: 1fr 1fr; gap: 96px;
  align-items: start;
}
.itbl { width: 100%; border-collapse: collapse; }
.itbl tr { border-bottom: 1px solid var(--sand); }
.itbl th {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 9px; letter-spacing: 0.3em;
  color: var(--rose); text-transform: uppercase; font-weight: 400;
  text-align: left; padding: 16px 0; width: 90px; vertical-align: top;
}
.itbl td {
  font-size: 13px; font-weight: 400;
  color: var(--ink); padding: 16px 0; line-height: 2.1;
  letter-spacing: 0.04em;
}
.map-box {
  border: 1px solid var(--sand);
  height: 360px; border-radius: 2px; overflow: hidden;
}
.map-box iframe { width: 100%; height: 100%; border: 0; display: block; }
.dog-row {
  margin-top: 24px; padding: 18px 22px;
  border: 1px solid var(--sand);
  display: flex; align-items: center; gap: 16px;
  background: var(--cream); border-radius: 2px;
}
.dog-row img {
  width: 56px; height: 56px;
  image-rendering: pixelated;
}
.dog-row p {
  font-size: 13px; font-weight: 400;
  color: var(--ink-soft); line-height: 1.9;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink); padding: 56px 80px 32px;
}
.ft-top {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 32px; border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}
.ft-en {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 16px; font-weight: 500; letter-spacing: 0.34em;
  color: rgba(255, 255, 255, 0.85); text-transform: uppercase;
}
.ft-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px; font-style: italic;
  color: rgba(212, 168, 164, 0.6);
  display: block; margin-top: 5px; letter-spacing: 0.1em;
}
.ft-dog { width: 56px; height: 56px; image-rendering: pixelated; opacity: 0.85; }
.ft-nav { display: flex; gap: 28px; }
.ft-nav a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.26em;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none; text-transform: uppercase;
  transition: color 0.25s;
}
.ft-nav a:hover { color: var(--rose-soft); }
.ft-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.1em;
}
.ft-bottom span { font-family: 'Josefin Sans', sans-serif; }

/* ============ ANIMATIONS ============ */
@keyframes up { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
@keyframes zoomin { from { transform: scale(1.06); } to { transform: scale(1); } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ============ SINGLE / ARCHIVE ============ */
.page-content { padding: 120px 80px 80px; max-width: 800px; margin: 0 auto; }
.page-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-style: italic; font-weight: 400;
  color: var(--ink); margin-bottom: 12px; line-height: 1.3;
}
.page-meta {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--rose); text-transform: uppercase;
  margin-bottom: 32px;
}
.page-content .entry-content { font-size: 15px; line-height: 2.2; color: var(--ink-soft); }
.page-content .entry-content p { margin-bottom: 1.4em; }
.page-content .entry-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-style: italic;
  color: var(--ink); margin: 2em 0 0.8em;
}
.page-content img { margin: 1.5em 0; border-radius: 2px; }
.back-link {
  display: inline-block; margin-top: 40px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.26em;
  color: var(--rose); text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid var(--rose-soft);
  padding-bottom: 3px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .site-header { padding: 0 20px; }
  .main-nav { display: none; }
  .hbg { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-l { padding: 48px 24px 100px; }
  .hero-r { height: 70vw; min-height: 280px; }
  .hero-dog-row { left: 24px; bottom: 24px; }
  .hero-dog-row img { width: 56px; height: 56px; }
  .hero-dog-jump { width: 72px; height: 72px; bottom: 16px; right: 16px; }
  .hero-cta { gap: 14px; }
  .btn-primary { padding: 14px 28px; font-size: 10.5px; }

  .sec { padding: 64px 24px; }
  .about-sec, .news-sec, .order-sec, .access-sec {
    grid-template-columns: 1fr; gap: 40px;
  }
  .order-sec { padding: 64px 24px; }

  .grd { grid-template-columns: repeat(2, 1fr); }
  .g1, .g2, .g3, .g4, .g5, .g6 { grid-column: span 1; }
  .gi img.ph, .gi .ph-emoji { min-height: 180px; }

  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .mc { padding: 32px 20px; }
  .mc:nth-child(1), .mc:nth-child(3) { border-right: 1px solid var(--sand); }
  .mc:nth-child(2) { border-right: none; }
  .mc:nth-child(1), .mc:nth-child(2) { border-bottom: 1px solid var(--sand); }

  .ni { grid-template-columns: 80px 1fr; gap: 14px; }
  .ni-cat { display: none; }

  .order-form { padding: 28px 22px; }
  .map-box { height: 280px; }

  .site-footer { padding: 40px 24px 24px; }
  .ft-top { flex-direction: column; gap: 20px; text-align: center; padding-bottom: 24px; }
  .ft-nav { justify-content: center; flex-wrap: wrap; gap: 18px; }
  .ft-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-catch { font-size: 28px; line-height: 1.6; }
  .hero-desc { font-size: 13px; line-height: 2.2; }
  .s-h { font-size: 24px; }
  .sec { padding: 56px 20px; }
}
