/* =========================================================
   神山遊山マップ — スタイル
   フォント: Zen Maru Gothic（見出し） / Zen Kaku Gothic New（本文）
   ========================================================= */

:root {
  --bg: #FBF9F2;
  --surface: #FFFFFF;
  --cream: #FCFBF6;
  --ink: #34362E;
  --ink-soft: #5C5F50;
  --muted: #8A8C7C;
  --line: #ECE6D7;
  --line-soft: #E2DCCB;
  --green: #5F8A53;
  --green-deep: #3F6238;
  --green-press: #557C4B;
  --gold: #C8923B;
  --label: #7E9A6E;
  --max: 1180px;
  --pad: clamp(20px, 4vw, 40px);
  --nav-h: 72px;
  --display: 'Zen Maru Gothic', sans-serif;
  --body: 'Zen Kaku Gothic New', system-ui, sans-serif;
  --shadow-card: 0 12px 26px rgba(63, 98, 56, 0.08);
  --shadow-soft: 0 14px 30px rgba(63, 98, 56, 0.06);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
::selection { background: #D7E5C8; }

:focus-visible {
  outline: 3px solid rgba(95, 138, 83, 0.7);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Skip link ---------- */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 60;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 249, 242, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
}

.brand__text { display: flex; flex-direction: column; line-height: 1.25; }
.brand__name { font-family: var(--display); font-weight: 700; font-size: 1.02rem; color: var(--green-deep); }
.brand__en { font-size: 0.64rem; letter-spacing: 0.22em; color: #9A9C8C; font-weight: 700; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.92rem;
}
.nav-links a:hover { color: var(--green); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
  font-family: inherit;
}

.btn--primary {
  background: var(--green);
  color: var(--cream);
  box-shadow: 0 14px 26px rgba(95, 138, 83, 0.26);
}
.btn--primary:hover { background: var(--green-press); }

.btn--ghost {
  background: var(--surface);
  color: var(--green-deep);
  border-color: var(--line-soft);
}
.btn--ghost:hover { border-color: var(--green); }

.btn--nav { min-height: 42px; padding: 9px 20px; font-size: 0.9rem; }
.btn--lg { min-height: 52px; padding: 13px 28px; }
.btn--lg:hover { transform: translateY(-2px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FDFBF4 0%, #F4F0E2 100%);
}

.hero__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(40px, 6vw, 84px) var(--pad) clamp(56px, 7vw, 96px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
}

.hero__copy { flex: 1 1 380px; min-width: 300px; }

.section-label {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--label);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  color: var(--green-deep);
  font-weight: 700;
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  line-height: 1.18;
  letter-spacing: 0.01em;
}

.hero__lead {
  max-width: 30em;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.9;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 38px;
}
.hero__stat .num {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--green-deep);
  line-height: 1;
}
.hero__stat .label {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 700;
}
.hero__divider { width: 1px; background: #E5DFCF; align-self: stretch; }

.hero__visual {
  flex: 1 1 420px;
  min-width: 300px;
  position: relative;
}

.hero__frame {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(63, 98, 56, 0.18);
  border: 1px solid #E7E2D3;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #E9F0E1, #F5EFDF);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .55s ease;
}
.hero__image.is-loaded { opacity: 1; }

.hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(63, 98, 56, 0) 52%, rgba(40, 55, 36, 0.28) 100%);
  pointer-events: none;
}

.feature-card {
  position: absolute;
  left: clamp(14px, 3vw, 28px);
  bottom: -18px;
  width: min(86%, 360px);
  padding: 20px 22px;
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(8px);
  border: 1px solid #E7E2D3;
  box-shadow: 0 20px 44px rgba(63, 98, 56, 0.18);
  z-index: 2;
}
.feature-card__kicker {
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.feature-card__kicker .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.feature-card__kicker .txt { color: var(--gold); font-size: 0.74rem; font-weight: 900; letter-spacing: 0.08em; }
.feature-card h2 {
  margin: 0;
  font-family: var(--display);
  color: var(--green-deep);
  font-size: 1.22rem;
  line-height: 1.4;
}
.feature-card p {
  margin: 8px 0 0;
  color: #6C6F5F;
  font-size: 0.9rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.feature-card .map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--green);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
}
.feature-card .map-link:hover { color: var(--green-press); }

/* ---------- Section shell ---------- */
.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) var(--pad);
}
.section--about { padding-bottom: clamp(40px, 6vw, 64px); }
.section--spots { padding-block: clamp(48px, 6vw, 72px); }
.section--faq { padding-top: clamp(48px, 6vw, 80px); padding-bottom: clamp(72px, 9vw, 120px); }

/* ---------- Sticky section heading ---------- */
.section-heading {
  position: sticky;
  top: var(--nav-h);
  z-index: 40;
  margin: 0 calc(-1 * var(--pad)) clamp(28px, 4vw, 48px);
  padding: 16px var(--pad);
  background: rgba(251, 249, 242, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}
.section-heading__inner { max-width: 760px; }
.section-heading h2 {
  margin: 0;
  font-family: var(--display);
  color: var(--green-deep);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.3;
}
.section-heading p {
  margin: 14px 0 0;
  color: #6C6F5F;
  font-size: 1.04rem;
}

/* ---------- Grids ---------- */
.guide-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.charm-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.course-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }

/* ---------- Guide cards ---------- */
.guide-card {
  padding: 30px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(63, 98, 56, 0.07);
}
.guide-card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 18px;
}
.guide-card__icon.is-green { background: #EDF3E6; color: var(--green); }
.guide-card__icon.is-gold { background: #F6ECD6; color: var(--gold); }
.guide-card__icon.is-blue { background: #E5EDEF; color: #4F7480; }
.guide-card h3 { margin: 0; font-family: var(--display); color: var(--green-deep); font-size: 1.2rem; }
.guide-card p { margin: 12px 0 0; color: #6C6F5F; }

/* ---------- Tabs ---------- */
.tabs {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: #F1EEE3;
  border: 1px solid #E7E2D3;
  margin-bottom: 24px;
}
.tab-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.96rem;
  border: 1px solid transparent;
  background: transparent;
  color: var(--green-deep);
  transition: background .18s ease, color .18s ease;
}
.tab-btn.active { background: var(--green); color: var(--cream); }

.tabpanel[hidden] { display: none; }

/* ---------- Spot tools ---------- */
.spot-tools {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  margin-bottom: 18px;
}
.search-label { display: grid; gap: 9px; color: var(--green-deep); font-weight: 700; }
.search-label > span { font-size: 0.92rem; }
.search-input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line-soft);
  border-radius: 13px;
  padding: 12px 16px;
  background: var(--cream);
  color: var(--ink);
  font-size: 1rem;
}
.search-input:focus { border-color: var(--green); outline: none; }

.filters { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 9px 17px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid var(--line-soft);
  background: var(--surface);
  color: var(--green-deep);
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.filter-btn .cnt { opacity: 0.7; font-size: 0.82rem; }
.filter-btn:hover { border-color: var(--green); }
.filter-btn.active { background: var(--green); color: var(--cream); border-color: var(--green); }

.count { margin: 0 0 16px; color: var(--muted); font-weight: 700; font-size: 0.94rem; }

/* ---------- Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(286px, 1fr));
  gap: 20px;
  max-height: clamp(560px, 72vh, 860px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 6px 8px 6px 0;
}

.spot-card {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
}
.spot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(63, 98, 56, 0.14);
}

.spot-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #EAE5D6;
  overflow: hidden;
}
.spot-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.spot-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #E9F0E1, #F5EFDF);
  color: #6E9A5E;
  font-family: var(--display);
  font-weight: 700;
  font-size: 2.8rem;
}

.spot-card__body { display: flex; flex: 1; flex-direction: column; padding: 20px; }
.spot-card__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.spot-card h3 { margin: 0; font-family: var(--display); color: var(--green-deep); font-size: 1.18rem; line-height: 1.45; }
.spot-card__desc { margin: 11px 0 0; color: #6C6F5F; font-size: 0.95rem; line-height: 1.7; }

.spot-details {
  display: grid;
  gap: 7px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.88rem;
  color: #76796B;
}
.spot-details li { display: grid; grid-template-columns: 5.5em 1fr; gap: 8px; }
.spot-details .k { color: #9A9C8C; font-weight: 700; }

.spot-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; padding-top: 18px; }
.spot-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}
.spot-link.map { background: var(--green); color: var(--cream); }
.spot-link.map:hover { background: var(--green-press); }
.spot-link.official { background: var(--surface); color: var(--green-deep); border: 1px solid var(--line-soft); }
.spot-link.official:hover { border-color: var(--green); }

.empty {
  margin: 0;
  padding: 30px;
  border-radius: 18px;
  background: var(--cream);
  border: 1px solid #E7E2D3;
  color: #6C6F5F;
  font-weight: 700;
  text-align: center;
}

/* Skeleton */
.skeleton-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(286px, 1fr)); gap: 20px; }
.skeleton {
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}
.skeleton .ph-img { aspect-ratio: 4 / 3; background: #EFEADC; }
.skeleton .ph-body { padding: 18px; display: grid; gap: 10px; }
.skeleton .ph { border-radius: 6px; background: #EFEADC; height: 14px; }
.skeleton .ph.lg { height: 18px; width: 75%; }
.skeleton .ph.sm { height: 12px; background: #F2EEE2; }
.skeleton .ph.w40 { width: 40%; }
.skeleton .ph.w85 { width: 85%; }

/* ---------- Chips ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  padding: 3px 11px;
  font-size: 0.78rem;
  font-weight: 700;
}
.chip.nature { background: #EAF1E1; color: #4A6B3F; }
.chip.food { background: #F6ECD6; color: #9A7327; }
.chip.culture { background: #F1E7DD; color: #8A6047; }
.chip.exp { background: #E5EDEF; color: #4F7480; }
.chip.rest { background: #EFEDE4; color: #6E6A58; }
.chip.sub { background: #F3F1E9; color: #76796B; font-weight: 600; }
.chip.sm { min-height: 22px; padding: 2px 9px; font-size: 0.72rem; }

/* ---------- Map panel ---------- */
.map-form { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 14px; }
.map-form .search-label { flex: 1 1 280px; }
.map-form button {
  min-height: 52px;
  min-width: 140px;
  padding: 13px 24px;
  border: 0;
  border-radius: 13px;
  background: var(--green);
  color: var(--cream);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.96rem;
  box-shadow: 0 12px 24px rgba(95, 138, 83, 0.24);
}
.map-form button:hover { background: var(--green-press); }

.map-frame { overflow: hidden; border-radius: 18px; border: 1px solid var(--line-soft); margin: 18px 0; }
.map-frame iframe { display: block; width: 100%; height: clamp(380px, 52vh, 480px); border: 0; }

.map-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; }
.map-actions p { margin: 0; color: var(--muted); font-size: 0.92rem; }

#map-panel { display: grid; }

/* ---------- Charm ---------- */
.charm {
  background: linear-gradient(180deg, #F3F6EC 0%, #EEF2E4 100%);
  border-top: 1px solid #E7EADD;
  border-bottom: 1px solid #E7EADD;
}
.charm__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 108px) var(--pad);
}
.charm .section-heading {
  background: rgba(243, 246, 236, 0.94);
  box-shadow: 0 1px 0 #DFE6D2;
}
.charm-card {
  padding: 28px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid #E7EADD;
  box-shadow: var(--shadow-card);
}
.charm-card .idx {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.charm-card h3 { margin: 0; font-family: var(--display); color: var(--green-deep); font-size: 1.16rem; line-height: 1.45; }
.charm-card p { margin: 12px 0 0; color: #6C6F5F; font-size: 0.96rem; }

/* ---------- Course ---------- */
.course-card {
  padding: clamp(26px, 3vw, 36px);
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(63, 98, 56, 0.08);
}
.course-card__tagrow { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.course-card__tag { font-size: 0.7rem; font-weight: 900; letter-spacing: 0.16em; color: var(--label); }
.course-card__tagrow .rule { flex: 1; height: 1px; background: var(--line); }
.course-card h3 { margin: 0; font-family: var(--display); color: var(--green-deep); font-size: 1.5rem; }
.course-card__lead { margin: 8px 0 24px; color: #6C6F5F; font-size: 0.96rem; }

.timeline { margin: 0; padding: 0; list-style: none; display: grid; }
.timeline li { display: grid; grid-template-columns: 64px 1fr; gap: 16px; padding-bottom: 22px; }
.timeline__rail { display: flex; flex-direction: column; align-items: center; }
.timeline__time { font-family: var(--display); font-weight: 700; color: var(--gold); font-size: 0.92rem; }
.timeline__dot {
  margin-top: 6px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid #E7F0DF;
  box-shadow: 0 0 0 1px var(--green);
}
.timeline__line { flex: 1; width: 2px; background: var(--line-soft); margin-top: 4px; min-height: 18px; }
.timeline li:last-child .timeline__line { display: none; }
.timeline li:last-child { padding-bottom: 0; }
.timeline__head { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; }
.timeline__head h4 { margin: 0; font-family: var(--display); color: var(--ink); font-size: 1.06rem; line-height: 1.4; }
.timeline__note { margin: 6px 0 0; color: #6C6F5F; font-size: 0.9rem; line-height: 1.6; }
.timeline__map {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  color: var(--green);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.84rem;
}
.timeline__map:hover { color: var(--green-press); }

/* ---------- FAQ ---------- */
.faq-list {
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.faq-item { border-top: 1px solid #EFEADC; }
.faq-item:first-child { border-top: 0; }
.faq-q {
  width: 100%;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  padding: 20px 22px;
  background: transparent;
  color: var(--green-deep);
  cursor: pointer;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.04rem;
  text-align: left;
}
.faq-q .icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #EDF3E6;
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  line-height: 1;
}
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { margin: 0; padding: 0 22px 22px; color: #6C6F5F; }

/* ---------- Footer ---------- */
.footer { background: var(--green-deep); color: #F4F0E2; }
.footer__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(48px, 6vw, 72px) var(--pad);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}
.footer .section-label { color: rgba(244, 240, 226, 0.72); }
.footer h2 {
  margin: 0;
  max-width: 640px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.3;
}
.footer p { margin: 16px 0 0; color: rgba(244, 240, 226, 0.82); }
.footer__back {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid rgba(244, 240, 226, 0.42);
  color: #F4F0E2;
  text-decoration: none;
  font-weight: 700;
}
.footer__back:hover { background: rgba(244, 240, 226, 0.12); }

