:root {
  color-scheme: light;
  --ink: #12313f;
  --muted: #667780;
  --line: #dce8e5;
  --paper: #f7fbf8;
  --surface: #ffffff;
  --aqua: #00a6a6;
  --blue: #2c7be5;
  --sun: #ffd166;
  --coral: #ff7a59;
  --green: #2f9e76;
  --violet: #7c5cff;
  --shadow: 0 18px 48px rgba(18, 49, 63, 0.11);
  --shadow-soft: 0 10px 28px rgba(18, 49, 63, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 14px clamp(18px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
}

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

.brand__wordmark {
  display: block;
  height: clamp(30px, 4vw, 42px);
  max-width: min(54vw, 232px);
  object-fit: contain;
  width: auto;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(14px, 3vw, 28px);
}

.site-nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--aqua);
}

.home-hero {
  align-content: center;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(420px, 760px) minmax(240px, 1fr);
  isolation: isolate;
  min-height: clamp(470px, 60vh, 620px);
  overflow: hidden;
  padding: clamp(42px, 5.8vw, 72px) clamp(18px, 5vw, 72px) 34px;
  position: relative;
}

.home-hero::before {
  background: url("/assets/home-hero-leisure.webp") center right / cover no-repeat;
  content: "";
  inset: 0;
  position: absolute;
  z-index: -2;
}

.home-hero::after {
  background:
    linear-gradient(90deg, rgba(247, 251, 248, 0.99) 0%, rgba(247, 251, 248, 0.94) 34%, rgba(247, 251, 248, 0.58) 56%, rgba(247, 251, 248, 0.14) 78%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(247, 251, 248, 0.72));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.home-hero__copy {
  grid-column: 1 / -1;
  max-width: 980px;
}

.eyebrow {
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.home-hero h1 {
  font-size: clamp(2.7rem, 7vw, 6rem);
  line-height: 1;
  margin: 0;
  max-width: 980px;
}

.home-hero h1 span {
  display: block;
}

.home-hero__copy > p:not(.eyebrow) {
  color: #41545d;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  max-width: 680px;
}

.home-hero .search-panel,
.home-hero .popular-spots {
  grid-column: 1 / -1;
  max-width: 1160px;
}

.search-panel {
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  margin-top: 0;
  overflow: hidden;
}

.search-panel label {
  border-right: 1px solid var(--line);
  display: grid;
  gap: 8px;
  padding: 14px 16px;
}

.search-panel label span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.search-panel select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--aqua) 50%) right 15px center / 7px 7px no-repeat,
    linear-gradient(135deg, var(--aqua) 50%, transparent 50%) right 10px center / 7px 7px no-repeat,
    #f7fbf8;
  border: 1px solid #d7e7e2;
  border-radius: 8px;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 900;
  min-height: 48px;
  padding: 9px 34px 9px 12px;
  width: 100%;
}

.search-panel button {
  background: var(--coral);
  border: 0;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  padding: 0 28px;
}

.search-panel button:disabled {
  background: #cbd8d5;
  cursor: not-allowed;
}

.popular-spots {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-column: 1 / -1;
}

.popular-spots > span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
}

.popular-spots > div,
.date-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.date-chips a,
.popular-spots a,
.tag {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 8px 14px;
  text-decoration: none;
}

.popular-spots a {
  box-shadow: var(--shadow-soft);
}

.popular-spots a:hover {
  border-color: rgba(0, 166, 166, 0.55);
  color: var(--aqua);
}

.section-block {
  padding: clamp(42px, 7vw, 78px) clamp(18px, 5vw, 72px);
}

.section-block--soft {
  background: #eef8f4;
  border-block: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 24px;
  max-width: 760px;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.12;
  margin: 0;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  margin: 10px 0 0;
}

.section-heading--compact h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.purpose-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
}

.purpose-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  min-height: 176px;
  padding: 20px;
  text-decoration: none;
}

.purpose-card:hover,
.prefecture-link:hover,
.activity-list a:hover,
.content-card:hover {
  border-color: rgba(0, 166, 166, 0.55);
  transform: translateY(-2px);
}

.purpose-card__icon {
  align-items: center;
  background: linear-gradient(135deg, rgba(0, 166, 166, 0.14), rgba(255, 209, 102, 0.26));
  border-radius: 50%;
  color: var(--aqua);
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.purpose-card__icon svg {
  fill: none;
  height: 21px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  width: 21px;
}

.purpose-card--date .purpose-card__icon,
.purpose-card--anniversary .purpose-card__icon {
  color: var(--coral);
}

.purpose-card--refresh .purpose-card__icon,
.purpose-card--nature .purpose-card__icon,
.purpose-card--pet .purpose-card__icon {
  color: var(--green);
}

.purpose-card--family .purpose-card__icon,
.purpose-card--kids .purpose-card__icon {
  color: #d28a00;
}

.purpose-card strong {
  font-size: 1.12rem;
}

.purpose-card span:last-child {
  color: var(--muted);
  font-size: 0.93rem;
}

.activity-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

.activity-group {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.activity-group h3 {
  font-size: 1.1rem;
  line-height: 1.35;
  margin: 0 0 14px;
}

.activity-list {
  display: grid;
  gap: 8px;
}

.activity-list a,
.prefecture-link {
  align-items: center;
  background: #fbfefd;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  text-decoration: none;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.prefecture-link span,
.content-card__meta,
.article-byline {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
}

.prefecture-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
}

.content-grid,
.content-list {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  max-width: 100%;
  overflow: hidden;
}

.content-grid--featured {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-inline: auto;
  max-width: 1500px;
}

.content-list {
  grid-template-columns: 1fr;
  max-width: 100%;
}

.content-list .content-card {
  min-height: 0;
}

.content-list .content-card a {
  grid-template-columns: clamp(180px, 22vw, 260px) minmax(0, 1fr);
  grid-template-rows: none;
  min-height: 172px;
}

.content-list .content-card__visual {
  aspect-ratio: auto;
  height: 100%;
  min-height: 0;
}

.content-list .content-card__body {
  align-content: center;
  grid-template-rows: auto auto auto;
  padding: 20px 22px;
}

.content-list .content-card h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.32rem);
  min-height: 0;
}

.content-list .content-card p {
  min-height: 0;
}

.more-link-row {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.more-link-row--left {
  justify-content: flex-start;
}

.more-link {
  align-items: center;
  background: var(--ink);
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-weight: 900;
  min-height: 48px;
  padding: 0 22px;
  text-decoration: none;
}

.spot-list {
  display: grid;
  gap: 14px;
}

.spot-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.spot-card a {
  color: inherit;
  text-decoration: none;
}

.spot-card__body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.spot-card__meta,
.spot-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.spot-card__meta span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.spot-card h3 {
  font-size: clamp(1.18rem, 2vw, 1.5rem);
  line-height: 1.32;
  margin: 0;
}

.spot-card h3 a {
  color: var(--ink);
}

.spot-card p {
  color: #425862;
  font-size: 0.96rem;
  line-height: 1.7;
  margin: 0;
}

.spot-card__facts {
  background: #f7fbfa;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 0;
  margin: 0;
}

.spot-card__facts div {
  display: grid;
  gap: 8px;
  grid-template-columns: 104px minmax(0, 1fr);
  padding: 9px 12px;
}

.spot-card__facts div + div {
  border-top: 1px solid var(--line);
}

.spot-card__facts dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.spot-card__facts dd {
  color: #334b56;
  font-size: 0.86rem;
  line-height: 1.5;
  margin: 0;
}

.spot-card__tags span {
  background: #eef8f4;
  border: 1px solid #d5e8e2;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 850;
  padding: 5px 10px;
}

.spot-card .spot-card__more {
  color: var(--aqua);
  font-size: 0.86rem;
  font-weight: 950;
}

.spot-card__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.spot-card .spot-card__map {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

.spot-list--compact {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.filter-empty {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  margin-top: 18px;
  padding: 22px;
}

.filter-empty strong {
  color: var(--ink);
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.filter-empty p {
  margin: 0;
}

.content-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  min-height: 100%;
  min-width: 0;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.content-card a {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  min-width: 0;
  text-decoration: none;
}

.content-card__visual {
  align-items: end;
  aspect-ratio: 16 / 8.2;
  background:
    radial-gradient(circle at 20% 22%, rgba(255, 255, 255, 0.85) 0 12%, transparent 13%),
    linear-gradient(135deg, var(--aqua), var(--blue));
  display: flex;
  overflow: hidden;
  padding: 16px;
  position: relative;
}

.content-card__visual img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.content-card__visual::after {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 78% 72%, rgba(255, 255, 255, 0.36) 0 22%, transparent 23%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 0;
}

.content-card--sun .content-card__visual {
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.8) 0 14%, transparent 15%),
    linear-gradient(135deg, #ffd166, #ff7a59);
}

.content-card--violet .content-card__visual {
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.78) 0 13%, transparent 14%),
    linear-gradient(135deg, #7c5cff, #2c7be5);
}

.content-card--green .content-card__visual {
  background:
    radial-gradient(circle at 76% 28%, rgba(255, 255, 255, 0.72) 0 15%, transparent 16%),
    linear-gradient(135deg, #2f9e76, #00a6a6);
}

.content-card--coral .content-card__visual {
  background:
    radial-gradient(circle at 22% 25%, rgba(255, 255, 255, 0.72) 0 14%, transparent 15%),
    linear-gradient(135deg, #ff7a59, #ffd166);
}

.content-card--blue .content-card__visual {
  background:
    radial-gradient(circle at 80% 24%, rgba(255, 255, 255, 0.75) 0 15%, transparent 16%),
    linear-gradient(135deg, #2c7be5, #00a6a6);
}

.content-card__visual span {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  padding: 6px 12px;
  position: relative;
  z-index: 1;
}

.content-card__body {
  display: grid;
  gap: 9px;
  grid-template-rows: auto auto 1fr;
  min-width: 0;
  padding: 16px;
}

.content-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  line-height: 1.35;
}

.content-card h3 {
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  line-height: 1.35;
  margin: 0;
  min-height: 2.7em;
  overflow-wrap: anywhere;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.content-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.58;
  margin: 0;
  min-height: 4.75em;
  overflow-wrap: anywhere;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.listing-hero,
.article-hero {
  padding: clamp(34px, 6vw, 70px) clamp(18px, 5vw, 72px) 34px;
}

.breadcrumb {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.86rem;
  font-weight: 800;
  gap: 8px;
  margin-bottom: 28px;
}

.breadcrumb a {
  color: var(--aqua);
  text-decoration: none;
}

.breadcrumb span {
  color: var(--muted);
}

.breadcrumb > * + *::before {
  color: #b8c8c4;
  content: "/";
  margin-right: 8px;
}

.listing-hero__inner {
  align-items: end;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.listing-hero h1,
.article-hero h1 {
  font-size: clamp(2.2rem, 5.8vw, 4.8rem);
  line-height: 1.05;
  margin: 0;
  max-width: 920px;
}

.listing-hero p:not(.eyebrow),
.article-hero > p:not(.eyebrow) {
  color: #41545d;
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  max-width: 840px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.listing-layout {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) 300px;
  padding: 20px clamp(18px, 5vw, 72px) 78px;
}

.listing-filters {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
  min-width: 0;
  padding: 16px;
}

.listing-filters__head {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.listing-filters__head h2 {
  font-size: 1rem;
  line-height: 1.4;
  margin: 0;
}

.listing-filters__head button {
  background: transparent;
  border: 0;
  color: var(--aqua);
  cursor: pointer;
  flex: 0 0 auto;
  font-size: 0.86rem;
  font-weight: 900;
  padding: 4px 0;
}

.listing-filters__head button:disabled {
  color: #9aaba8;
  cursor: default;
}

.listing-guide,
.listing-related {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

.listing-guide__grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.listing-guide__grid article {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.listing-guide__grid h3 {
  font-size: 1rem;
  line-height: 1.35;
  margin: 0 0 8px;
}

.listing-guide__grid p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}

.content-grid--listing {
  gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
}

.index-link-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.index-link-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  min-height: 146px;
  padding: 18px;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.index-link-card:hover {
  border-color: rgba(0, 166, 166, 0.38);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.index-link-card span {
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 900;
}

.index-link-card strong {
  font-size: 1.18rem;
  line-height: 1.35;
}

.index-link-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.index-group + .index-group {
  margin-top: 44px;
}

.index-group {
  scroll-margin-top: 92px;
}

.filter-strip {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.filter-strip__label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.filter-strip__scroller {
  display: flex;
  gap: 10px;
  margin-inline: -16px;
  overflow-x: auto;
  padding: 0 16px 5px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.filter-chip {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  flex: 0 0 auto;
  font-size: 0.86rem;
  font-weight: 850;
  min-height: 38px;
  padding: 7px 14px;
  white-space: nowrap;
}

.filter-chip[aria-pressed="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: #ffffff;
}

.filter-chip:focus-visible,
.listing-filters__head button:focus-visible {
  outline: 3px solid rgba(0, 166, 166, 0.28);
  outline-offset: 2px;
}

.side-search {
  display: grid;
  gap: 16px;
  align-content: start;
}

.side-search section {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.side-search h2 {
  font-size: 1rem;
  margin: 0 0 12px;
}

.side-search a {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  text-decoration: none;
}

.article-page {
  margin: 0 auto;
  max-width: 1020px;
}

.article-hero {
  padding-inline: clamp(18px, 4vw, 40px);
}

.article-byline,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-row {
  margin-top: 18px;
}

.article-hero__image {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 24px 0 0;
  overflow: hidden;
}

.article-hero__image img {
  display: block;
  height: auto;
  width: 100%;
}

.article-body {
  display: grid;
  gap: 20px;
  padding: 0 clamp(18px, 4vw, 40px) 70px;
}

.internal-link-block {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  padding: clamp(18px, 4vw, 26px);
}

.internal-link-block h2 {
  font-size: clamp(1.18rem, 2.5vw, 1.5rem);
  line-height: 1.3;
  margin: 0;
}

.internal-link-block__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.internal-link-block__chips a {
  background: #eef8f4;
  border: 1px solid #d5e8e2;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 850;
  padding: 7px 12px;
  text-decoration: none;
}

.internal-link-list {
  display: grid;
  gap: 8px;
}

.internal-link-list a {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 3px;
  padding-top: 10px;
  text-decoration: none;
}

.internal-link-list span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.internal-link-list strong {
  line-height: 1.4;
}

.article-summary {
  background: #f7fbfa;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 30px);
}

.article-summary p {
  color: #234553;
  font-weight: 750;
  line-height: 1.8;
  margin: 0;
}

.facility-detail {
  margin: 0 auto;
  max-width: 1120px;
}

.facility-detail__hero {
  padding-inline: clamp(18px, 4vw, 40px);
}

.facility-detail__body {
  display: grid;
  gap: 20px;
  padding: 0 clamp(18px, 4vw, 40px) 70px;
}

.facility-detail__panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  padding: clamp(20px, 4vw, 30px);
}

.facility-detail__panel h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.72rem);
  line-height: 1.3;
  margin: 0;
}

.facility-detail__panel p {
  color: #334b56;
  line-height: 1.75;
  margin: 0;
}

.facility-detail__panel ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

.facility-detail__panel a {
  color: var(--aqua);
  font-weight: 900;
  text-decoration: none;
}

.facility-detail__summary dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.facility-detail__summary dl div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 8px;
  grid-template-columns: 110px minmax(0, 1fr);
  padding-bottom: 12px;
}

.facility-detail__summary dt {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

.facility-detail__summary dd {
  margin: 0;
}

.facility-detail__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.facility-detail__chips span {
  background: #eef8f4;
  border: 1px solid #d5e8e2;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 850;
  padding: 7px 12px;
}

.article-toc {
  display: grid;
  gap: 10px;
}

.article-toc p {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 950;
}

.article-toc ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

.article-toc a {
  color: var(--aqua);
  font-weight: 850;
  text-decoration: none;
}

.facility-section {
  display: grid;
  gap: 18px;
}

.facility-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.facility-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 20px;
}

.facility-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.facility-card__meta span {
  background: #eef8f4;
  border: 1px solid #d5e8e2;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  padding: 5px 10px;
}

.facility-card h3 {
  font-size: 1.25rem;
  line-height: 1.35;
  margin: 0;
}

.facility-card__purpose,
.facility-card li,
.facility-card__checks {
  color: #334b56;
}

.facility-card__checks {
  line-height: 1.75;
  margin: 0;
}

.facility-card__checks strong {
  color: var(--ink);
}

.facility-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.facility-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.facility-card__source {
  color: var(--aqua);
  font-weight: 900;
  text-decoration: none;
}

.article-section {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
}

.article-section h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.28;
  margin: 0 0 14px;
}

.article-subsection {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.article-subsection h3,
.article-subsection h4 {
  line-height: 1.35;
  margin: 0;
}

.article-subsection h3 {
  font-size: 1.2rem;
}

.article-subsection h4 {
  color: #234553;
  font-size: 1.05rem;
}

.article-section p {
  color: #334b56;
  margin: 0 0 14px;
}

.article-section ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 22px;
}

.related-block {
  margin-inline: auto;
  max-width: 1020px;
  padding-top: 0;
  width: 100%;
}

.related-block .section-heading {
  margin-bottom: 16px;
}

.related-block .section-heading h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

.related-block .content-grid {
  gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 300px));
  justify-content: start;
}

.related-block .content-card {
  min-height: 0;
}

.related-block .content-card__visual {
  aspect-ratio: 16 / 6.8;
  padding: 12px;
}

.related-block .content-card__body {
  gap: 7px;
  padding: 13px 14px 14px;
}

.related-block .content-card h3 {
  font-size: 1rem;
  min-height: 0;
}

.related-block .content-card p {
  font-size: 0.86rem;
  line-height: 1.55;
  min-height: 0;
  -webkit-line-clamp: 2;
}

.site-footer {
  align-items: center;
  background: #12313f;
  color: #effaf7;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 28px clamp(18px, 5vw, 72px);
}

.site-footer p {
  color: #bcd0d7;
  margin: 6px 0 0;
}

.site-footer nav {
  display: flex;
  gap: 16px;
}

.site-footer a {
  color: #effaf7;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 1180px) {
  .content-grid--featured {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 156px), 1fr));
    max-width: 100%;
  }
}

@media (max-width: 860px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: space-between;
    width: 100%;
  }

  .home-hero,
  .listing-hero__inner,
  .listing-layout {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
    padding-top: 38px;
  }

  .home-hero::before {
    background-position: 62% top;
    background-size: auto 430px;
    filter: blur(1.5px);
    opacity: 0.9;
  }

  .home-hero::after {
    backdrop-filter: blur(8px);
    background:
      linear-gradient(180deg, rgba(247, 251, 248, 0.9) 0%, rgba(247, 251, 248, 0.88) 42%, rgba(247, 251, 248, 0.98) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.7));
  }

  .home-hero__copy,
  .home-hero .search-panel,
  .home-hero .popular-spots {
    grid-column: 1;
  }

  .listing-guide__grid {
    grid-template-columns: 1fr;
  }

  .facility-detail__summary dl div {
    grid-template-columns: 1fr;
  }

  .search-panel {
    grid-template-columns: 1fr;
  }

  .search-panel label {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .search-panel button {
    min-height: 58px;
  }

  .content-card h3,
  .content-card p {
    min-height: 0;
  }

  .content-list .content-card a {
    grid-template-columns: minmax(132px, 36vw) minmax(0, 1fr);
    min-height: 150px;
  }

  .content-list .content-card__visual {
    aspect-ratio: auto;
    height: 100%;
    min-height: 0;
  }

  .content-list .content-card__body {
    gap: 7px;
    padding: 14px;
  }

  .content-list .content-card h3 {
    font-size: 1rem;
    line-height: 1.35;
  }

  .content-list .content-card p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

@media (max-width: 460px) {
  .spot-card__facts div {
    grid-template-columns: 1fr;
  }

  .content-list .content-card a {
    grid-template-columns: 1fr;
  }

  .content-list .content-card__visual {
    aspect-ratio: 16 / 7;
    height: auto;
  }
}
