/*
Theme Name: Sotoasobi Master Theme
Theme URI: https://sotoasobi-master.com
Author: 外遊びマスター
Description: 外遊びマスタージャーナル カスタムテーマ
Version: 1.0
*/

:root {
  --cream: #F2EDE4;
  --bg: #F5F1EA;
  --dark: #2A2A2A;
  --text: #3A3A3A;
  --muted: #8A8580;
  --forest: #4A6B3A;
  --stone: #8B7355;
  --warm-white: #FAF7F2;
  --border: #D4C9B5;
  --accent: #C7A86B;
  --soft-line: #E5DDCC;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.serif-en { font-family: 'Cormorant Garamond', serif; }
.serif-jp { font-family: 'Noto Serif JP', serif; }

/* ─────────── HEADER ─────────── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--soft-line);
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
}
.logo-text { line-height: 1.1; }
.logo-text .main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 600; letter-spacing: .14em;
  color: var(--dark);
}
.logo-text .sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; letter-spacing: .35em;
  color: var(--muted); margin-top: 2px;
}

nav.main-nav { display: flex; gap: 36px; }
nav.main-nav a {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  transition: color .2s;
}
nav.main-nav a:hover { color: var(--forest); }
nav.main-nav .en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; font-weight: 600; letter-spacing: .12em;
  color: var(--dark);
}
nav.main-nav .ja {
  font-size: 10px; color: var(--muted);
  letter-spacing: .05em;
}

.hicons { display: flex; gap: 14px; align-items: center; }
.hicons button {
  background: none; border: none; cursor: pointer;
  color: var(--dark); display: flex; padding: 4px;
  transition: color .2s;
}
.hicons button:hover { color: var(--forest); }

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 253, 248, 0.7);
  border: 1px solid var(--soft-line);
  border-radius: 999px;
  padding: 8px 16px 8px 14px;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.header-search:hover {
  background: #fff;
  border-color: var(--border);
}
.header-search:focus-within {
  background: #fff;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(74, 107, 58, 0.12);
}
.header-search svg {
  color: var(--muted);
  flex-shrink: 0;
  transition: color .2s;
}
.header-search:focus-within svg { color: var(--forest); }
.header-search input[type="search"] {
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  color: var(--dark);
  letter-spacing: .04em;
  width: 160px;
  padding: 0;
}
.header-search input[type="search"]::placeholder {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .06em;
}
.header-search input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

/* ─────────── HERO ─────────── */
.hero {
  position: relative;
  padding: 72px 0 0;
  background-color: #B8C4A8;
  background-size: cover, cover;
  background-position: center, center right;
  background-repeat: no-repeat, no-repeat;
  overflow: hidden;
}
body.home .hero { min-height: 720px; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 75%, rgba(250,247,242,.85) 92%, rgba(250,247,242,1) 100%),
    linear-gradient(90deg, rgba(250,247,242,.6) 0%, rgba(250,247,242,.2) 50%, rgba(250,247,242,0) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 80px 48px 60px;
  display: block;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-text { max-width: 560px; }
.hero-text h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(46px, 4.8vw, 64px);
  font-weight: 500;
  line-height: 1.2; letter-spacing: .04em;
  color: var(--dark);
  margin-bottom: 28px;
  text-shadow: 0 2px 12px rgba(255,255,255,.4);
  white-space: nowrap;
}
.hero-text .lead {
  font-size: 16px; color: var(--text);
  margin-bottom: 6px; letter-spacing: .04em;
}
.hero-text .lead-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 18px;
  color: var(--stone); letter-spacing: .08em;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
}
.btn-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,253,248,.95);
  border: 1px solid var(--border);
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(80,70,50,.08);
  transition: transform .25s, box-shadow .25s, background .25s;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(80,70,50,.15);
  background: #fff;
}
.btn-cta svg { color: var(--forest); }

.follow-us {
  position: absolute;
  right: 48px; bottom: 60px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}

/* スクロールインジケーター */
.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--dark);
  text-decoration: none;
  transition: opacity .25s, transform .25s;
}
.scroll-down:hover {
  opacity: .7;
  transform: translateX(-50%) translateY(2px);
}
.scroll-down .scroll-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .4em;
  color: var(--dark);
  padding-left: .4em;
}
.scroll-down .scroll-line {
  position: relative;
  display: block;
  width: 1px;
  height: 56px;
  background: rgba(42, 42, 42, .18);
  overflow: hidden;
}
.scroll-down .scroll-line-fill {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 50%;
  background: var(--dark);
  animation: scroll-down-fall 2.2s cubic-bezier(.7, 0, .3, 1) infinite;
}
@keyframes scroll-down-fall {
  0%   { transform: translateY(-100%); }
  60%  { transform: translateY(120%); }
  100% { transform: translateY(120%); }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-down .scroll-line-fill { animation: none; transform: translateY(20%); }
}
.follow-us .label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; letter-spacing: .3em;
  color: var(--dark);
}
.follow-us .icons { display: flex; gap: 8px; }
.follow-us .icons a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,253,248,.85);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  transition: transform .2s, background .2s;
}
.follow-us .icons a:hover { transform: translateY(-2px); background: #fff; }

/* ─────────── 共通セクション ─────────── */
.section { padding: 80px 48px; max-width: 1280px; margin: 0 auto; }
.section-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}
.section-head .eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px; letter-spacing: .35em;
  color: var(--muted);
  margin-bottom: 14px;
}
.section-head h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 30px; font-weight: 500;
  line-height: 1.4; color: var(--dark);
  margin-bottom: 18px;
}
.section-head p {
  font-size: 13px; color: var(--muted);
  line-height: 1.8; margin-bottom: 24px;
}
.more-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--dark);
  border-bottom: 1px solid var(--dark);
  padding-bottom: 4px; letter-spacing: .05em;
  transition: gap .2s, color .2s;
}
.more-link:hover { gap: 14px; color: var(--forest); }

/* ─────────── EXPLORE ─────────── */
.explore-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ex-card {
  background: #fff;
  border: 1px solid var(--soft-line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.ex-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(80,70,50,.12); }
.ex-thumb {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: #E5DDCC;
}
.ex-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.ex-card:hover .ex-thumb img { transform: scale(1.05); }
.ex-body { padding: 18px 18px 22px; }
.ex-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-weight: 600;
  letter-spacing: .1em; color: var(--dark);
  margin-bottom: 6px;
}
.ex-ja {
  font-size: 13px; color: var(--dark);
  margin-bottom: 14px; font-weight: 500;
}
.ex-link {
  font-size: 11px; color: var(--muted);
  display: inline-flex; align-items: center; gap: 6px;
}

/* ─────────── MAP SEARCH ─────────── */
.map-section {
  position: relative;
  padding: 80px 48px;
  background-color: #8A9A84;
  background-image: url('images/map-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.map-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(250,247,242,1) 0%, rgba(250,247,242,.85) 2%, transparent 6%, transparent 94%, rgba(250,247,242,.85) 98%, rgba(250,247,242,1) 100%),
    linear-gradient(90deg, rgba(250,247,242,.75) 0%, rgba(250,247,242,.35) 40%, rgba(250,247,242,0) 70%);
  pointer-events: none;
  z-index: 1;
}
.map-inner { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 380px 1fr; gap: 40px; align-items: center; }
.map-right { position: relative; }
.map-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid var(--border);
  padding: 8px 14px; border-radius: 999px;
  font-size: 11px; color: var(--dark);
}
.chip svg { width: 14px; height: 14px; color: var(--forest); }
.btn-search {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--dark); color: #fff;
  padding: 12px 22px; border-radius: 999px;
  font-size: 12px; letter-spacing: .05em;
  transition: background .2s;
}
.btn-search:hover { background: var(--forest); }

#googleMap {
  height: 420px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-spot {
  position: absolute;
  top: 16px; right: 16px;
  width: 220px;
  z-index: 10;
  background: rgba(255,253,248,.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--soft-line);
  border-radius: 6px; padding: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}
.map-spot .thumb {
  height: 110px; border-radius: 4px; margin-bottom: 10px;
  background: linear-gradient(135deg, #8FA48A, #6B8970);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; letter-spacing: .2em;
}
.map-spot .thumb::after { content: "SPOT"; }
.map-spot .thumb.has-image::after { content: ""; }
.map-spot .rec-label {
  font-size: 10px; color: var(--muted); letter-spacing: .15em;
}
.map-spot h4 {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px; font-weight: 500;
  margin: 4px 0 10px; color: var(--dark);
}
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.tag {
  font-size: 10px; padding: 3px 8px;
  background: var(--cream); border-radius: 999px;
  color: var(--text);
}
.map-spot .more-link { font-size: 11px; }

/* ─────────── FEATURED ─────────── */
.featured-section { padding: 80px 0 100px; overflow: hidden; }
.featured-head {
  max-width: 1280px; margin: 0 auto 40px;
  padding: 0 48px;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px;
}
.featured-head .section-head { max-width: 600px; }
.featured-head .section-head h2 { margin-bottom: 0; }
.featured-head .more-link { white-space: nowrap; }

.ft-carousel {
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.ft-track {
  display: flex; gap: 20px;
  width: max-content;
  animation: ft-scroll 60s linear infinite;
  will-change: transform;
}
.ft-carousel:hover .ft-track { animation-play-state: paused; }
@keyframes ft-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 10px)); }
}
@media (prefers-reduced-motion: reduce) {
  .ft-track { animation: none; }
}

.ft-card {
  position: relative; overflow: hidden;
  border-radius: 6px;
  width: 260px; aspect-ratio: 5/3;
  flex-shrink: 0;
  background: #C7B89A;
  cursor: pointer;
  transition: transform .3s;
}
.ft-card:hover { transform: translateY(-4px); }
.ft-card[data-tone="forest"]   { background: linear-gradient(180deg, #8FA48A, #4A6B3A); }
.ft-card[data-tone="sky"]      { background: linear-gradient(180deg, #A8B5C7, #5B6E80); }
.ft-card[data-tone="amber"]    { background: linear-gradient(180deg, #C7A86B, #8B6B3A); }
.ft-card[data-tone="meadow"]   { background: linear-gradient(180deg, #B8C4A8, #6B8970); }
.ft-card[data-tone="autumn"]   { background: linear-gradient(180deg, #C78B5A, #7A3F2A); }
.ft-card[data-tone="night"]    { background: linear-gradient(180deg, #5B6E80, #1F2A38); }
.ft-card[data-tone="ember"]    { background: linear-gradient(180deg, #C76B3A, #5A2A1A); }
.ft-card[data-tone="sand"]     { background: linear-gradient(180deg, #C7B89A, #8B7355); }
.ft-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.ft-badge {
  position: absolute; top: 10px; left: 10px;
  z-index: 2;
  background: rgba(255,253,248,.95);
  color: var(--dark);
  font-size: 10px; padding: 4px 10px;
  border-radius: 999px;
  font-weight: 500;
}
.ft-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: 16px 14px 12px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.7));
  color: #fff;
}
.ft-overlay h4 {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px; font-weight: 500;
  line-height: 1.4; margin-bottom: 3px;
}
.ft-overlay p {
  font-size: 10px; opacity: .9; line-height: 1.45;
}

/* ─────────── ROUTE COURSE ─────────── */
.route-section { background: #fff; }
.route-grid {
  display: grid; grid-template-columns: 300px 1fr 40px; gap: 32px; align-items: center;
}
.day-cards-carousel {
  position: relative;
}
.day-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.day-cards-carousel .day-slide {
  display: none;
  animation: day-slide-fade .35s ease;
}
.day-cards-carousel .day-slide.is-active {
  display: grid;
}
@keyframes day-slide-fade {
  from { opacity: 0; transform: translateX(8px); }
  to   { opacity: 1; transform: translateX(0); }
}
.day-card {
  background: var(--bg); border: 1px solid var(--soft-line);
  border-radius: 6px; padding: 16px; position: relative;
}
.day-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--forest); color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; font-weight: 600; letter-spacing: .12em;
  padding: 4px 10px; border-radius: 4px; z-index: 2;
}
.day-route {
  font-size: 12px; color: var(--dark);
  margin-bottom: 12px; padding-left: 78px;
  min-height: 36px; display: flex; align-items: center;
  letter-spacing: .03em;
}
.day-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(135deg, #8FA48A, #6B8970);
}
.day-card:nth-child(2) .day-thumb { background: linear-gradient(135deg, #C7B89A, #8B7355); }
.day-card:nth-child(3) .day-thumb { background: linear-gradient(135deg, #A8B5C7, #5B6E80); }
.day-thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.day-card:hover .day-thumb img { transform: scale(1.04); }
.nav-arrow {
  width: 40px; height: 40px;
  border-radius: 50%; border: 1px solid var(--border);
  background: #fff; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--dark);
}

/* ─────────── GEAR REVIEW ─────────── */
.gear-section { background: var(--bg); }
.gear-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.gear-card {
  background: #fff; border-radius: 6px; overflow: hidden;
  border: 1px solid var(--soft-line);
  transition: transform .25s, box-shadow .25s;
}
.gear-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(80,70,50,.1); }
.gear-thumb {
  position: relative; height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, #C7B89A, #8B7355);
}
.gear-card:nth-child(1) .gear-thumb { background: linear-gradient(135deg, #B8C4A8, #6B8970); }
.gear-card:nth-child(2) .gear-thumb { background: linear-gradient(135deg, #1F1A14, #4A3A2A); }
.gear-card:nth-child(3) .gear-thumb { background: linear-gradient(135deg, #B8B8B8, #6B6B6B); }
.gear-card:nth-child(4) .gear-thumb { background: linear-gradient(135deg, #2A2A2A, #4A4A4A); }
.gear-thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gear-card:hover .gear-thumb img { transform: scale(1.04); }
.gear-badge {
  position: absolute; top: 10px; left: 10px;
  z-index: 2;
  background: #C7593A; color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  padding: 4px 10px; border-radius: 3px;
}
.gear-badge.popular { background: #C7A86B; }
.gear-body { padding: 16px; }
.gear-body h4 {
  font-size: 14px; font-weight: 500; color: var(--dark);
  margin-bottom: 6px;
}
.gear-body p {
  font-size: 11px; color: var(--muted);
  line-height: 1.6;
}

/* ─────────── ABOUT US ─────────── */
.about-section {
  position: relative;
  padding: 0;
  min-height: 320px;
  display: flex; align-items: center;
  overflow: hidden;
  background: #ECE4D2;
}
.about-bg {
  position: absolute; inset: 0; z-index: 0;
}
.about-bg img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.about-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(245,241,234,1) 0%,
      rgba(245,241,234,0.85) 2%,
      transparent 6%),
    linear-gradient(90deg,
      rgba(245,241,234,0.95) 0%,
      rgba(245,241,234,0.7) 30%,
      rgba(245,241,234,0.1) 55%,
      transparent 70%);
}
.about-inner {
  position: relative; z-index: 1;
  width: 100%;
  max-width: 1280px; margin: 0 auto;
  padding: 60px 48px;
}
.about-text { max-width: 420px; }
.about-text .eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px; letter-spacing: .35em;
  color: var(--muted); margin-bottom: 14px;
}
.about-text h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 28px; font-weight: 500;
  color: var(--dark); margin-bottom: 18px;
}
.about-text p {
  font-size: 13px; color: var(--text);
  line-height: 1.9; margin-bottom: 22px;
}

/* ─────────── FOOTER ─────────── */
footer {
  background: var(--dark); color: #fff;
  padding: 28px 48px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: .04em;
}
footer .f-links { display: flex; gap: 28px; }
footer .f-links a:hover { color: var(--accent); }
footer .copyright {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: .15em;
  color: rgba(255,255,255,.7);
}

/* ─────────── DRAWER MENU ─────────── */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 14, 0);
  z-index: 200;
  transition: background .28s ease;
  cursor: pointer;
}
.drawer-backdrop.is-open { background: rgba(20, 18, 14, .45); }

.site-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 360px;
  max-width: 88vw;
  height: 100vh;
  background: var(--warm-white);
  z-index: 201;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.7, 0, .3, 1);
  overflow-y: auto;
  box-shadow: -20px 0 50px rgba(0, 0, 0, .12);
}
.site-drawer.is-open { transform: translateX(0); }

.drawer-inner {
  padding: 56px 28px 60px;
}

.drawer-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.drawer-close:hover { background: var(--cream); color: var(--forest); }

/* 検索ボックス */
.drawer-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 16px;
  margin-top: 10px;
  transition: border-color .2s, box-shadow .2s;
}
.drawer-search:focus-within {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(74, 107, 58, 0.12);
}
.drawer-search svg {
  color: var(--muted);
  flex-shrink: 0;
}
.drawer-search input[type="search"] {
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  color: var(--dark);
  flex: 1;
  width: 100%;
  padding: 2px 0;
  letter-spacing: .04em;
}
.drawer-search input[type="search"]::placeholder {
  color: var(--muted);
  letter-spacing: .06em;
}
.drawer-search input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

/* プロフィールカード */
.drawer-profile {
  background: var(--bg);
  border-radius: 12px;
  padding: 22px 20px;
  text-align: center;
  margin-bottom: 28px;
}
.drawer-profile .avatar {
  width: 78px; height: 78px;
  border-radius: 50%;
  margin: 0 auto 12px;
  overflow: hidden;
  background: var(--cream);
}
.drawer-profile .avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.drawer-profile .name {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 10px;
}
.drawer-profile .bio {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 16px;
  text-align: left;
  padding: 0 4px;
  word-break: auto-phrase;
  line-break: strict;
}
.drawer-profile .profile-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--dark);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 999px;
  background: #fff;
  margin-bottom: 16px;
  transition: background .2s;
}
.drawer-profile .profile-link:hover { background: var(--cream); }
.drawer-profile .bio-cta {
  list-style: none;
  padding: 0;
  margin: 14px 0 4px;
  text-align: left;
  border-top: 1px solid var(--soft-line);
  padding-top: 14px;
}
.drawer-profile .bio-cta li {
  font-size: 12px;
  line-height: 1.7;
  color: var(--text);
  padding-left: 14px;
  position: relative;
  margin-bottom: 6px;
}
.drawer-profile .bio-cta li:last-child { margin-bottom: 0; }
.drawer-profile .bio-cta li::before {
  content: "▶";
  position: absolute;
  left: 0; top: 0;
  color: var(--forest);
  font-size: 9px;
  line-height: 1.9;
}
.drawer-profile .bio-cta a {
  color: var(--text);
  border-bottom: 1px dotted var(--border);
  transition: color .2s, border-color .2s;
}
.drawer-profile .bio-cta a:hover {
  color: var(--forest);
  border-bottom-color: var(--forest);
}
.drawer-profile .follow-block {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--soft-line);
  text-align: center;
}
.drawer-profile .follow-label {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: .3em;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 14px;
}
.drawer-profile .follow-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.drawer-profile .follow-icons a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 253, 248, .9);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: transform .2s, background .2s, color .2s, box-shadow .2s;
}
.drawer-profile .follow-icons a:hover {
  transform: translateY(-3px);
  background: #fff;
  color: var(--forest);
  box-shadow: 0 6px 16px rgba(80, 70, 50, .12);
}

/* メニュー */
.drawer-nav .drawer-section {
  margin-bottom: 26px;
}
.drawer-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .35em;
  color: var(--muted);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--soft-line);
  margin-bottom: 10px;
}
.drawer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.drawer-nav li a {
  display: block;
  font-size: 14px;
  color: var(--dark);
  padding: 10px 6px;
  border-bottom: 1px solid rgba(212, 201, 181, .35);
  transition: color .2s, padding-left .2s;
}
.drawer-nav li:last-child a { border-bottom: none; }
.drawer-nav li a:hover {
  color: var(--forest);
  padding-left: 12px;
}

@media (max-width: 480px) {
  .drawer-inner { padding: 56px 22px 50px; }
}

/* ─────────── BLOG CARD (Cocoon互換) ─────────── */
.bc-card {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 28px 0;
  background: #fff;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.bc-card:hover {
  transform: translateY(-2px);
  border-color: var(--border);
  box-shadow: 0 10px 24px rgba(80, 70, 50, .12);
}
.bc-thumb {
  flex-shrink: 0;
  width: 200px;
  background: var(--bg);
  overflow: hidden;
  position: relative;
}
.bc-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.bc-card:hover .bc-thumb img { transform: scale(1.04); }
.bc-thumb-empty {
  background: linear-gradient(135deg, #C7B89A, #8B7355);
}
.bc-body {
  flex: 1;
  min-width: 0;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.bc-cat {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; letter-spacing: .15em;
  color: var(--forest);
  text-transform: uppercase;
}
.bc-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px; font-weight: 500;
  line-height: 1.5;
  color: var(--dark);
  margin: 0;
}
.bc-excerpt {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bc-meta {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; letter-spacing: .12em;
  color: var(--muted);
  margin-top: 2px;
}
.bc-card.bc-external {
  border-style: dashed;
}
.bc-card.bc-external .bc-body { padding: 14px 20px; }
.bc-card.bc-external .bc-link {
  font-size: 13px;
  color: var(--dark);
  word-break: break-all;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .bc-card { flex-direction: column; }
  .bc-thumb { width: 100%; height: 160px; }
  .bc-body { padding: 14px 16px; }
  .bc-title { font-size: 15px; }
}

/* ─────────── MARKER (Cocoon互換) ─────────── */
.marker,
.marker-under {
  background-image: linear-gradient(transparent 65%, rgba(255, 235, 80, .65) 65%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 2px;
}
.marker-yellow      { background-image: linear-gradient(transparent 65%, rgba(255, 235, 80, .65) 65%); }
.marker-pink        { background-image: linear-gradient(transparent 65%, rgba(255, 160, 200, .55) 65%); }
.marker-blue        { background-image: linear-gradient(transparent 65%, rgba(140, 200, 255, .55) 65%); }
.marker-green       { background-image: linear-gradient(transparent 65%, rgba(170, 230, 130, .55) 65%); }
.marker-red         { background-image: linear-gradient(transparent 65%, rgba(255, 140, 140, .55) 65%); }
.marker-purple      { background-image: linear-gradient(transparent 65%, rgba(210, 170, 240, .55) 65%); }
.marker-orange      { background-image: linear-gradient(transparent 65%, rgba(255, 190, 120, .60) 65%); }
/* 太いマーカー */
.marker-b,
.marker.thick,
.marker-under.thick {
  background-image: linear-gradient(transparent 45%, rgba(255, 235, 80, .65) 45%);
}

/* ─────────── CAPTION BOX (Cocoon互換) ─────────── */
.caption-box,
.wp-block-cocoon-blocks-caption-box-1,
.wp-block-cocoon-blocks-caption-box-2,
.wp-block-cocoon-blocks-caption-box-3 {
  position: relative;
  margin: 36px 0 24px;
  padding: 0;
  border: 2px solid var(--border);
  border-color: var(--cocoon-custom-border-color, var(--border));
  border-radius: 8px;
  background: #fff;
}
.caption-box-label,
.block-box-label,
.box-label {
  position: absolute;
  top: -14px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 12px;
  background: var(--cocoon-custom-border-color, var(--border));
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  line-height: 1.6;
}
.caption-box-label-text,
.block-box-label-text,
.box-label-text {
  display: inline-block;
}
/* ラベルのアイコン（FontAwesomeを使わずに記号で代用） */
.caption-box-label::before,
.block-box-label::before {
  display: inline-block;
  font-style: normal;
  font-weight: 700;
}
.fab-info-circle::before { content: "i"; width: 14px; height: 14px; background: #fff; color: var(--cocoon-custom-border-color, var(--border)); border-radius: 50%; text-align: center; line-height: 14px; font-size: 11px; }
.fa-info-circle::before  { content: "i"; width: 14px; height: 14px; background: #fff; color: var(--cocoon-custom-border-color, var(--border)); border-radius: 50%; text-align: center; line-height: 14px; font-size: 11px; }
.fa-exclamation-circle::before { content: "!"; width: 14px; height: 14px; background: #fff; color: var(--cocoon-custom-border-color, var(--border)); border-radius: 50%; text-align: center; line-height: 14px; font-size: 11px; }
.fa-check-circle::before { content: "✓"; }
.fa-lightbulb::before    { content: "💡"; }
.fa-pencil-alt::before   { content: "✎"; }
.fa-comment::before      { content: "💬"; }
.fa-thumbs-up::before    { content: "👍"; }

.caption-box-content,
.block-box-content,
.box-content {
  padding: 22px 22px 16px;
}
.caption-box-content > *:first-child,
.block-box-content > *:first-child,
.box-content > *:first-child { margin-top: 0; }
.caption-box-content > *:last-child,
.block-box-content > *:last-child,
.box-content > *:last-child { margin-bottom: 0; }
.caption-box-content p,
.block-box-content p,
.box-content p {
  margin: 0 0 .6em;
  line-height: 1.8;
}

/* 色バリエーション（has-XXX-border-color） */
.has-red-border-color    { border-color: #E74C3C; }
.has-orange-border-color { border-color: #F39C12; }
.has-yellow-border-color { border-color: #F1C40F; }
.has-green-border-color  { border-color: #27AE60; }
.has-blue-border-color   { border-color: #3498DB; }
.has-purple-border-color { border-color: #9B59B6; }
.has-pink-border-color   { border-color: #E91E63; }
.has-gray-border-color   { border-color: #95A5A6; }
.has-red-border-color    .caption-box-label,
.has-red-border-color    .block-box-label    { background: #E74C3C; }
.has-orange-border-color .caption-box-label,
.has-orange-border-color .block-box-label    { background: #F39C12; }
.has-yellow-border-color .caption-box-label,
.has-yellow-border-color .block-box-label    { background: #F1C40F; color: #444; }
.has-green-border-color  .caption-box-label,
.has-green-border-color  .block-box-label    { background: #27AE60; }
.has-blue-border-color   .caption-box-label,
.has-blue-border-color   .block-box-label    { background: #3498DB; }
.has-purple-border-color .caption-box-label,
.has-purple-border-color .block-box-label    { background: #9B59B6; }
.has-pink-border-color   .caption-box-label,
.has-pink-border-color   .block-box-label    { background: #E91E63; }
.has-gray-border-color   .caption-box-label,
.has-gray-border-color   .block-box-label    { background: #95A5A6; }

/* ─────────── SPEECH BALLOON (Cocoon互換) ─────────── */
.speech-wrap {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin: 30px 0;
  clear: both;
}
.speech-wrap.sbp-r { flex-direction: row-reverse; }
.speech-wrap.sbp-l { flex-direction: row; }

.speech-person {
  flex-shrink: 0;
  width: 80px;
  text-align: center;
}
.speech-icon {
  margin: 0;
  width: 80px; height: 80px;
  display: block;
}
.speech-icon-image,
.speech-icon img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--soft-line);
  background: #fff;
  box-sizing: border-box;
}
/* 四角アイコン */
.speech-wrap.sbis-sb .speech-icon-image,
.speech-wrap.sbis-sb .speech-icon img {
  border-radius: 8px;
}
.speech-name {
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: .04em;
  line-height: 1.3;
  word-break: break-word;
}

.speech-balloon {
  position: relative;
  flex: 1;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--border);
  padding: 16px 20px;
  border-radius: 14px;
  color: var(--dark);
  font-size: 14px;
  line-height: 1.7;
}
.speech-balloon p { margin: 0 0 .6em; }
.speech-balloon p:last-child { margin-bottom: 0; }

/* 吹き出しの三角しっぽ */
.speech-balloon::before,
.speech-balloon::after {
  content: "";
  position: absolute;
  top: 22px;
  width: 0; height: 0;
  border: 9px solid transparent;
}
.sbp-r .speech-balloon::before {
  right: -18px;
  border-left-color: var(--border);
}
.sbp-r .speech-balloon::after {
  right: -16px;
  border-left-color: #fff;
}
.sbp-l .speech-balloon::before {
  left: -18px;
  border-right-color: var(--border);
}
.sbp-l .speech-balloon::after {
  left: -16px;
  border-right-color: #fff;
}

/* LINE風（緑）スタイル */
.speech-wrap.sbs-line .speech-balloon {
  background: #8ACE00;
  border-color: #7AB800;
  color: #fff;
}
.sbs-line.sbp-r .speech-balloon::before { border-left-color: #7AB800; }
.sbs-line.sbp-r .speech-balloon::after  { border-left-color: #8ACE00; }
.sbs-line.sbp-l .speech-balloon::before { border-right-color: #7AB800; }
.sbs-line.sbp-l .speech-balloon::after  { border-right-color: #8ACE00; }

/* シンプル枠線スタイル */
.speech-wrap.sbs-think .speech-balloon {
  border-style: dashed;
}

/* レスポンシブ */
@media (max-width: 600px) {
  .speech-wrap { gap: 10px; }
  .speech-person { width: 60px; }
  .speech-icon { width: 60px; height: 60px; }
  .speech-name { font-size: 10px; }
  .speech-balloon { padding: 12px 14px; font-size: 13px; border-radius: 10px; }
  .speech-balloon::before,
  .speech-balloon::after { top: 16px; border-width: 7px; }
  .sbp-r .speech-balloon::before { right: -14px; }
  .sbp-r .speech-balloon::after  { right: -12px; }
  .sbp-l .speech-balloon::before { left: -14px; }
  .sbp-l .speech-balloon::after  { left: -12px; }
}

/* ─────────── ARCHIVE / CATEGORY ─────────── */
.archive-main { padding-top: 72px; }
.archive-head {
  background: var(--bg);
  border-bottom: 1px solid var(--soft-line);
  padding: 60px 48px;
}
.archive-head-inner {
  max-width: 1280px; margin: 0 auto;
}
.archive-head .eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px; letter-spacing: .35em;
  color: var(--muted);
  margin-bottom: 14px;
}
.archive-head h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: 34px; font-weight: 500;
  color: var(--dark);
  letter-spacing: .04em;
}
.archive-desc {
  margin-top: 14px; font-size: 13px;
  color: var(--muted); line-height: 1.8;
  max-width: 720px;
}
.archive-list-section {
  max-width: 1280px; margin: 0 auto;
  padding: 60px 48px 100px;
}
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.archive-card {
  background: #fff;
  border: 1px solid var(--soft-line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.archive-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(80,70,50,.12); }
.archive-card-link { display: block; }
.archive-thumb {
  height: 200px; overflow: hidden;
  background: #E5DDCC;
}
.archive-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.archive-card:hover .archive-thumb img { transform: scale(1.05); }
.archive-thumb-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #B8C4A8, #6B8970);
}
.archive-body { padding: 20px; }
.archive-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px; letter-spacing: .15em;
  color: var(--muted); margin-bottom: 8px;
}
.archive-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px; font-weight: 500;
  line-height: 1.5; color: var(--dark);
  margin-bottom: 10px;
}
.archive-excerpt {
  font-size: 12px; color: var(--muted);
  line-height: 1.7;
}
.archive-pagination {
  margin-top: 50px; text-align: center;
}
.archive-pagination .page-numbers {
  display: inline-block;
  padding: 8px 14px;
  margin: 0 4px;
  font-size: 13px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--dark);
}
.archive-pagination .page-numbers.current {
  background: var(--dark); color: #fff; border-color: var(--dark);
}
.archive-empty {
  text-align: center; padding: 80px 20px;
}
.archive-empty p {
  font-size: 15px; color: var(--muted);
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .archive-head { padding: 50px 24px; }
  .archive-list-section { padding: 50px 24px 80px; }
  .archive-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .archive-head h1 { font-size: 28px; }
}
@media (max-width: 600px) {
  .archive-head { padding: 40px 20px; }
  .archive-list-section { padding: 40px 20px 60px; }
  .archive-grid { grid-template-columns: 1fr; gap: 18px; }
  .archive-head h1 { font-size: 24px; }
}

/* ─────────── レスポンシブ ─────────── */
@media (max-width: 1024px) {
  header { padding: 0 24px; }
  nav.main-nav { gap: 22px; }
  nav.main-nav .ja { display: none; }

  body.home .hero { min-height: 560px; }
  .hero-inner { padding: 60px 24px 40px; }
  .hero-text h1 { font-size: 56px; }
  .follow-us { right: 24px; bottom: 24px; }

  .section { padding: 60px 24px; }
  .map-section { padding: 60px 24px; }
  .section-grid { grid-template-columns: 1fr; gap: 28px; }
  .section-head h2 { font-size: 26px; }

  .map-inner { grid-template-columns: 1fr; gap: 24px; }
  #googleMap { height: 340px; }
  .map-spot { width: 190px; }
  .map-spot .thumb { height: 90px; }

  .gear-cards { grid-template-columns: repeat(2, 1fr); }

  .featured-head { padding: 0 24px; }
  .ft-card { width: 240px; }

  .route-grid { grid-template-columns: 1fr; gap: 24px; }
  .nav-arrow { display: none; }

  .about-section { min-height: 280px; }
  .about-inner { padding: 50px 24px; }
}

@media (max-width: 768px) {
  header {
    height: 64px; padding: 0 16px;
  }
  nav.main-nav { display: none; }
  /* スマホでは検索ボックスを隠してハンバーガーだけ表示 */
  .header-search { display: none; }
  .logo-mark svg { width: 30px; height: 30px; }
  .logo-text .main { font-size: 15px; }
  .logo-text .sub { font-size: 9px; letter-spacing: .25em; }

  body.home .hero {
    min-height: 520px;
    background-position: center, center;
  }
  .hero::before {
    background:
      linear-gradient(180deg,
        rgba(250,247,242,1) 0%,
        rgba(250,247,242,.85) 2%,
        transparent 6%,
        transparent 94%,
        rgba(250,247,242,.85) 98%,
        rgba(250,247,242,1) 100%),
      linear-gradient(160deg,
        rgba(250,247,242,.88) 0%,
        rgba(250,247,242,.6) 40%,
        rgba(250,247,242,.1) 75%,
        transparent 100%);
  }
  .hero-inner { padding: 44px 20px 40px; }
  .hero-text { max-width: 100%; }
  .hero-text h1 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 16px;
    white-space: normal;
  }
  .hero-text .lead { font-size: 14px; }
  .hero-text .lead-en { font-size: 16px; margin-bottom: 28px; }
  .hero-ctas { gap: 10px; flex-direction: column; }
  .btn-cta {
    padding: 13px 20px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
    background: rgba(255,253,248,.88);
  }
  /* スマホではヒーロー内の装飾要素を隠してスッキリ */
  .follow-us { display: none; }
  .scroll-down { display: none; }

  .section { padding: 48px 20px; }
  .map-section { padding: 48px 20px; }
  .section-head .eyebrow { font-size: 11px; }
  .section-head h2 { font-size: 22px; line-height: 1.5; }
  .section-head p { font-size: 12px; }

  .explore-cards { gap: 12px; }
  .ex-thumb { width: 140px; }

  .featured-section { padding: 56px 0 80px; }
  .featured-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 0 20px;
    margin-bottom: 32px;
  }
  .ft-card { width: 220px; }
  .ft-overlay { padding: 16px 14px 14px; }
  .ft-overlay h4 { font-size: 14px; }
  .ft-overlay p { font-size: 10px; }

  #googleMap { height: 280px; }
  .map-spot { width: 160px; top: 10px; right: 10px; padding: 10px; }
  .map-spot .thumb { height: 80px; }
  .map-spot h4 { font-size: 13px; }
  .map-spot .rec-label { font-size: 9px; }
  .map-chips { gap: 6px; }
  .chip { font-size: 10px; padding: 6px 10px; }

  .day-cards { grid-template-columns: 1fr; gap: 14px; }
  .day-route { padding-left: 78px; font-size: 12px; }

  .gear-cards { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gear-thumb { height: 140px; }
  .gear-body { padding: 12px; }
  .gear-body h4 { font-size: 13px; }
  .gear-body p { font-size: 10px; }

  .about-section { min-height: 240px; }
  .about-inner { padding: 40px 20px; }
  .about-text h2 { font-size: 22px; }
  .about-bg::after {
    background: linear-gradient(180deg,
      rgba(245,241,234,0.6) 0%,
      rgba(245,241,234,0.92) 60%);
  }
  .about-text { max-width: 100%; }

  footer {
    flex-direction: column; gap: 14px;
    padding: 20px 16px;
    text-align: center;
  }
  footer .f-links {
    flex-wrap: wrap; gap: 16px 20px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  header { padding: 0 14px; height: 60px; }
  .hicons { gap: 12px; }

  body.home .hero { min-height: 480px; }
  .hero-inner { padding: 36px 16px 32px; }
  .hero-text h1 { font-size: 34px; white-space: normal; }
  .hero-text .lead { font-size: 13px; }
  .hero-text .lead-en { font-size: 14px; margin-bottom: 24px; }
  .hero-ctas { flex-direction: column; }
  .btn-cta { width: 100%; min-width: 0; padding: 14px 18px; }
  .follow-us { right: 12px; bottom: 16px; }

  .section { padding: 40px 16px; }
  .map-section { padding: 40px 16px; }
  .about-inner { padding: 36px 16px; }

  .gear-cards { grid-template-columns: 1fr; }
  .featured-head { padding: 0 16px; }
  .ft-card { width: 200px; }

  .day-route {
    padding-left: 0;
    padding-top: 32px;
    min-height: 0;
    margin-bottom: 10px;
  }
  .day-tag { top: 10px; left: 10px; }

  #googleMap { height: 240px; }
  .map-spot { display: none; }
}
