/* ============================================
   こはこ — 共通スタイルシート
   index.html / menu.html / access.html で共用
   ============================================ */

/* ---- Tokens ---- */
:root {
  --bg:       #FAFAF5;
  --bg2:      #F5EDE0;
  --bg-dark:  #1E3D2F;
  --green:    #3A5E47;
  --terra:    #C86B3A;
  --text:     #1E1E1A;
  --text2:    #6B6B5E;
  --border:   #E0DAD0;
  --sage:     #7DB896;
  --mist:     #A8C9B5;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

/* ============================================
   NAV （全ページ共通）
   モバイル：ロゴ＋3リンクの1行（CTAは非表示）
   640px〜：ロゴ＋3リンク＋CTAボタン
   ============================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,250,245,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  height: 56px;
  padding: 0 16px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
}
.nav-logo {
  font-family: 'Noto Serif JP', serif;
  font-size: 19px; font-weight: 700;
  color: var(--green); letter-spacing: .08em;
  flex-shrink: 0;
}
.nav-links {
  display: flex; align-items: center;
  gap: 16px;
  font-size: 12px; color: var(--text2); font-weight: 500;
  white-space: nowrap;
}
.nav-links a { padding: 4px 0; border-bottom: 2px solid transparent; transition: color .2s, border-color .2s; }
.nav-links a:hover { color: var(--green); }
.nav-links a.active { color: var(--green); font-weight: 700; border-bottom-color: var(--green); }
.nav-cta {
  display: none;
  background: var(--green); color: var(--bg) !important;
  padding: 9px 20px; border-radius: 100px;
  font-size: 13px; font-weight: 700; letter-spacing: .03em;
  transition: opacity .2s; flex-shrink: 0;
}
.nav-cta:hover { opacity: .85; }

/* ============================================
   共通パーツ
   ============================================ */
.section { padding: 56px 20px; }
.container { max-width: 1120px; margin: 0 auto; }

.section-eyebrow {
  font-size: 10px; letter-spacing: .22em; font-weight: 700;
  text-transform: uppercase; margin-bottom: 14px;
}
.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(25px, 4vw, 38px);
  font-weight: 700; line-height: 1.5; color: var(--text);
}
.sub-eyebrow {
  font-size: 10px; letter-spacing: .2em; color: var(--green);
  font-weight: 700; text-transform: uppercase; margin-bottom: 14px;
}
.sub-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px; font-weight: 700; color: var(--text); margin-bottom: 24px;
}
.lead { font-size: 15px; line-height: 2; color: var(--text2); }

.btn-primary {
  display: inline-block;
  background: var(--terra); color: var(--bg);
  padding: 14px 40px; border-radius: 100px;
  font-size: 15px; font-weight: 700; letter-spacing: .05em;
  transition: opacity .2s; width: 100%; max-width: 300px; text-align: center;
}
.btn-primary:hover { opacity: .85; }
.btn-ghost {
  display: inline-block;
  background: transparent; color: var(--bg);
  padding: 14px 36px; border-radius: 100px;
  font-size: 14px; font-weight: 500;
  border: 1px solid rgba(255,255,255,.3);
  transition: border-color .2s; width: 100%; max-width: 300px; text-align: center;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.6); }

/* ============================================
   下層ページの見出し帯
   ============================================ */
.page-head {
  background: var(--bg-dark);
  padding: 48px 20px 44px;
  text-align: center;
}
.page-head-label {
  font-size: 10px; letter-spacing: .28em; color: var(--sage);
  font-weight: 700; text-transform: uppercase; margin-bottom: 16px;
}
.page-head h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(28px, 6vw, 46px);
  font-weight: 700; line-height: 1.45; color: var(--bg);
  letter-spacing: .02em; margin-bottom: 16px;
}
.page-head p {
  font-size: 14px; line-height: 2; color: var(--mist);
  max-width: 540px; margin: 0 auto;
}

/* ---- パンくず ---- */
.crumbs {
  padding: 14px 20px;
  font-size: 12px; color: var(--text2);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.crumbs a { color: var(--green); }
.crumbs a:hover { text-decoration: underline; }
.crumbs span { margin: 0 8px; color: #C0BCB2; }

/* ============================================
   INDEX — HERO
   ============================================ */
.hero { background: var(--bg-dark); padding: 64px 20px 56px; text-align: center; }
.hero-label {
  font-size: 10px; letter-spacing: .28em; color: var(--sage);
  font-weight: 700; text-transform: uppercase; margin-bottom: 22px;
}
.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(32px, 8vw, 68px);
  font-weight: 700; line-height: 1.45; color: var(--bg);
  margin-bottom: 22px; letter-spacing: .02em;
}
.hero-sub {
  font-size: 15px; line-height: 2; color: var(--mist);
  max-width: 480px; margin: 0 auto 40px;
}
.hero-btns { display: flex; flex-direction: column; gap: 10px; align-items: center; }

/* ---- INDEX — ABOUT ---- */
.about { background: var(--bg); }
.about .section-eyebrow { color: var(--green); }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 36px; margin-top: 8px; }
.about-lead { font-size: 15px; line-height: 2; color: var(--text2); margin-top: 18px; }
.pain-list { display: flex; flex-direction: column; gap: 14px; }
.pain-card {
  background: var(--bg2); border-radius: 14px;
  padding: 20px; display: flex; gap: 16px; align-items: flex-start;
}
.pain-icon {
  width: 40px; height: 40px; background: var(--green); border-radius: 50%;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}
.pain-card h3 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.pain-card p { font-size: 13px; line-height: 1.8; color: var(--text2); }

/* ---- INDEX — FEATURES ---- */
.features { background: var(--green); }
.features .section-eyebrow { color: var(--sage); }
.features .section-title { color: var(--bg); margin-bottom: 32px; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.feature-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; padding: 22px 18px;
}
.feature-icon {
  width: 44px; height: 44px; background: rgba(255,255,255,.15);
  border-radius: 10px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
}
.feature-card h3 { font-size: 14px; font-weight: 700; color: var(--bg); margin-bottom: 8px; }
.feature-card p { font-size: 13px; line-height: 1.8; color: var(--mist); }

/* ---- PLANS（index / menu 共用） ---- */
.plans-section { background: var(--bg); }
.plans-section .section-eyebrow { color: var(--green); }
.plans-note { font-size: 13px; line-height: 1.9; color: var(--text2); margin-top: 10px; margin-bottom: 32px; }
.plans-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.plan-card {
  border: 1.5px solid var(--border); border-radius: 20px; padding: 30px 22px;
  display: flex; flex-direction: column;
}
.plan-card.featured { background: var(--green); border-color: var(--green); position: relative; }
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--terra); color: var(--bg);
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  padding: 4px 16px; border-radius: 100px; white-space: nowrap;
}
.plan-tier { font-size: 10px; letter-spacing: .15em; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
.plan-card:not(.featured) .plan-tier { color: var(--text2); }
.plan-card.featured .plan-tier { color: var(--sage); }
.plan-name { font-family: 'Noto Serif JP', serif; font-size: 24px; font-weight: 700; margin-bottom: 4px; }
.plan-card:not(.featured) .plan-name { color: var(--text); }
.plan-card.featured .plan-name { color: var(--bg); }
.plan-price { font-size: 32px; font-weight: 700; line-height: 1; margin-bottom: 4px; }
.plan-card:not(.featured) .plan-price { color: var(--green); }
.plan-card.featured .plan-price { color: var(--bg); }
.plan-price span { font-size: 13px; font-weight: 400; }
.plan-card:not(.featured) .plan-price span { color: var(--text2); }
.plan-card.featured .plan-price span { color: var(--mist); }
.plan-tax { font-size: 12px; margin-bottom: 20px; }
.plan-card:not(.featured) .plan-tax { color: var(--text2); }
.plan-card.featured .plan-tax { color: var(--sage); }
.plan-items {
  list-style: none; border-top: 1px solid;
  padding-top: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.plan-card:not(.featured) .plan-items { border-color: var(--border); }
.plan-card.featured .plan-items { border-color: rgba(255,255,255,.15); }
.plan-item { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.plan-check { flex-shrink: 0; font-size: 15px; }
.plan-card:not(.featured) .plan-item.has { color: var(--text); }
.plan-card:not(.featured) .plan-item.has .plan-check { color: var(--green); }
.plan-card:not(.featured) .plan-item.no { color: #C0C0B8; }
.plan-card.featured .plan-item.has { color: var(--bg); }
.plan-card.featured .plan-item.has .plan-check { color: var(--sage); }
.plan-card.featured .plan-item.no { color: rgba(168,201,181,.35); }
.plan-btn {
  display: block; text-align: center; margin-top: 22px;
  padding: 13px; border-radius: 100px; font-size: 14px; font-weight: 700;
  transition: opacity .2s;
}
.plan-btn:hover { opacity: .85; }
.plan-card:not(.featured) .plan-btn { background: var(--bg2); color: var(--green); }
.plan-card.featured .plan-btn { background: var(--bg); color: var(--green); }

/* ---- INDEX — HOW IT WORKS ---- */
.hiw { background: var(--bg2); }
.hiw .section-eyebrow { color: var(--terra); }
.hiw-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-top: 32px; }
.hiw-num {
  font-family: 'Noto Serif JP', serif;
  font-size: 56px; font-weight: 700; color: #E0D4C4; line-height: 1; margin-bottom: 12px;
}
.hiw-step h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.hiw-step p { font-size: 14px; line-height: 1.8; color: var(--text2); }

/* ---- 情報リスト（営業時間・連絡先） ---- */
.access-section { background: var(--bg); }
.access-grid { display: grid; grid-template-columns: 1fr; gap: 44px; }
.info-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 15px 0; border-bottom: 1px solid var(--border); gap: 12px;
}
.info-row:last-child { border-bottom: none; }
.info-label { font-size: 13px; color: var(--text2); flex-shrink: 0; }
.info-value { font-size: 13px; font-weight: 700; color: var(--text); text-align: right; }
.addr-block { padding: 14px 0; border-bottom: 1px solid var(--border); }
.addr-block:last-child { border-bottom: none; }
.addr-key { font-size: 10px; color: var(--text2); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 4px; }
.addr-val { font-size: 13px; color: var(--text); line-height: 1.7; }

/* ---- CTA 帯 ---- */
.cta-section { background: var(--bg-dark); padding: 64px 20px; text-align: center; }
.cta-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(25px, 5vw, 46px);
  font-weight: 700; color: var(--bg); margin-bottom: 16px; line-height: 1.45;
}
.cta-sub { font-size: 15px; color: var(--mist); margin-bottom: 36px; line-height: 1.8; }
.cta-btn {
  display: inline-block;
  background: var(--terra); color: var(--bg);
  padding: 16px 44px; border-radius: 100px;
  font-size: 16px; font-weight: 700; letter-spacing: .05em;
  transition: opacity .2s;
}
.cta-btn:hover { opacity: .85; }

/* ============================================
   MENU ページ
   ============================================ */
/* 今週の箱の中身 */
.box-section { background: var(--bg2); }
.box-section .section-eyebrow { color: var(--terra); }
.box-wrap { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 28px; }
.box-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 20px; padding: 26px 22px;
}
.box-card-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 16px; margin-bottom: 18px; border-bottom: 1px solid var(--border);
}
.box-card-head .dot {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; background: var(--green);
}
.box-card-head h3 { font-family: 'Noto Serif JP', serif; font-size: 19px; font-weight: 700; color: var(--text); }
.box-card-head .sub { font-size: 11px; color: var(--text2); margin-top: 2px; }
.box-items { list-style: none; display: flex; flex-direction: column; gap: 0; }
.box-items li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
  padding: 11px 0; border-bottom: 1px dashed var(--border);
  font-size: 14px; color: var(--text);
}
.box-items li:last-child { border-bottom: none; }
.box-items .qty { font-size: 12px; color: var(--text2); white-space: nowrap; flex-shrink: 0; }
.box-foot { font-size: 12px; line-height: 1.9; color: var(--text2); margin-top: 16px; }

/* 季節の顔ぶれ */
.season-section { background: var(--bg); }
.season-section .section-eyebrow { color: var(--green); }
.season-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 30px; }
.season-card {
  border: 1.5px solid var(--border); border-radius: 18px;
  padding: 24px 20px; background: var(--bg);
}
.season-name {
  font-family: 'Noto Serif JP', serif; font-size: 21px; font-weight: 700;
  color: var(--green); margin-bottom: 3px;
}
.season-months { font-size: 11px; letter-spacing: .12em; color: var(--text2); margin-bottom: 16px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; }
.tag {
  font-size: 12px; padding: 6px 13px; border-radius: 100px;
  background: var(--bg2); color: var(--text); line-height: 1.4;
}

/* 比較表 */
.compare-section { background: var(--bg2); }
.compare-section .section-eyebrow { color: var(--terra); }
.scroll-hint { font-size: 12px; color: var(--text2); margin-top: 10px; margin-bottom: 14px; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 6px; }
table.compare {
  border-collapse: separate; border-spacing: 0; width: 100%; min-width: 540px;
  background: var(--bg); border-radius: 16px; overflow: hidden;
  font-size: 13px;
}
table.compare th, table.compare td {
  padding: 14px 12px; text-align: center; border-bottom: 1px solid var(--border);
}
table.compare thead th {
  background: var(--green); color: var(--bg);
  font-size: 13px; font-weight: 700; border-bottom: none;
}
table.compare thead th:first-child { text-align: left; }
table.compare tbody th {
  text-align: left; font-weight: 500; color: var(--text2);
  font-size: 13px; white-space: nowrap; background: rgba(245,237,224,.5);
}
table.compare td { color: var(--text); font-weight: 500; }
table.compare tbody tr:last-child th,
table.compare tbody tr:last-child td { border-bottom: none; }
table.compare .yes { color: var(--green); font-weight: 700; }
table.compare .nope { color: #C0C0B8; }
table.compare .price-cell { font-weight: 700; color: var(--green); font-size: 15px; }

/* オプション */
.option-section { background: var(--bg); }
.option-section .section-eyebrow { color: var(--green); }
.option-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 28px; }
.option-card {
  border: 1.5px solid var(--border); border-radius: 16px; padding: 22px 20px;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
}
.option-card h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.option-card p { font-size: 13px; line-height: 1.8; color: var(--text2); }
.option-price {
  font-size: 17px; font-weight: 700; color: var(--terra); white-space: nowrap; flex-shrink: 0;
}
.option-price small { font-size: 11px; font-weight: 400; color: var(--text2); display: block; text-align: right; }

/* FAQ */
.faq-section { background: var(--bg2); }
.faq-section .section-eyebrow { color: var(--terra); }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.faq-item {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 14px; padding: 20px;
}
.faq-q {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 10px;
}
.faq-a { display: flex; gap: 12px; align-items: flex-start; font-size: 13px; line-height: 1.9; color: var(--text2); }
.faq-mark {
  font-family: 'Noto Serif JP', serif; font-size: 15px; font-weight: 700;
  flex-shrink: 0; width: 18px; line-height: 1.5;
}
.faq-q .faq-mark { color: var(--green); }
.faq-a .faq-mark { color: var(--terra); }

/* ============================================
   ACCESS ページ
   ============================================ */
.map-section { background: var(--bg2); }
.map-section .section-eyebrow { color: var(--green); }
.map-frame {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 20px; padding: 18px; margin-top: 26px;
}
.map-frame svg { width: 100%; height: auto; }
.map-legend {
  display: flex; flex-wrap: wrap; gap: 14px 22px;
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border);
}
.legend-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text2); }
.legend-swatch { width: 14px; height: 14px; border-radius: 4px; flex-shrink: 0; }

/* ルート手順 */
.route-section { background: var(--bg); }
.route-section .section-eyebrow { color: var(--terra); }
.route-block { margin-top: 30px; }
.route-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 8px;
}
.route-line {
  font-size: 11px; font-weight: 700; letter-spacing: .05em;
  color: var(--bg); background: var(--green);
  padding: 5px 12px; border-radius: 6px; white-space: nowrap;
}
.route-head h3 { font-size: 16px; font-weight: 700; color: var(--text); }
.route-meta { font-size: 12px; color: var(--text2); margin-bottom: 18px; }
.route-steps { list-style: none; border-left: 2px solid var(--border); margin-left: 9px; }
.route-steps li {
  position: relative; padding: 0 0 22px 26px;
  font-size: 14px; line-height: 1.85; color: var(--text);
}
.route-steps li:last-child { padding-bottom: 0; }
.route-steps li::before {
  content: ''; position: absolute; left: -9px; top: 7px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--bg); border: 3px solid var(--green);
}
.route-steps li:last-child::before { background: var(--terra); border-color: var(--terra); }
.route-steps .note { display: block; font-size: 12px; color: var(--text2); margin-top: 3px; }

/* 交通手段カード */
.transport-section { background: var(--bg2); }
.transport-section .section-eyebrow { color: var(--green); }
.transport-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 28px; }
.transport-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 24px 20px;
}
.transport-icon {
  width: 42px; height: 42px; border-radius: 11px; background: var(--green);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.transport-card h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.transport-card p { font-size: 13px; line-height: 1.9; color: var(--text2); }

/* 目印 */
.landmark-section { background: var(--bg); }
.landmark-section .section-eyebrow { color: var(--terra); }
.landmark-list { display: flex; flex-direction: column; gap: 0; margin-top: 26px; }
.landmark-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.landmark-item:last-child { border-bottom: none; }
.landmark-num {
  font-family: 'Noto Serif JP', serif; font-size: 15px; font-weight: 700;
  color: var(--bg); background: var(--green);
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.landmark-item h3 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.landmark-item p { font-size: 13px; line-height: 1.8; color: var(--text2); }

/* 配送エリア */
.area-section { background: var(--green); }
.area-section .section-eyebrow { color: var(--sage); }
.area-section .section-title { color: var(--bg); }
.area-note { font-size: 14px; line-height: 1.9; color: var(--mist); margin-top: 12px; margin-bottom: 28px; }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.area-chip {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px; padding: 13px 14px;
  font-size: 13px; color: var(--bg); text-align: center;
}
.area-foot { font-size: 12px; line-height: 1.9; color: var(--mist); margin-top: 20px; }

/* ============================================
   トップへ戻る帯
   ============================================ */
.backtop {
  background: var(--bg2); padding: 32px 20px; text-align: center;
  border-top: 1px solid var(--border);
}
.backtop a {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 700; color: var(--green);
  border: 1.5px solid var(--green); border-radius: 100px;
  padding: 13px 30px; transition: background .2s, color .2s;
}
.backtop a:hover { background: var(--green); color: var(--bg); }

/* ============================================
   FOOTER（全ページ共通）
   ============================================ */
footer { background: #141412; padding: 32px 20px; }
.footer-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center;
}
.footer-logo { font-family: 'Noto Serif JP', serif; font-size: 18px; font-weight: 700; color: var(--sage); }
.footer-copy { font-size: 12px; color: #6B6B5E; margin-top: 6px; }
.footer-links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 24px;
  font-size: 13px; color: #A8A8A0;
}
.footer-links a { transition: color .2s; }
.footer-links a:hover { color: var(--sage); }

/* ============================================
   TABLET 640px+
   ============================================ */
@media (min-width: 640px) {
  .nav { padding: 0 32px; height: 66px; }
  .nav-logo { font-size: 21px; }
  .nav-links { gap: 30px; font-size: 13px; }
  .nav-cta { display: inline-block; }

  .section { padding: 80px 32px; }
  .crumbs { padding: 16px 32px; }

  .page-head { padding: 72px 32px 64px; }
  .hero { padding: 96px 32px 80px; }
  .hero-btns { flex-direction: row; justify-content: center; }
  .btn-primary, .btn-ghost { width: auto; }

  .about-grid { grid-template-columns: 1fr 1fr; gap: 52px; }
  .features-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .plans-grid { grid-template-columns: repeat(3, 1fr); }
  .hiw-grid { grid-template-columns: repeat(3, 1fr); gap: 44px; }
  .hiw-num { font-size: 68px; }
  .access-grid { grid-template-columns: 1fr 1fr; gap: 60px; }

  .box-wrap { grid-template-columns: 1fr 1fr; }
  .season-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .option-grid { grid-template-columns: 1fr 1fr; }
  .transport-grid { grid-template-columns: repeat(3, 1fr); }
  .scroll-hint { display: none; }
  .area-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }

  .cta-section { padding: 88px 32px; }
  footer { padding: 36px 32px; }
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .footer-links { justify-content: flex-end; }
}

/* ============================================
   DESKTOP 1024px+
   ============================================ */
@media (min-width: 1024px) {
  .nav { padding: 0 60px; height: 72px; }
  .section { padding: 96px 60px; }
  .crumbs { padding: 18px 60px; }
  .page-head { padding: 90px 60px 78px; }
  .hero { padding: 116px 60px 96px; }
  .hero-title { font-size: 68px; }
  .season-grid { grid-template-columns: repeat(4, 1fr); }
  .cta-section { padding: 100px 60px; }
  footer { padding: 40px 60px; }
}
