/* Generated by assets:build_public_styles. */

/* renewed_spot.css */
    :root {
      --paper: #f4f0e7;
      --surface: #fffdf8;
      --surface-soft: #e9f0eb;
      --warm: #fbf1e5;
      --ink: #17251f;
      --muted: #5e6d65;
      --line: #d6ddd7;
      --brand-orange: #ff964c;
      --green: #b6532b;
      --green-light: #f7dfd1;
      --orange: #8f3d20;
      --white: #fff;
      --shadow: 0 18px 50px rgba(16, 38, 28, .14);
      --radius: 18px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      background: #e5e9e5;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: #e5e9e5;
      font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
      line-height: 1.8;
      -webkit-font-smoothing: antialiased;
    }

    body,
    button,
    a {
      -webkit-tap-highlight-color: transparent;
    }

    img {
      display: block;
      width: 100%;
      height: auto;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      color: inherit;
      font: inherit;
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1,
    h2,
    h3 {
      font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
      font-weight: 700;
      line-height: 1.45;
    }

    .page {
      width: min(100%, 480px);
      min-height: 100vh;
      margin: 0 auto;
      overflow: clip;
      background: var(--paper);
      box-shadow: var(--shadow);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 12px;
      min-height: 64px;
      padding: 10px 14px;
      background: rgba(255, 253, 248, .94);
      border-bottom: 1px solid rgba(22, 76, 56, .1);
      backdrop-filter: blur(14px);
    }

    .brand {
      display: flex;
      align-items: center;
      min-width: 0;
      gap: 9px;
    }

    .brand-mark {
      display: grid;
      width: 38px;
      height: 38px;
      flex: 0 0 auto;
      place-items: center;
    }

    .brand-mark img {
      width: 36px;
      height: 36px;
      object-fit: contain;
    }

    .brand-copy {
      display: flex;
      min-width: 0;
      flex-direction: column;
      line-height: 1.35;
    }

    .brand-copy small {
      overflow: hidden;
      margin-bottom: 3px;
      color: var(--muted);
      font-size: 12px;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .brand-copy strong {
      overflow: hidden;
      font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
      font-size: 15px;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .header-menu {
      position: relative;
    }

    .header-menu-toggle {
      display: inline-flex;
      min-height: 40px;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 0 13px;
      color: var(--green);
      background: var(--green-light);
      border: 0;
      border-radius: 999px;
      cursor: pointer;
      list-style: none;
      font-size: 13px;
      font-weight: 700;
    }

    .header-menu-toggle::-webkit-details-marker {
      display: none;
    }

    .header-menu-toggle .guide-icon {
      width: 18px;
      height: 18px;
      stroke-width: 2.3;
    }

    .header-menu-panel {
      position: absolute;
      top: calc(100% + 10px);
      right: -2px;
      z-index: 60;
      width: min(280px, calc(100vw - 28px));
      max-height: calc(100dvh - 92px);
      overflow-y: auto;
      padding: 8px 14px;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 14px;
      box-shadow: 0 12px 28px rgba(23, 37, 31, .2);
      overscroll-behavior: contain;
    }

    .header-menu-panel nav {
      display: grid;
    }

    .header-menu-panel a {
      padding: 11px 2px;
      color: var(--ink);
      border-bottom: 1px solid var(--line);
      font-size: 14px;
      font-weight: 700;
    }

    .header-menu-panel a:last-child {
      border-bottom: 0;
    }

    .breadcrumb {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      padding: 10px 14px;
      color: var(--muted);
      background: #ebe9e4;
      border-bottom: 1px solid rgba(23, 37, 31, .08);
      font-size: 12px;
    }

    .hero-slider {
      position: relative;
      background: #17201c;
    }

    .hero-slides {
      position: relative;
      aspect-ratio: 4 / 3;
      overflow: hidden;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      pointer-events: none;
      visibility: hidden;
      transition: opacity .32s ease;
    }

    .hero-slide.is-active {
      opacity: 1;
      pointer-events: auto;
      visibility: visible;
    }

    .hero-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-slide::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 42%;
      background: linear-gradient(transparent, rgba(7, 16, 12, .74));
      pointer-events: none;
    }

    .shot-date {
      position: absolute;
      right: 12px;
      bottom: 12px;
      z-index: 1;
      padding: 5px 9px;
      color: var(--white);
      background: rgba(7, 20, 14, .72);
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: 999px;
      font-size: 12px;
      line-height: 1.4;
      backdrop-filter: blur(8px);
    }

    .slider-arrow {
      position: absolute;
      top: 50%;
      z-index: 4;
      display: flex;
      width: 52px;
      height: 52px;
      align-items: center;
      justify-content: center;
      padding: 0;
      color: var(--white);
      background: rgba(7, 20, 14, .58);
      border: 1px solid rgba(255, 255, 255, .3);
      border-radius: 50%;
      cursor: pointer;
      transform: translateY(-50%);
      backdrop-filter: blur(8px);
    }

    .slider-arrow--prev {
      left: 10px;
    }

    .slider-arrow--next {
      right: 10px;
    }

    .slider-arrow .slider-arrow-icon {
      width: 31px;
      height: 31px;
      stroke-width: 3.1;
    }

    .hero-excerpt {
      margin: 0;
      padding: 10px 14px 5px;
      color: var(--muted);
      background: var(--paper);
      font-size: 15px;
      text-align: center;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .hero-copy {
      padding: 8px 14px 0;
    }

    .renewed-spot-page .hero-copy h1,
    .renewed-spot-page .hero-copy .spot-yomi,
    .renewed-spot-page .hero-copy .spot-catch-copy {
      margin-right: auto;
      margin-left: auto;
      text-align: center;
    }

    .renewed-spot-page .hero-copy .description,
    .renewed-spot-page .hero-copy .charm-lead {
      margin-right: auto;
      margin-left: auto;
      text-align: left;
    }

    .spot-yomi {
      margin: 0 0 3px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .08em;
      line-height: 1.35;
    }

    .location {
      margin-bottom: 2px;
      color: var(--muted);
      font-size: 14px;
    }

    .hero-copy h1 {
      margin-bottom: 14px;
      font-size: clamp(24px, 6.3vw, 29px);
      letter-spacing: .02em;
      line-height: 1.38;
    }

    .spot-classification {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin: -3px 0 15px;
    }

    .spot-classification-chip {
      display: inline-flex;
      min-height: 34px;
      align-items: center;
      gap: 5px;
      padding: 6px 10px;
      color: var(--orange);
      background: #f7e7dc;
      border: 1px solid #edd2c2;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
      line-height: 1.35;
    }

    .spot-classification-chip .guide-icon {
      width: 15px;
      height: 15px;
      stroke-width: 2.2;
    }

    .spot-classification-chip--location {
      color: #fff;
      background: var(--green);
      border-color: var(--green);
    }

    .spot-classification-chip--situation {
      color: var(--orange);
      background: var(--green-light);
      border-color: #edd2c2;
    }

    .spot-classification-chip--season {
      color: var(--orange);
      background: var(--warm);
      border-color: #ead8c8;
    }

    .spot-classification-chip:focus-visible {
      outline: 3px solid rgba(143, 61, 32, .28);
      outline-offset: 2px;
    }

    .hero-thumbnails {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: clamp(44px, 13vw, 76px);
      justify-content: safe center;
      gap: clamp(5px, 1.6vw, 8px);
      margin: 3px 14px 8px;
      padding: 3px 2px 8px;
      overflow-x: auto;
      overscroll-behavior-inline: contain;
      scroll-snap-type: inline proximity;
      scrollbar-width: none;
    }

    .hero-thumbnails::-webkit-scrollbar {
      display: none;
    }

    .hero-thumbnail {
      position: relative;
      aspect-ratio: 4 / 3;
      padding: 0;
      overflow: hidden;
      background: #dfe5e1;
      border: 2px solid transparent;
      border-radius: 10px;
      box-shadow: 0 3px 9px rgba(23, 37, 31, .12);
      cursor: pointer;
      opacity: .72;
      scroll-snap-align: start;
      transition: border-color .2s ease, box-shadow .2s ease, opacity .2s ease, transform .2s ease;
    }

    .hero-thumbnail img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-thumbnail.is-active {
      border-color: var(--brand-orange);
      box-shadow: 0 0 0 2px rgba(255, 150, 76, .2), 0 4px 12px rgba(23, 37, 31, .16);
      opacity: 1;
    }

    .hero-thumbnail:focus-visible {
      outline: 3px solid rgba(255, 150, 76, .34);
      outline-offset: 2px;
    }

    .hero-slider {
      scroll-margin-top: 72px;
    }

    .description {
      margin-bottom: 10px;
      font-size: 16px;
    }

    .charm-lead {
      margin-bottom: 16px;
      color: var(--ink);
      font-size: 16px;
    }

    .guide-icon {
      width: 1.15em;
      height: 1.15em;
      flex: 0 0 auto;
    }

    .primary-action,
    .gallery-action,
    .map-action {
      display: flex;
      width: 100%;
      min-height: 52px;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 11px 16px;
      color: var(--white);
      background: var(--green);
      border-radius: 999px;
      font-weight: 700;
    }

    .hero-copy .primary-action {
      margin-bottom: 0;
    }

    .section-band {
      padding: 26px 14px;
    }

    .section-band--compact-top {
      padding-top: 18px;
    }

    .section-band--warm {
      background: var(--warm);
    }

    .section-band--white {
      background: var(--surface);
    }

    .section-band--soft {
      background: var(--surface-soft);
    }

    .section-band--instagram {
      background: #f4eef6;
    }

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

    .section-heading h2 {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
      font-size: 22px;
    }

    .section-heading p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .author-head {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-bottom: 16px;
    }

    .author-avatar {
      display: grid;
      width: 68px;
      height: 68px;
      flex: 0 0 auto;
      overflow: hidden;
      place-items: center;
      color: var(--white);
      background: var(--orange);
      border: 3px solid var(--surface);
      border-radius: 50%;
      font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
      font-size: 24px;
      font-weight: 700;
    }

    .author-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .author-copy {
      min-width: 0;
    }

    .author-copy small {
      color: var(--orange);
      font-size: 12px;
      font-weight: 700;
    }

    .author-copy h2 {
      margin: 0;
      font-size: 21px;
    }

    .visit-date {
      display: inline-block;
      margin-top: 5px;
      padding: 3px 8px;
      color: var(--orange);
      background: #f5dfcf;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
    }

    .author-intro {
      margin: 16px 0 24px;
      color: var(--ink);
      font-size: 15px;
    }

    .story-list {
      display: grid;
      gap: 18px;
    }

    .story {
      scroll-margin-top: 76px;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(169, 82, 43, .18);
    }

    .story:last-child {
      padding-bottom: 0;
      border-bottom: 0;
    }

    .story img {
      aspect-ratio: 16 / 10;
      margin-bottom: 14px;
      border-radius: var(--radius);
      object-fit: cover;
    }

    .story h3 {
      margin-bottom: 8px;
      font-size: 20px;
    }

    .story p {
      margin-bottom: 0;
      color: var(--ink);
      font-size: 15px;
    }

    .gallery-band {
      padding: 32px 14px;
      color: var(--white);
      background: var(--green);
    }

    .gallery-band h2 {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
      font-size: 22px;
    }

    .gallery-band p {
      margin-bottom: 18px;
      color: rgba(255, 255, 255, .82);
      font-size: 15px;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 7px;
      margin-bottom: 16px;
    }

    .gallery-grid img {
      aspect-ratio: 1;
      border: 2px solid rgba(255, 255, 255, .24);
      border-radius: 12px;
      object-fit: cover;
    }

    .gallery-action {
      color: var(--green);
      background: var(--white);
    }

    .map-action {
      margin-bottom: 0;
      border-radius: 14px;
    }

    .visit-map-panel {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .map-frame {
      overflow: hidden;
      margin-bottom: 0;
      background: #dce5df;
      border: 1px solid var(--line);
      border-radius: var(--radius);
    }

    .map-frame iframe {
      display: block;
      width: 100%;
      height: 270px;
      border: 0;
    }

    .facts {
      margin: 0;
      border-top: 1px solid var(--line);
    }

    .visit-fact-panels {
      display: grid;
      gap: 22px;
    }

    .facts div {
      display: grid;
      grid-template-columns: 105px 1fr;
      gap: 12px;
      padding: 13px 0;
      border-bottom: 1px solid var(--line);
    }

    .facts dt {
      display: flex;
      align-items: flex-start;
      gap: 5px;
      color: var(--muted);
      font-size: 14px;
    }

    .facts dd {
      min-width: 0;
      margin: 0;
      font-size: 14px;
      font-weight: 600;
      line-height: 1.7;
      overflow-wrap: anywhere;
      white-space: pre-line;
      word-break: break-word;
    }

    .spot-list,
    .article-list {
      display: grid;
      gap: 16px;
    }

    .spot-card,
    .article-card {
      display: block;
      overflow: hidden;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
    }

    .spot-card img,
    .article-card img {
      aspect-ratio: 16 / 9;
      object-fit: cover;
    }

    .card-copy {
      padding: 14px;
    }

    .mini-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      margin-bottom: 8px;
    }

    .mini-tags span,
    .article-type {
      display: inline-flex;
      padding: 3px 7px;
      color: var(--green);
      background: var(--green-light);
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
    }

    .spot-title-row {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 10px;
    }

    .spot-title-row h3,
    .article-card h3 {
      margin-bottom: 0;
      font-size: 18px;
    }

    .distance {
      flex: 0 0 auto;
      color: var(--orange);
      font-size: 12px;
      font-weight: 700;
    }

    .spot-card p,
    .article-card p {
      margin: 7px 0 0;
      color: var(--muted);
      font-size: 15px;
    }

    .nearby-spot-list .spot-card {
      display: grid;
      grid-template-columns: 116px minmax(0, 1fr);
      align-items: stretch;
    }

    .nearby-spot-list .spot-card img {
      width: 100%;
      height: 100%;
      aspect-ratio: 1;
      object-fit: cover;
    }

    .nearby-spot-list .spot-card .card-copy {
      min-width: 0;
      padding: 12px 13px;
    }

    .nearby-spot-list .mini-tags {
      margin-bottom: 5px;
    }

    .nearby-spot-list .spot-title-row h3 {
      font-size: 17px;
      line-height: 1.4;
    }

    .nearby-spot-list .spot-card p {
      margin-top: 5px;
      font-size: 13px;
      line-height: 1.55;
    }

    .distance-note {
      margin: 10px 0 0;
      color: var(--muted);
      font-size: 12px;
    }

    .article-type {
      margin-bottom: 7px;
      color: var(--orange);
      background: #f4e1d5;
    }

    .tag-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    .tag-card {
      position: relative;
      display: flex;
      min-height: 112px;
      flex-direction: column;
      justify-content: flex-end;
      overflow: hidden;
      padding: 12px;
      color: var(--white);
      background-color: var(--green);
      background-position: center;
      background-size: cover;
      border-radius: 15px;
    }

    .tag-card--plain {
      background-image: linear-gradient(135deg, var(--green), var(--orange));
    }

    .tag-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(transparent 20%, rgba(8, 24, 16, .84));
    }

    .tag-card span,
    .tag-card small {
      position: relative;
      z-index: 1;
    }

    .tag-card span {
      font-weight: 700;
    }

    .tag-card small {
      color: rgba(255, 255, 255, .78);
    }

    .sources-head {
      margin-bottom: 12px;
    }

    .sources-head h2 {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
      font-size: 24px;
    }

    .sources-head p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .sources {
      margin: 0;
      border-top: 1px solid var(--line);
    }

    .sources div {
      display: grid;
      grid-template-columns: 125px 1fr;
      gap: 10px;
      padding: 11px 0;
      border-bottom: 1px solid var(--line);
    }

    .sources dt,
    .sources dd {
      font-size: 14px;
    }

    .sources dt {
      color: var(--muted);
    }

    .sources dd {
      min-width: 0;
      margin: 0;
      overflow-wrap: anywhere;
      word-break: break-word;
    }

    .sources a {
      color: var(--green);
      font-weight: 700;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .source-note {
      margin: 13px 0 0;
      color: var(--muted);
      font-size: 12px;
    }

    .advanced-search {
      padding: 26px 14px;
      background: var(--surface);
      border-top: 1px solid var(--line);
    }

    .advanced-search--page {
      background: var(--warm);
      border-top: 0;
    }

    .advanced-search-head {
      display: grid;
      grid-template-columns: 48px minmax(0, 1fr);
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }

    .advanced-search-head-icon {
      display: grid;
      width: 48px;
      height: 48px;
      place-items: center;
      color: var(--white);
      background: var(--brand-orange);
      border-radius: 15px;
      box-shadow: 0 8px 18px rgba(182, 83, 43, .2);
    }

    .advanced-search-head-icon .guide-icon {
      width: 25px;
      height: 25px;
      stroke-width: 2.2;
    }

    .advanced-search-head h1,
    .advanced-search-head h2 {
      margin-bottom: 3px;
      font-size: 25px;
    }

    .advanced-search-head p {
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.65;
    }

    .advanced-search-form {
      display: grid;
      gap: 10px;
    }

    .advanced-search-block,
    .advanced-search-more,
    .advanced-search-keyword {
      min-width: 0;
      margin: 0;
      padding: 15px;
      background: var(--surface-soft);
      border: 1px solid var(--line);
      border-radius: 16px;
    }

    .advanced-search-block legend,
    .advanced-search-keyword > span {
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 0 5px;
      color: var(--ink);
      font-size: 14px;
      font-weight: 700;
    }

    .advanced-search-block legend .guide-icon,
    .advanced-search-keyword .guide-icon,
    .advanced-search-more summary .guide-icon {
      width: 19px;
      height: 19px;
      color: var(--orange);
      stroke-width: 2.2;
    }

    .advanced-search-choice-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 7px;
    }

    .advanced-search-choice-row--wrap {
      display: flex;
      flex-wrap: wrap;
      padding-top: 13px;
    }

    .advanced-search-choice-row--areas label {
      min-width: calc(33.333% - 5px);
      flex: 1 1 calc(33.333% - 5px);
    }

    .advanced-search-choice-row input {
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
    }

    .advanced-search-choice-row label {
      display: inline-flex;
      min-height: 42px;
      align-items: center;
      justify-content: center;
      padding: 8px 11px;
      color: var(--muted);
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 999px;
      cursor: pointer;
      font-size: 13px;
      font-weight: 700;
      line-height: 1.3;
      text-align: center;
    }

    .advanced-search-choice-row input:checked + label {
      color: var(--white);
      background: var(--green);
      border-color: var(--green);
      box-shadow: 0 4px 10px rgba(182, 83, 43, .16);
    }

    .advanced-search-choice-row input:focus-visible + label {
      outline: 3px solid rgba(255, 150, 76, .34);
      outline-offset: 2px;
    }

    .advanced-search-selects {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
    }

    .advanced-search-selects label {
      display: grid;
      gap: 5px;
    }

    .advanced-search-selects label > span {
      color: var(--muted);
      font-size: 11px;
      font-weight: 700;
    }

    .advanced-search-selects select,
    .advanced-search-keyword input {
      width: 100%;
      min-height: 46px;
      padding: 9px 12px;
      color: var(--ink);
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 12px;
      font: inherit;
      font-size: 14px;
    }

    .advanced-search-more {
      padding-block: 0;
    }

    .advanced-search-more summary {
      display: flex;
      min-height: 58px;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      cursor: pointer;
      list-style: none;
      font-size: 14px;
      font-weight: 700;
    }

    .advanced-search-more summary::-webkit-details-marker {
      display: none;
    }

    .advanced-search-more summary > span:first-child {
      display: flex;
      align-items: center;
      gap: 7px;
    }

    .advanced-search-plus {
      position: relative;
      width: 26px;
      height: 26px;
      flex: 0 0 auto;
      background: var(--orange);
      border-radius: 50%;
    }

    .advanced-search-plus::before,
    .advanced-search-plus::after {
      position: absolute;
      content: "";
      top: 50%;
      left: 50%;
      width: 11px;
      height: 2px;
      background: var(--white);
      border-radius: 99px;
      transform: translate(-50%, -50%);
    }

    .advanced-search-plus::after {
      transform: translate(-50%, -50%) rotate(90deg);
      transition: transform .2s ease;
    }

    .advanced-search-more[open] .advanced-search-plus::after {
      transform: translate(-50%, -50%) rotate(0deg);
    }

    .advanced-search-more[open] {
      padding-bottom: 15px;
    }

    .advanced-search-more-link {
      display: inline-flex;
      margin-top: 13px;
      color: var(--orange);
      font-size: 13px;
      font-weight: 700;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .advanced-search-popular-cities {
      padding-top: 13px;
    }

    .advanced-search-popular-cities h3,
    .advanced-search-city-group h3 {
      margin-bottom: 8px;
      color: var(--muted);
      font-size: 12px;
    }

    .advanced-search-quick-links {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
    }

    .advanced-search-quick-links a,
    .advanced-search-quick-links button {
      display: inline-flex;
      min-height: 40px;
      align-items: center;
      justify-content: center;
      padding: 7px 12px;
      color: var(--orange);
      background: #f7e7dc;
      border: 1px solid #edd2c2;
      border-radius: 999px;
      cursor: pointer;
      font-family: inherit;
      font-size: 13px;
      font-weight: 700;
    }

    .advanced-search-quick-links a.is-active,
    .advanced-search-quick-links button.is-active {
      color: var(--white);
      background: var(--green);
      border-color: var(--green);
    }

    .advanced-search-city-groups {
      display: grid;
      gap: 15px;
      margin-top: 15px;
      padding-top: 2px;
      border-top: 1px solid var(--line);
    }

    .advanced-search-city-group {
      min-width: 0;
    }

    .advanced-search-city-group[hidden] {
      display: none;
    }

    .advanced-search-city-group .advanced-search-choice-row--wrap,
    .advanced-search-city-groups > .advanced-search-choice-row--wrap {
      padding-top: 0;
    }

    .advanced-search-keyword {
      display: grid;
      gap: 8px;
    }

    .advanced-search-keyword > span {
      padding: 0;
    }

    .advanced-search-submit {
      display: flex;
      width: 100%;
      min-height: 54px;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 11px 18px;
      color: var(--white);
      background: var(--green);
      border: 0;
      border-radius: 999px;
      box-shadow: 0 8px 18px rgba(182, 83, 43, .2);
      cursor: pointer;
      font-size: 15px;
      font-weight: 700;
    }

    .advanced-search-submit .guide-icon {
      width: 20px;
      height: 20px;
      stroke-width: 2.2;
    }

    .guide-search-result-list {
      display: grid;
      gap: 12px;
    }

    .guide-search-result-groups {
      display: grid;
      gap: 26px;
    }

    .guide-search-result-group {
      min-width: 0;
    }

    .guide-search-result-group + .guide-search-result-group {
      padding-top: 24px;
      border-top: 1px solid var(--line);
    }

    .guide-search-result-group > h3 {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
      font-size: 19px;
    }

    .guide-search-result-group > h3 .guide-icon {
      width: 21px;
      height: 21px;
      color: var(--orange);
      stroke-width: 2.2;
    }

    .guide-search-view-switch {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 7px;
      margin: -4px 0 16px;
      padding: 4px;
      background: var(--surface-soft);
      border: 1px solid var(--line);
      border-radius: 999px;
    }

    .guide-active-search {
      display: grid;
      gap: 8px;
      margin-bottom: 15px;
      padding: 12px;
      background: #fff8f2;
      border: 1px solid #edd8ca;
      border-radius: 14px;
    }

    .guide-active-search__title {
      display: flex;
      align-items: center;
      gap: 6px;
      color: var(--muted);
      font-size: 12px;
    }

    .guide-active-search__title .guide-icon {
      width: 16px;
      height: 16px;
      color: var(--orange);
      stroke-width: 2.2;
    }

    .guide-active-search__chips {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .guide-active-search__chips span {
      display: inline-flex;
      min-width: 0;
      max-width: 100%;
      min-height: 31px;
      align-items: center;
      padding: 5px 9px;
      color: var(--orange);
      background: var(--white);
      border: 1px solid #e8c9b7;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
      line-height: 1.35;
      overflow-wrap: anywhere;
      word-break: break-word;
    }

    .guide-search-view-switch a {
      display: flex;
      min-height: 42px;
      align-items: center;
      justify-content: center;
      gap: 6px;
      color: var(--muted);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 700;
    }

    .guide-search-view-switch a.is-active {
      color: var(--white);
      background: var(--green);
      box-shadow: 0 4px 10px rgba(182, 83, 43, .17);
    }

    .guide-search-view-switch .guide-icon {
      width: 18px;
      height: 18px;
      stroke-width: 2.2;
    }

    .guide-search-empty {
      padding: 26px 18px;
      color: var(--muted);
      background: var(--surface-soft);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      text-align: center;
    }

    .guide-search-empty .guide-icon {
      width: 34px;
      height: 34px;
      margin-bottom: 10px;
      color: var(--orange);
    }

    .guide-search-empty h2 {
      margin-bottom: 7px;
      color: var(--ink);
      font-size: 19px;
    }

    .guide-search-empty p {
      margin: 0;
      font-size: 13px;
    }

    .footer {
      padding: 30px 14px calc(30px + env(safe-area-inset-bottom));
      color: var(--white);
      background: #6f2f19;
    }

    .footer .brand-mark {
      background: transparent;
    }

    .footer .brand-copy small {
      color: rgba(255, 255, 255, .7);
    }

    .footer-links {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 26px 20px;
      margin-top: 28px;
    }

    .footer-nav-group:last-child {
      grid-column: 1 / -1;
    }

    .footer-nav-group h2 {
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 0 0 8px;
      color: #ffd6c2;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .08em;
    }

    .footer-nav-group h2::before {
      width: 17px;
      height: 2px;
      flex: 0 0 auto;
      background: #ff9664;
      border-radius: 999px;
      content: "";
    }

    .footer-nav-group__links {
      display: grid;
    }

    .footer-nav-group:last-child .footer-nav-group__links {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      column-gap: 18px;
    }

    .footer-nav-group__links a {
      display: flex;
      min-width: 0;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .14);
      color: rgba(255, 255, 255, .9);
      font-size: 13px;
      line-height: 1.45;
    }

    .footer-nav-group__links a::after {
      flex: 0 0 auto;
      color: rgba(255, 255, 255, .48);
      content: "›";
      font-size: 18px;
      line-height: 1;
    }

    .copyright {
      margin: 18px 0 0;
      color: rgba(255, 255, 255, .6);
      font-size: 12px;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    @media (max-width: 350px) {
      .footer-links {
        grid-template-columns: 1fr;
      }

      .footer-nav-group:last-child {
        grid-column: auto;
      }

      .footer-nav-group:last-child .footer-nav-group__links {
        grid-template-columns: 1fr;
      }

      .brand-copy small {
        display: none;
      }

      .header-menu-toggle {
        padding-inline: 10px;
      }

      .author-copy h2 {
        font-size: 19px;
      }

      .facts div,
      .sources div {
        grid-template-columns: 1fr;
        gap: 2px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      .hero-slide,
      .hero-thumbnail {
        transition: none;
      }
    }

/* Photo-first presentation shared by the home page and renewed spot pages. */

.home-intro.home-intro--with-photo {
  position: relative;
  padding: 0 0 26px;
  color: #fff;
  background: #14231d;
  border-bottom: 0;
}

.instagram-section .section-heading {
  text-align: center;
}

.instagram-section .section-heading h2,
.instagram-section .section-heading p {
  justify-content: center;
  margin-inline: auto;
  text-align: center;
}

.instagram-embed-shell {
  display: grid;
  place-items: center;
  width: min(100%, 620px);
  min-height: 280px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.instagram-embed-shell .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 540px !important;
  margin: 0 !important;
}

.instagram-section--unavailable .instagram-embed-shell {
  min-height: 120px;
}

#visit-info .section-heading {
  text-align: center;
}

#visit-info .section-heading h2 {
  justify-content: center;
  margin-inline: auto;
}

.home-intro--with-photo .home-intro__lead-layout {
  position: relative;
  min-height: clamp(540px, 76svh, 760px);
}

.home-intro--with-photo .home-intro__carousel {
  position: absolute;
  inset: 0;
  display: block;
  margin: 0;
}

.home-intro--with-photo .home-intro__carousel-viewport {
  position: absolute;
  inset: 0;
  height: 100%;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.home-intro--with-photo .home-intro__carousel-viewport::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 19, 14, .12), transparent 42%, rgba(7, 19, 14, .62));
}

.home-intro--with-photo .home-intro__slide-link::after {
  display: none;
}

.home-intro--with-photo .home-intro__slide img {
  filter: saturate(1.04) contrast(1.02);
}

.home-intro--with-photo .home-intro__copy {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.home-intro--with-photo .home-intro__photo-copy {
  top: auto;
  z-index: 3;
  right: 52px;
  bottom: 94px;
  left: 52px;
  display: block;
  width: auto;
  padding: 0;
  color: #fff;
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  text-shadow: 0 3px 22px rgba(0, 0, 0, .72);
  backdrop-filter: none;
}

.home-intro--with-photo .home-intro__photo-copy strong {
  display: block;
  font-size: clamp(26px, 7vw, 38px);
  line-height: 1.35;
  letter-spacing: .04em;
}

.home-intro--with-photo .home-intro__carousel-controls {
  position: absolute;
  z-index: 5;
  right: auto;
  bottom: 40px;
  left: 50%;
  width: fit-content;
  margin: 0;
  color: #fff;
  transform: translateX(-50%);
}

.home-intro--with-photo .home-intro__carousel-dot::before {
  background: rgba(255, 255, 255, .56);
}

.home-intro--with-photo .home-intro__carousel-dot.is-active::before {
  background: #fff;
}

.home-intro--with-photo .home-path-nav {
  position: relative;
  z-index: 6;
  margin: -28px 14px 0;
  padding: 7px;
  color: var(--ink);
  background: rgba(255, 253, 248, .95);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(5, 20, 14, .28);
  backdrop-filter: blur(12px);
}

.home-intro--with-photo .home-path-nav a {
  min-height: 62px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.guide-photo-discovery-caption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 2px;
  padding: 34px 12px 11px;
  color: #fff;
  background: linear-gradient(transparent, rgba(6, 20, 14, .84));
  text-shadow: 0 2px 8px rgba(0, 0, 0, .4);
}

.guide-photo-discovery-caption small {
  font-size: 10px;
  font-weight: 600;
}

.guide-photo-discovery-caption strong {
  overflow: hidden;
  font-size: 13px;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.guide-photo-discovery-grid--home {
  gap: 8px;
}

.guide-photo-discovery-grid--home .guide-photo-discovery-card:first-child {
  grid-column: 1 / -1;
}

.guide-photo-discovery-grid--home .guide-photo-discovery-card:first-child figure {
  aspect-ratio: 16 / 10;
}

.guide-photo-discovery-grid--home .guide-photo-discovery-card:first-child .guide-photo-discovery-caption strong {
  font-size: 18px;
}

.spot-catch-copy {
  color: var(--orange);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.65;
}

.renewed-spot-page .hero--with-media {
  --gallery-width: min(88vw, 440px);
  display: flex;
  flex-direction: column;
  padding-bottom: 12px;
  overflow: hidden;
  background: var(--surface);
}

.renewed-spot-page .hero--with-media .hero-copy {
  display: contents;
}

.renewed-spot-page .hero--with-media .hero-copy h1,
.renewed-spot-page .hero--with-media .spot-yomi,
.renewed-spot-page .hero--with-media .spot-catch-copy,
.renewed-spot-page .hero--with-media .spot-classification,
.renewed-spot-page .hero--with-media .description,
.renewed-spot-page .hero--with-media .charm-lead,
.renewed-spot-page .hero--with-media .primary-action {
  width: min(calc(100% - 28px), 980px);
  margin-right: auto;
  margin-left: auto;
}

.renewed-spot-page .hero--with-media .spot-yomi { order: 0; margin-top: 18px; margin-bottom: 0; }
.renewed-spot-page .hero--with-media .hero-copy h1 { order: 1; margin-top: 18px; margin-bottom: 4px; }
.renewed-spot-page .hero--with-media .hero-copy .spot-yomi + h1 { margin-top: 3px; }
.renewed-spot-page .hero--with-media .spot-catch-copy { order: 2; margin-bottom: 12px; }
.renewed-spot-page .hero--with-media .hero-slider { order: 3; }
.renewed-spot-page .hero--with-media .hero-excerpt { order: 4; }
.renewed-spot-page .hero--with-media .hero-thumbnails { order: 5; }
.renewed-spot-page .hero--with-media .description { order: 6; margin-top: 28px; }
.renewed-spot-page .hero--with-media .charm-lead { order: 7; }
.renewed-spot-page .hero--with-media .spot-classification { order: 8; margin-bottom: 22px; }
.renewed-spot-page .hero--with-media .primary-action { order: 9; }

.renewed-spot-page .hero--with-media .hero-slider {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: var(--warm);
}

.renewed-spot-page .hero--with-media .hero-slides {
  width: var(--gallery-width);
  margin: 0 auto;
  overflow: visible;
  aspect-ratio: 4 / 3;
}

.renewed-spot-page .hero--with-media .hero-slide {
  overflow: hidden;
  border-radius: 2px;
  transform: scale(.92);
  transition: opacity .38s ease, transform .5s cubic-bezier(.22, .61, .36, 1);
}

.renewed-spot-page .hero--with-media .hero-slide.is-active {
  z-index: 3;
  transform: translateX(0) scale(1);
}

.renewed-spot-page .hero--with-media .hero-slide.is-prev,
.renewed-spot-page .hero--with-media .hero-slide.is-next {
  z-index: 1;
  opacity: .42;
  visibility: visible;
}

.renewed-spot-page .hero--with-media .hero-slide.is-prev {
  transform: translateX(-104%) scale(.92);
}

.renewed-spot-page .hero--with-media .hero-slide.is-next {
  transform: translateX(104%) scale(.92);
}

.renewed-spot-page .hero--with-media .hero-slide::after {
  height: 28%;
}

.renewed-spot-page .hero--with-media .slider-arrow--prev {
  left: calc((100% - var(--gallery-width)) / 2 + 10px);
}

.renewed-spot-page .hero--with-media .slider-arrow--next {
  right: calc((100% - var(--gallery-width)) / 2 + 10px);
}

.renewed-spot-page .hero--with-media .hero-excerpt {
  width: min(var(--gallery-width), 980px);
  padding: 12px 14px 5px;
  background: transparent;
}

.renewed-spot-page .hero--with-media .hero-thumbnails {
  width: min(calc(100% - 28px), 980px);
  margin: 4px auto 0;
}

.renewed-spot-page .hero--with-media .description,
.renewed-spot-page .hero--with-media .charm-lead {
  max-width: 820px;
}

.renewed-spot-page .visit-taxonomy-panel {
  margin-top: 18px;
}

.renewed-spot-page .visit-taxonomy-panel .spot-taxonomy-groups {
  margin-top: 0;
}

.renewed-spot-page .hero--with-media .description,
.renewed-spot-page .hero--with-media .charm-lead {
  font-size: 16px;
  line-height: 1.9;
}

.renewed-spot-page .article-list {
  gap: 12px;
}

.renewed-spot-page .article-list .guide-article-card {
  display: grid;
  min-height: 112px;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: stretch;
}

.renewed-spot-page .article-list .guide-card-image {
  width: 100%;
  height: 100%;
  min-height: 112px;
  aspect-ratio: 1;
}

.renewed-spot-page .article-list .guide-card-image > img,
.renewed-spot-page .article-list .guide-card-image > .guide-image-placeholder {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.renewed-spot-page .article-list .guide-article-card .card-copy {
  display: flex;
  align-items: center;
  padding: 12px 13px;
}

.renewed-spot-page .article-list .guide-article-card h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media (max-width: 899px) {
  .renewed-spot-page .hero--with-media .spot-yomi,
  .renewed-spot-page .hero--with-media .hero-copy h1,
  .renewed-spot-page .hero--with-media .spot-catch-copy {
    text-align: left;
  }

  .renewed-spot-page .hero--with-media .spot-yomi {
    font-size: 12px;
  }

  .renewed-spot-page .hero--with-media .hero-copy h1 {
    font-size: clamp(22px, 5.7vw, 26px);
  }

  .renewed-spot-page .hero--with-media .spot-catch-copy {
    font-size: 14px;
    line-height: 1.6;
  }

  .renewed-spot-page .hero--with-media .hero-thumbnails {
    grid-auto-columns: clamp(66px, 19.5vw, 114px);
  }

  .renewed-spot-page .hero--with-media .description {
    margin-top: 8px;
  }

  .renewed-spot-page #visit-info .facts {
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
  }

  .renewed-spot-page #visit-info .facts > div {
    display: block;
    padding: 0;
    border-bottom: 0;
  }

  .renewed-spot-page #visit-info .facts dt {
    padding: 10px 14px;
    color: var(--white);
    background: var(--green);
    font-size: 15px;
    font-weight: 700;
  }

  .renewed-spot-page #visit-info .facts dd {
    padding: 13px 14px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
  }

  .renewed-spot-page #visit-info .facts > div:last-child dd {
    border-bottom: 0;
  }

  .home-intro--with-photo .home-intro__carousel-arrow {
    top: 42%;
  }

  .renewed-spot-page .nearby-spot-list {
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .renewed-spot-page .nearby-spot-list .spot-card {
    grid-template-columns: minmax(0, 1fr) 116px;
    padding: 11px 0;
    border-width: 0 0 1px;
    border-radius: 0;
  }

  .renewed-spot-page .nearby-spot-list .spot-card img {
    grid-column: 2;
    grid-row: 1;
    min-height: 96px;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
  }

  .renewed-spot-page .nearby-spot-list .spot-card .card-copy {
    grid-column: 1;
    grid-row: 1;
    padding: 2px 12px 2px 0;
  }

  .renewed-spot-page .nearby-spot-list .spot-title-row {
    display: block;
  }

  .renewed-spot-page .nearby-spot-list .spot-title-row h3,
  .renewed-spot-page .nearby-spot-list .spot-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .renewed-spot-page .nearby-spot-list .distance {
    display: block;
    margin-top: 3px;
  }

  .renewed-spot-page .nearby-spot-list .mini-tags span:nth-child(n + 2) {
    display: none;
  }
}

@media (min-width: 900px) {
  .photo-first-home > .page,
  .renewed-spot-page .page {
    width: 100%;
    max-width: none;
  }

  .photo-first-home .site-header,
  .renewed-spot-page .site-header {
    padding-right: max(30px, calc((100vw - 1320px) / 2));
    padding-left: max(30px, calc((100vw - 1320px) / 2));
  }

  .renewed-spot-page .article-list .guide-article-card {
    min-height: 120px;
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .renewed-spot-page .article-list .guide-card-image {
    min-height: 120px;
  }

  .renewed-spot-page #visit-info .facts {
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
  }

  .renewed-spot-page #visit-info .facts > div {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 0;
    padding: 0;
  }

  .renewed-spot-page #visit-info .facts > div:last-child {
    border-bottom: 0;
  }

  .renewed-spot-page #visit-info .facts dt,
  .renewed-spot-page #visit-info .facts dd {
    padding: 15px 18px;
  }

  .renewed-spot-page #visit-info .facts dt {
    background: #f7f1ec;
    border-right: 1px solid var(--line);
  }

  .home-intro.home-intro--with-photo {
    padding-bottom: 52px;
  }

  .home-intro--with-photo .home-intro__lead-layout {
    display: block;
    min-height: clamp(610px, 78vh, 860px);
  }

  .home-intro--with-photo .home-intro__photo-copy {
    top: auto;
    right: max(100px, calc((100vw - 1240px) / 2));
    bottom: 112px;
    left: max(100px, calc((100vw - 1240px) / 2));
    width: auto;
    padding: 0;
  }

  .home-intro--with-photo .home-intro__photo-copy strong {
    font-size: clamp(32px, 3.4vw, 44px);
  }

  .home-intro--with-photo .home-intro__carousel-controls {
    right: auto;
    bottom: 48px;
    left: 50%;
  }

  .home-intro--with-photo .home-path-nav {
    width: min(calc(100% - 72px), 1180px);
    margin: -42px auto 0;
    padding: 9px;
    border-radius: 21px;
  }

  .home-intro--with-photo .home-path-nav a {
    min-height: 80px;
  }

  .photo-first-home .home-guide .guide-section {
    padding-right: max(48px, calc((100vw - 1180px) / 2));
    padding-left: max(48px, calc((100vw - 1180px) / 2));
    padding-block: 72px;
  }

  .photo-first-home .home-section-head {
    display: block;
    margin-bottom: 34px;
    text-align: center;
  }

  .photo-first-home .home-section-head h2 {
    font-size: clamp(30px, 3.2vw, 42px);
  }

  .photo-first-home .home-section-head p {
    max-width: 760px;
    margin-inline: auto;
  }

  .photo-first-home .guide-photo-discovery-grid--home {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  .photo-first-home .guide-photo-discovery-grid--home .guide-photo-discovery-card:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }

  .photo-first-home .guide-photo-discovery-grid--home .guide-photo-discovery-card:first-child figure {
    height: 100%;
    aspect-ratio: auto;
  }

  .photo-first-home .guide-photo-discovery-caption {
    padding: 56px 16px 15px;
  }

  .photo-first-home .guide-photo-discovery-caption strong {
    font-size: 15px;
  }

  .renewed-spot-page .breadcrumb {
    width: 100%;
    margin: 0;
    padding: 12px max(32px, calc((100vw - 1180px) / 2));
  }

  .renewed-spot-page .hero--with-media {
    --gallery-width: min(64vw, 960px);
    padding-bottom: 17px;
  }

  .renewed-spot-page .hero--with-media .hero-copy h1,
  .renewed-spot-page .hero--with-media .spot-yomi,
  .renewed-spot-page .hero--with-media .spot-catch-copy,
  .renewed-spot-page .hero--with-media .spot-classification {
    width: min(calc(100% - 64px), 1180px);
  }

  .renewed-spot-page .hero--with-media .hero-copy h1 {
    margin-top: 24px;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.38;
  }

  .renewed-spot-page .hero--with-media .spot-catch-copy {
    margin-top: 4px;
    margin-bottom: 16px;
    font-size: 18px;
  }

  .renewed-spot-page .hero--with-media .spot-classification {
    margin-top: 2px;
    margin-bottom: 24px;
  }

  .renewed-spot-page .hero--with-media .hero-slides {
    aspect-ratio: 3 / 2;
  }

  .renewed-spot-page .hero--with-media .hero-excerpt {
    font-size: 14px;
  }

  .renewed-spot-page .hero--with-media .hero-thumbnails {
    grid-auto-columns: 112px;
  }

  .renewed-spot-page .hero--with-media .description {
    margin-top: 32px;
    font-size: 16px;
  }

  .renewed-spot-page .hero--with-media .charm-lead {
    font-size: 16px;
  }

  .renewed-spot-page .hero--with-media .primary-action {
    width: min(420px, calc(100% - 64px));
    margin-top: 10px;
  }

  /* Six tracks let every possible nearby count (up to five) close its row. */
  .renewed-spot-page .nearby-spot-list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .renewed-spot-page .nearby-spot-list > .spot-card {
    grid-column: span 2;
  }

  .renewed-spot-page .nearby-spot-list:has(> .spot-card:nth-child(5):last-child) > .spot-card:nth-child(n + 4),
  .renewed-spot-page .nearby-spot-list:has(> .spot-card:nth-child(4):last-child) > .spot-card,
  .renewed-spot-page .nearby-spot-list:has(> .spot-card:nth-child(2):last-child) > .spot-card {
    grid-column: span 3;
  }

  .renewed-spot-page .nearby-spot-list > .spot-card:only-child {
    grid-column: 1 / -1;
  }

  .renewed-spot-page .spot-related-articles:has(> .article-card:nth-child(2):last-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .renewed-spot-page .gallery-grid:has(> img:only-child) {
    grid-template-columns: minmax(0, 1fr);
  }

  .renewed-spot-page .gallery-grid:has(> img:nth-child(2):last-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .renewed-spot-page .section-band,
  .renewed-spot-page .gallery-band {
    padding-right: max(48px, calc((100vw - 1180px) / 2));
    padding-left: max(48px, calc((100vw - 1180px) / 2));
  }
}

@media (prefers-reduced-motion: reduce) {
  .renewed-spot-page .hero--with-media .hero-slide {
    transition: none;
  }
}

/* guide.css */
.guide-main {
  min-height: 60vh;
  background: var(--paper);
}

.guide-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 12px 14px;
  color: var(--muted);
  background: var(--surface);
  font-size: 12px;
}

.guide-breadcrumb a {
  color: var(--green);
  font-weight: 700;
}

.guide-hero {
  padding: 28px 14px 24px;
  background: var(--warm);
}

.guide-hero h1,
.guide-page-head h1 {
  margin-bottom: 14px;
  font-size: clamp(26px, 7vw, 30px);
  letter-spacing: .02em;
}

.guide-hero p:last-child,
.guide-page-head p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.guide-section {
  padding: 26px 14px;
}

.guide-section--first {
  padding-top: 20px;
}

.guide-section--white {
  background: var(--surface);
}

.guide-section--soft {
  background: var(--surface-soft);
}

.guide-section--warm {
  background: var(--warm);
}

.guide-section-head {
  margin-bottom: 16px;
}

.guide-section-head h1,
.guide-section-head h2 {
  margin-bottom: 8px;
  font-size: 22px;
}

.guide-section-head p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.guide-pagination-summary {
  margin: 0;
}

.guide-pagination-summary h2 {
  margin: 0;
}

.guide-pagination-summary h2 strong {
  color: var(--orange);
  white-space: nowrap;
}

.guide-pagination-summary p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.guide-pagination-anchor {
  scroll-margin-top: 78px;
}

.guide-results-section {
  padding: 20px 14px 24px;
}

.guide-results-section > .guide-section-head {
  margin-bottom: 16px;
}

.guide-results-section > .guide-result-view-switch {
  margin-bottom: 12px;
}

.guide-search-pagination--top .pagy {
  margin: 14px 0 22px;
  padding: 10px 8px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.guide-search-pagination--bottom .pagy {
  margin-top: 26px;
}

.guide-section--city-spots {
  padding-top: 22px;
}

.spot-guide-map-section {
  padding-top: 20px;
  padding-bottom: 20px;
  background: var(--surface);
}

.spot-guide-map-head {
  margin-bottom: 12px;
}

.spot-guide-map-head h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 21px;
}

.spot-guide-map-head .guide-icon {
  width: 22px;
  height: 22px;
  color: var(--orange);
  stroke-width: 2;
}

.spot-guide-map-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(132px, .9fr);
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: #fffaf2;
  border: 1px solid #ead8c8;
  border-radius: 18px;
}

.spot-guide-map-card__visual {
  min-width: 0;
  text-align: center;
}

.spot-guide-map-card__visual .mie-area-map {
  max-width: 180px;
}

.spot-guide-map-choices {
  display: grid;
  gap: 6px;
}

.spot-guide-map-choice {
  --area-color: var(--orange);
  display: grid;
  grid-template-columns: 9px minmax(0, 1fr) 15px;
  min-height: 49px;
  align-items: center;
  gap: 7px;
  padding: 6px 7px 6px 9px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid #eadfd5;
  border-radius: 11px;
}

.spot-guide-map-choice--hokuse { --area-color: #d86943; }
.spot-guide-map-choice--chuse { --area-color: #7c70a2; }
.spot-guide-map-choice--nansei { --area-color: #3f7fa5; }
.spot-guide-map-choice--iga { --area-color: #d7a72e; }
.spot-guide-map-choice--higashikishu { --area-color: #468474; }

.spot-guide-map-choice__marker {
  width: 9px;
  height: 9px;
  background: var(--area-color);
  border-radius: 50%;
}

.spot-guide-map-choice > span:not(.spot-guide-map-choice__marker) {
  display: grid;
  min-width: 0;
}

.spot-guide-map-choice strong {
  font-size: 13px;
  line-height: 1.3;
}

.spot-guide-map-choice small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.spot-guide-map-choice > .guide-icon {
  width: 15px;
  height: 15px;
  color: var(--area-color);
  stroke-width: 2.4;
}

.spot-guide-area-section {
  --spot-area-accent: var(--orange);
  background: var(--warm);
  border-top: 4px solid var(--spot-area-accent);
}

.spot-guide-area-section--hokuse { --spot-area-accent: #d86943; background: #fbede7; }
.spot-guide-area-section--chuse { --spot-area-accent: #7c70a2; background: #f0eef7; }
.spot-guide-area-section--nansei { --spot-area-accent: #3f7fa5; background: #e8f2f7; }
.spot-guide-area-section--iga { --spot-area-accent: #d7a72e; background: #fbf4dd; }
.spot-guide-area-section--higashikishu { --spot-area-accent: #468474; background: #e8f3f0; }

.spot-guide-area-section .guide-section-head {
  margin-bottom: 14px;
}

.spot-guide-area-section .guide-section-head h2 {
  margin: 0;
  color: var(--spot-area-accent);
}

.municipality-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.municipality-guide-card {
  display: block;
  overflow: hidden;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.municipality-guide-card img,
.municipality-guide-card .guide-image-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.municipality-guide-card-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 10px;
}

.municipality-guide-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}

.municipality-guide-card-copy span {
  display: inline-flex;
  flex: 0 0 auto;
  padding: 4px 7px;
  color: var(--orange);
  background: #f4e1d5;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.guide-feature-card {
  display: block;
  overflow: hidden;
  color: var(--white);
  background: var(--orange);
  border-radius: var(--radius);
}

.guide-feature-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.guide-feature-copy {
  padding: 18px;
}

.guide-feature-copy .article-type {
  color: var(--orange);
  background: var(--surface);
}

.guide-feature-copy time {
  margin-left: 8px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
}

.guide-feature-copy h2 {
  margin: 8px 0;
  color: var(--white);
  font-size: 23px;
}

.guide-feature-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
}

.guide-image-placeholder {
  display: grid;
  aspect-ratio: 16 / 9;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--orange));
}

.guide-image-placeholder span {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
  font-size: 26px;
  font-weight: 700;
}

.guide-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--surface-soft);
}

.guide-card-image > img,
.guide-card-image > .guide-image-placeholder {
  width: 100%;
  height: 100%;
}

.guide-card-image > img {
  object-fit: cover;
}

.guide-photo-discovery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px;
}

.guide-photo-discovery-grid--home {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guide-photo-discovery-card {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  background: var(--ink);
}

.guide-photo-discovery-card figure {
  position: relative;
  margin: 0;
  aspect-ratio: 1;
}

.guide-photo-discovery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .24s ease;
}

.guide-photo-discovery-card:hover img,
.guide-photo-discovery-card:focus-visible img {
  transform: scale(1.025);
}

.guide-photo-discovery-card:focus-visible {
  outline: 3px solid var(--brand-orange);
  outline-offset: 1px;
}

.article-img,
.guide-article-hero {
  position: relative;
}

.article-pv-badge {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  padding: 4px 9px;
  color: var(--white);
  background: rgba(32, 29, 25, .82);
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .16);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .02em;
  backdrop-filter: blur(4px);
}

.article-location-badge {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 5px 10px;
  color: var(--white);
  background: rgba(30, 91, 61, .88);
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(23, 37, 31, .16);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.guide-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.guide-card-labels {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
}

.guide-card-meta time {
  color: var(--muted);
  font-size: 12px;
}

.guide-article-card .card-copy {
  display: flex;
  min-width: 0;
  align-items: center;
  margin: 0;
  padding: 12px 13px;
}

.article-list .guide-article-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  min-height: 112px;
  align-items: stretch;
}

.article-list .guide-article-card .guide-card-image {
  width: 100%;
  height: 100%;
  min-height: 112px;
  aspect-ratio: 1;
}

.article-list .guide-article-card .guide-card-image > img,
.article-list .guide-article-card .guide-card-image > .guide-image-placeholder {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.article-list .guide-article-card h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.article-pv-inline {
  margin-left: auto;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.article-area {
  padding: 3px 7px;
  color: var(--green);
  background: var(--green-light);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.guide-more {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.article-featured-spots {
  display: grid;
  gap: 12px;
}

.guide-spot-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.guide-spot-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.guide-spot-card > .guide-image-placeholder {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
}

.guide-spot-card .card-copy {
  min-width: 0;
  padding: 12px 13px;
}

.guide-spot-card h3 {
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 1.45;
}

.guide-spot-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.guide-article-inline-spot {
  margin: 16px 0;
}

.guide-article-inline-spot .guide-spot-card {
  grid-template-columns: 108px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  padding: 7px;
  color: var(--ink);
  font-weight: inherit;
  text-decoration: none;
}

.guide-article-inline-spot .guide-spot-card > img,
.guide-article-inline-spot .guide-spot-card > .guide-image-placeholder {
  width: 100%;
  height: auto;
  margin: 0;
  aspect-ratio: 1;
  border-radius: 13px;
  object-fit: cover;
}

.guide-article-inline-spot .guide-spot-card .card-copy {
  padding: 1px 4px;
}

.guide-article-inline-spot .guide-spot-card h3 {
  margin: 0 0 6px;
  padding: 0;
  border: 0;
  font-size: 19px;
  line-height: 1.45;
  text-decoration: none;
}

.guide-article-inline-spot .guide-spot-card p {
  margin: 0;
  padding: 0;
  line-height: 1.65;
  text-decoration: none;
}

.guide-article-inline-spot .guide-spot-tags {
  margin-bottom: 7px;
  line-height: 1.3;
}

.guide-article-inline-spot .guide-spot-tag {
  line-height: 1.3;
}

.guide-article-inline-spot + .guide-article-rich-block {
  margin-top: 24px;
}

.guide-spot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 6px;
}

.guide-spot-tag {
  display: inline-flex;
  padding: 4px 8px;
  color: var(--orange);
  background: #f4e1d5;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.guide-tag-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.guide-tag-card {
  position: relative;
  display: flex;
  min-height: 118px;
  align-items: flex-end;
  overflow: hidden;
  padding: 12px;
  color: var(--white);
  background-color: var(--green);
  background-position: center;
  background-size: cover;
  border-radius: 15px;
}

.guide-tag-card::before {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 32, 24, .05) 10%, rgba(16, 32, 24, .86) 100%);
}

.guide-tag-card--plain {
  background: linear-gradient(135deg, var(--orange), var(--green));
}

.guide-tag-card-body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 5px;
}

.guide-tag-card-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.guide-tag-card-count {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  color: rgba(255, 255, 255, .86);
  font-size: 11px;
  font-weight: 700;
}

.guide-tag-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.guide-tag-links a {
  padding: 8px 12px;
  color: var(--green);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.guide-page-head {
  padding: 28px 14px 24px;
  background: var(--warm);
}

.guide-page-head .guide-intent-note {
  margin-top: 10px;
  font-size: 13px;
}

.guide-intent-note a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.guide-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.guide-category-tabs a {
  padding: 8px 12px;
  color: var(--green);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.guide-category-tabs a.is-active {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.guide-area-tabs {
  margin-top: 9px;
}

.area-guide-page {
  --area-accent: var(--orange);
  --area-soft: var(--warm);
}

.area-guide-page--hokuse { --area-accent: #d86943; --area-soft: #fbede7; }
.area-guide-page--chuse { --area-accent: #7c70a2; --area-soft: #f0eef7; }
.area-guide-page--nansei { --area-accent: #3f7fa5; --area-soft: #e8f2f7; }
.area-guide-page--iga { --area-accent: #d7a72e; --area-soft: #fbf4dd; }
.area-guide-page--higashikishu { --area-accent: #468474; --area-soft: #e8f3f0; }

.area-guide-page .area-guide-head {
  background: var(--area-soft);
  border-bottom: 4px solid var(--area-accent);
}

.area-guide-head__label {
  margin: 0 0 6px !important;
  color: var(--area-accent) !important;
  font-size: 12px !important;
  font-weight: 700;
}

.area-guide-city-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.area-guide-city-chips a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 38px;
  padding: 7px 11px;
  color: var(--ink);
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(23, 37, 31, .13);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.area-guide-city-chips small {
  color: var(--area-accent);
  font-size: 11px;
  font-weight: 700;
}

.area-guide-city-chips a:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--area-accent) 35%, transparent);
  outline-offset: 2px;
}

.area-index-list {
  display: grid;
  gap: 11px;
}

.area-index-card {
  --area-accent: var(--orange);
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  overflow: hidden;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: 0 4px 14px rgba(23, 37, 31, .05);
}

.area-index-card--hokuse { --area-accent: #d86943; }
.area-index-card--chuse { --area-accent: #7c70a2; }
.area-index-card--nansei { --area-accent: #3f7fa5; }
.area-index-card--iga { --area-accent: #d7a72e; }
.area-index-card--higashikishu { --area-accent: #468474; }

.area-index-card__image,
.area-index-card__image img,
.area-index-card__image .guide-image-placeholder {
  width: 100%;
  height: 100%;
}

.area-index-card__image img {
  object-fit: cover;
}

.area-index-card__copy {
  min-width: 0;
  padding: 12px;
  border-left: 4px solid var(--area-accent);
}

.area-index-card__copy h2 {
  margin: 0 0 4px;
  font-size: 19px;
}

.area-index-card__copy p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.area-index-card__copy > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  color: var(--area-accent);
  font-size: 11px;
  font-weight: 700;
}

.area-index-card__copy .guide-icon {
  width: 17px;
  height: 17px;
  stroke-width: 2.3;
}

.guide-article-header {
  padding: 22px 14px 20px;
  background: var(--warm);
}

.guide-article-header h1 {
  margin: 0 0 12px;
  font-size: clamp(22px, 6.1vw, 28px);
  line-height: 1.55;
}

.guide-article-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 7px 10px;
  color: var(--muted);
  font-size: 12px;
}

.guide-article-stats {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 9px;
}

.guide-article-stats time {
  color: var(--muted);
}

.guide-article-stats .article-pv-inline {
  margin-left: 0;
}

.guide-article-author-label {
  white-space: nowrap;
}

.guide-article-author {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.guide-article-author img {
  width: 28px;
  height: 28px;
  border: 2px solid var(--surface);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 1px 4px rgba(23, 37, 31, .16);
}

.guide-article-hero {
  background: #201d19;
}

.guide-article-hero img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.guide-lead {
  margin: 0;
  padding: 20px 14px;
  color: var(--ink);
  background: var(--surface-soft);
  font-size: 16px;
  font-weight: 600;
}

.guide-toc {
  padding: 20px 14px;
  background: var(--warm);
}

.guide-toc h2 {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
  font-size: 21px;
}

.guide-toc .guide-icon {
  width: 1.05em;
  height: 1.05em;
  color: var(--orange);
}

.guide-toc ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-toc a {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 5px;
  color: var(--ink);
  font-size: 14px;
}

.guide-toc span:first-child {
  color: var(--green);
  font-weight: 700;
}

.guide-article-body {
  padding: 20px 14px 36px;
  background: var(--surface);
  color: var(--ink);
  font-size: 16px;
  line-height: 2;
  overflow-wrap: anywhere;
}

.guide-article-body h2 {
  margin: 30px 0 18px;
  padding: 10px 12px;
  background: linear-gradient(90deg, var(--green-light), rgba(247, 223, 209, .18));
  border-left: 5px solid var(--green);
  border-radius: 0 12px 12px 0;
  font-size: 22px;
  line-height: 1.55;
}

.guide-article-body h2:first-child {
  margin-top: 0;
}

.guide-toc + .guide-article-body h2:first-of-type {
  margin-top: 0 !important;
}

.guide-article-body h3 {
  margin: 26px 0 14px;
  padding-bottom: 8px;
  color: var(--orange);
  border-bottom: 2px solid #efd0bf;
  font-size: 19px;
  line-height: 1.6;
}

.guide-article-body h4 {
  margin: 28px 0 12px;
  font-size: 17px;
  line-height: 1.7;
}

.guide-article-body p,
.guide-article-body figure,
.guide-article-body blockquote {
  margin: 0 0 20px;
}

.guide-article-body p {
  line-height: 1.9;
}

.guide-article-body ul,
.guide-article-body ol {
  margin: 18px 0 26px;
  padding: 15px 16px 15px 2.4em;
  background: var(--warm);
  border: 1px solid #eedfd4;
  border-radius: 14px;
}

.guide-article-body ul {
  list-style: disc;
}

.guide-article-body ol {
  list-style: decimal;
}

.guide-article-body li {
  padding-left: 2px;
  line-height: 1.85;
}

.guide-article-body li + li {
  margin-top: 7px;
}

.guide-article-body li::marker {
  color: var(--green);
  font-weight: 700;
}

.guide-article-body img {
  width: 100%;
  height: auto;
  margin: 24px 0;
  border-radius: var(--radius);
}

.guide-article-body img + img {
  margin-top: -12px;
}

.guide-article-body h2 + img,
.guide-article-body h3 + img,
.guide-article-body h4 + img {
  margin-top: 18px;
}

.guide-article-body img + p,
.guide-article-body figure + p {
  margin-top: 0;
}

.guide-article-body figure,
.guide-article-body .attachment {
  margin: 24px 0;
}

.guide-article-body figure img,
.guide-article-body .attachment img,
.guide-article-body p > img:only-child {
  margin: 0;
}

.guide-article-body figcaption,
.guide-article-body .attachment__caption,
.guide-article-body .guide-image-caption {
  margin: 9px 0 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

.guide-article-body img + .guide-image-caption {
  margin-top: -18px;
}

.guide-article-body blockquote {
  padding: 17px 18px;
  color: var(--muted);
  background: var(--surface-soft);
  border-left: 4px solid var(--green);
  border-radius: 0 14px 14px 0;
}

.guide-article-body blockquote > :last-child {
  margin-bottom: 0;
}

.guide-article-body hr {
  margin: 28px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.guide-article-body table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  margin: 24px 0;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.65;
}

.guide-article-body th,
.guide-article-body td {
  padding: 10px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.guide-article-body th {
  background: var(--green-light);
}

.guide-article-body .table-scroll {
  overflow-x: auto;
  margin: 24px -14px;
  padding: 0 14px;
  -webkit-overflow-scrolling: touch;
}

.guide-article-body .table-scroll table {
  min-width: 680px;
  margin: 0;
}

.guide-article-body iframe,
.guide-article-body video {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 28px 0;
  border: 0;
  border-radius: var(--radius);
}

.guide-article-body .yellow_maker {
  background: linear-gradient(transparent 60%, rgba(255, 150, 76, .38) 60%);
}

.guide-article-body a,
.guide-static a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.guide-article-body .parking-lot-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 30px;
}

.guide-article-body .parking-lot-card {
  padding: 17px;
  background: #fff;
  border: 1px solid #ead8cb;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(45, 68, 62, .045);
}

.guide-article-body .parking-lot-card h3 {
  margin: 0 0 12px;
  padding: 0 0 8px;
  font-size: 18px;
}

.guide-article-body .parking-lot-card h3 a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.guide-article-body .parking-lot-card h3 a::after {
  content: "地図を見る ↗";
  font-size: 11px;
  font-weight: 700;
}

.guide-article-body .parking-lot-card ul {
  margin: 0;
  padding: 12px 14px 12px 2.2em;
  background: var(--surface-soft);
  border-color: var(--line);
  border-radius: 10px;
  font-size: 14px;
}

@media (min-width: 760px) {
  .guide-article-body .parking-lot-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.guide-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.guide-tag-list span {
  padding: 5px 9px;
  color: var(--green);
  background: var(--green-light);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.guide-static {
  padding: 26px 14px 32px;
  background: var(--surface);
}

.guide-static section + section {
  margin-top: 26px;
}

.guide-static h2 {
  margin-bottom: 10px;
  font-size: 22px;
}

.guide-static p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 15px;
}

.guide-form {
  display: grid;
  gap: 18px;
}

.guide-field {
  display: grid;
  gap: 6px;
}

.guide-label {
  font-size: 14px;
  font-weight: 700;
}

.guide-required {
  color: var(--green);
  font-size: 12px;
}

.guide-input,
.guide-select,
.guide-textarea {
  width: 100%;
  padding: 12px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.guide-input,
.guide-select,
.guide-textarea {
  font-size: 16px;
}

.editor-profile {
  background: var(--surface);
}

.editor-cover {
  overflow: hidden;
  aspect-ratio: 16 / 7;
  background: var(--warm);
}

.editor-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editor-profile-main {
  position: relative;
  padding: 62px 14px 28px;
  text-align: center;
}

.editor-avatar {
  position: absolute;
  top: -52px;
  left: 50%;
  width: 104px;
  height: 104px;
  border: 4px solid var(--surface);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(23, 37, 31, .2);
  transform: translateX(-50%);
}

.editor-role {
  margin-bottom: 2px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
}

.editor-profile-main h1 {
  margin-bottom: 12px;
  font-size: 28px;
}

.editor-bio {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.editor-socials {
  display: grid;
  gap: 9px;
  margin-top: 20px;
}

.editor-socials a {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--green);
  background: var(--green-light);
  border: 1px solid #efd0bf;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.editor-socials a .guide-icon {
  width: 18px;
  height: 18px;
  margin-right: 7px;
  stroke-width: 2;
}

.editor-profile-detail {
  padding: 28px 14px 30px;
  background: var(--warm);
}

.editor-profile-detail h2 {
  margin-bottom: 14px;
  font-size: 22px;
}

.editor-profile-detail p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 15px;
}

.editor-profile-detail p:last-child {
  margin-bottom: 0;
}

.editor-articles {
  padding-top: 30px;
}

.editor-list {
  display: grid;
  gap: 12px;
}

.editor-list-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px;
  color: inherit;
  background: var(--warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.editor-list-card > img {
  width: 72px;
  height: 72px;
  border: 2px solid var(--surface);
  border-radius: 50%;
  object-fit: cover;
}

.editor-list-card p,
.editor-list-card h2,
.editor-list-card span {
  margin: 0;
}

.editor-list-card p,
.editor-list-card span {
  color: var(--muted);
  font-size: 12px;
}

.editor-list-card h2 {
  margin: 2px 0 4px;
  font-size: 20px;
}

.editor-list-arrow {
  color: var(--orange);
  font-size: 28px !important;
  line-height: 1;
}

.guide-textarea {
  min-height: 180px;
  resize: vertical;
}

.guide-submit {
  min-height: 52px;
  color: var(--white);
  background: var(--green);
  border: 0;
  border-radius: 999px;
  font-weight: 700;
}

.guide-alert,
.flash {
  margin: 12px 14px;
  padding: 12px;
  background: var(--warm);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 13px;
}

.pagy {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin-top: 22px;
}

.pagy a {
  display: grid;
  min-width: 36px;
  height: 36px;
  place-items: center;
  padding: 0 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
}

.pagy a.current {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

@media (max-width: 350px) {
  .guide-hero h1,
  .guide-page-head h1,
  .guide-article-header h1 {
    font-size: 26px;
  }
}

/* home.css */
.home-guide {
  overflow: hidden;
}

.home-intro {
  padding: 18px 14px 20px;
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 150, 76, .2), transparent 36%),
    linear-gradient(150deg, #fffaf3 0%, var(--warm) 100%);
  border-bottom: 1px solid var(--line);
}

.home-intro__lead-layout {
  display: block;
}

.home-intro h1 {
  margin: 0;
  font-size: clamp(26px, 7.5vw, 34px);
  line-height: 1.45;
  letter-spacing: .01em;
}

.home-intro h1 mark {
  padding: 0 .06em;
  color: inherit;
  background: linear-gradient(transparent 57%, rgba(255, 220, 66, .82) 57%, rgba(255, 220, 66, .82) 91%, transparent 91%);
  font-weight: 700;
}

.home-intro__lead {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.home-intro__lead strong {
  color: var(--ink);
  font-weight: 700;
}

.home-intro__stats {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1.05fr) minmax(0, .7fr);
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-top: 14px;
}

.home-intro__stats .home-intro__stat--access {
  color: var(--ink);
  background: #fff7c8;
  border-color: rgba(210, 157, 0, .28);
}

.home-intro__stats .home-intro__stat--access strong {
  color: #9d5700;
}

.home-intro__stats span {
  display: inline-flex;
  justify-content: center;
  align-items: baseline;
  min-width: 0;
  gap: 3px;
  padding: 6px 5px;
  color: var(--muted);
  background: rgba(255, 253, 248, .82);
  border: 1px solid rgba(182, 83, 43, .14);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.home-intro__stats strong {
  color: var(--orange);
  font-size: 16px;
  line-height: 1;
}

.home-intro__carousel {
  display: flex;
  flex-direction: column;
  margin-top: 18px;
}

.home-intro__carousel-viewport {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(23, 37, 31, .16);
  touch-action: pan-y;
  order: 1;
}

.home-intro__carousel-track {
  position: relative;
  height: 100%;
}

.home-intro__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .42s ease;
  will-change: opacity;
}

.home-intro__slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.home-intro__slide-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: var(--white);
}

.home-intro__slide-link::after {
  content: "";
  position: absolute;
  inset: 36% 0 0;
  background: linear-gradient(transparent, rgba(10, 27, 21, .8));
}

.home-intro__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.home-intro__slide-link:focus-visible {
  outline: 4px solid #ffd348;
  outline-offset: -4px;
}

.home-intro__slide-link:hover img {
  transform: scale(1.025);
}

.home-intro__photo-copy {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 15px;
  left: 16px;
  display: grid;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .38);
}

.home-intro__photo-copy small {
  margin-bottom: 2px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
}

.home-intro__photo-copy strong {
  font-size: 19px;
  line-height: 1.45;
}

.home-intro__photo-copy span {
  margin-top: 2px;
  font-size: 11px;
  font-weight: 600;
}

.home-intro__carousel-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: inline-grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  color: var(--white);
  background: rgba(12, 31, 24, .72);
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 50%;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .22);
  transform: translateY(-50%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  cursor: pointer;
}

.home-intro__carousel-arrow--prev {
  left: 9px;
}

.home-intro__carousel-arrow--next {
  right: 9px;
}

.home-intro__carousel-arrow .guide-icon {
  width: 22px;
  height: 22px;
}

.home-intro__carousel-arrow:focus-visible,
.home-intro__carousel-dot:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

.home-intro__carousel-controls {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 40px;
  margin-top: 6px;
  order: 2;
}

.home-intro__carousel-controls[hidden] {
  display: flex;
  visibility: hidden;
}

.home-intro__carousel-arrow[hidden] {
  display: none;
}

.home-intro__carousel-dots {
  display: flex;
  align-items: center;
  gap: 1px;
}

.home-intro__carousel-dot {
  position: relative;
  width: 30px;
  height: 30px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.home-intro__carousel-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  background: rgba(91, 108, 101, .45);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: width .2s ease, background-color .2s ease;
}

.home-intro__carousel-dot.is-active::before {
  width: 20px;
  background: var(--orange);
}

.home-intro__carousel-status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
}

.home-path-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 17px;
}

.home-path-nav a {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 66px;
  padding: 9px 10px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(23, 37, 31, .05);
}

.home-path-nav .guide-icon {
  width: 25px;
  height: 25px;
  padding: 4px;
  color: var(--orange);
  background: var(--green-light);
  border-radius: 9px;
}

.home-path-nav span,
.home-path-nav strong,
.home-path-nav small {
  display: block;
  min-width: 0;
}

.home-path-nav strong {
  font-size: 13px;
  line-height: 1.4;
}

.home-path-nav small {
  margin-top: 2px;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-guide .guide-section {
  padding-block: 26px;
}

.home-guide .guide-section--first {
  padding-top: 22px;
}

.home-section-head {
  display: block;
  margin-bottom: 14px;
  text-align: center;
}

/* Section headings use Japanese copy only. */
.home-section-head::before {
  display: none;
  content: none;
}

.home-section-head h2 {
  margin: 0 0 5px;
  font-size: 22px;
  line-height: 1.45;
}

.home-section-head p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.75;
}

.home-featured-tags .guide-tag-card:first-child {
  grid-column: 1 / -1;
  min-height: 180px;
}

.home-featured-tags .guide-tag-card:first-child .guide-tag-card-name {
  font-size: 22px;
}

.home-featured-tags .guide-tag-card {
  border: 1px solid rgba(255, 255, 255, .38);
  box-shadow: 0 7px 18px rgba(23, 37, 31, .1);
}

.home-featured-tags .guide-tag-card:nth-child(n + 10),
.guide-photo-discovery-grid--home .guide-photo-discovery-card:nth-child(n + 11) {
  display: none;
}

.home-more {
  position: relative;
  justify-content: center;
  padding: 0 48px;
  text-align: center;
  background: #8f3d20;
  box-shadow: 0 6px 16px rgba(111, 47, 25, .14);
}

.home-more > span {
  min-width: 0;
  text-align: center;
}

.home-more .guide-icon {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 19px;
  height: 19px;
  stroke-width: 2.3;
  transform: translateY(-50%);
}

.home-map-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(132px, .92fr);
  gap: 10px;
  align-items: center;
  padding: 12px;
  background: #fffaf2;
  border: 1px solid #ead8c8;
  border-radius: 18px;
  box-shadow: 0 7px 20px rgba(75, 49, 32, .07);
}

.home-map-card__visual {
  min-width: 0;
  text-align: center;
}

.home-map-card__visual .mie-area-map {
  max-width: 220px;
}

.mie-area-map {
  display: block;
  width: 100%;
  max-width: 190px;
  height: auto;
  margin: 0 auto;
  overflow: visible;
}

.mie-area-map__link path {
  stroke: #fffaf2;
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
  transition: filter .18s ease, opacity .18s ease, transform .18s ease;
  transform-box: fill-box;
  transform-origin: center;
}

.mie-area-map__link--hokuse path { fill: #d86943; }
.mie-area-map__link--chuse path { fill: #7c70a2; }
.mie-area-map__link--nansei path { fill: #3f7fa5; }
.mie-area-map__link--iga path { fill: #d7a72e; }
.mie-area-map__link--higashikishu path { fill: #468474; }

.mie-area-map__link:hover path,
.mie-area-map__link:focus path {
  filter: brightness(.92) saturate(1.12);
  transform: scale(1.015);
}

.mie-area-map__link:focus {
  outline: none;
}

.mie-area-map__link:focus-visible path {
  stroke: var(--ink);
  stroke-width: 2.4;
}

.home-map-choices {
  display: grid;
  gap: 6px;
}

.home-map-choice {
  --area-color: var(--orange);
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) 16px;
  min-height: 70px;
  align-items: center;
  gap: 7px;
  overflow: hidden;
  padding: 7px 10px 7px 11px;
  color: var(--white);
  background: #32453c;
  border: 1px solid color-mix(in srgb, var(--area-color) 38%, #fff);
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(23, 37, 31, .13);
  transition: transform .18s ease, box-shadow .18s ease;
}

.home-map-choice::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(12, 27, 21, .82) 0%, rgba(12, 27, 21, .64) 58%, rgba(12, 27, 21, .28) 100%),
    linear-gradient(0deg, color-mix(in srgb, var(--area-color) 24%, transparent), transparent 70%);
}

.home-map-choice:hover,
.home-map-choice:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(23, 37, 31, .2);
}

.home-map-choice:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--area-color) 72%, #fff);
  outline-offset: 2px;
}

.home-map-choice__image {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.home-map-choice__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.home-map-choice:hover .home-map-choice__image img,
.home-map-choice:focus-visible .home-map-choice__image img {
  transform: scale(1.035);
}

.home-map-choice--hokuse { --area-color: #d86943; }
.home-map-choice--chuse { --area-color: #7c70a2; }
.home-map-choice--nansei { --area-color: #3f7fa5; }
.home-map-choice--iga { --area-color: #d7a72e; }
.home-map-choice--higashikishu { --area-color: #468474; }

.home-map-choice__marker {
  width: 10px;
  height: 10px;
  background: var(--area-color);
  border: 2px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
}

.home-map-choice__copy {
  display: grid;
  min-width: 0;
}

.home-map-choice__copy strong {
  color: var(--white);
  font-size: 15px;
  line-height: 1.35;
  text-shadow: 0 1px 5px rgba(0, 0, 0, .5);
}

.home-map-choice__tagline {
  margin-top: 2px;
  color: rgba(255, 255, 255, .92);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  text-shadow: 0 1px 5px rgba(0, 0, 0, .55);
}

.home-map-choice > .guide-icon {
  width: 16px;
  height: 16px;
  color: var(--white);
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .5));
  stroke-width: 2.3;
}

.home-map-choice--nansei .home-map-choice__image img { object-position: center 58%; }
.home-map-choice--chuse .home-map-choice__image img { object-position: center 48%; }
.home-map-choice--hokuse .home-map-choice__image img { object-position: center 48%; }
.home-map-choice--iga .home-map-choice__image img { object-position: center 46%; }
.home-map-choice--higashikishu .home-map-choice__image img { object-position: center 48%; }

.home-guide .spot-list,
.home-guide .article-list {
  gap: 10px;
}

.home-guide .guide-spot-card,
.home-guide .guide-article-card {
  box-shadow: 0 5px 16px rgba(23, 37, 31, .05);
}

.home-popular-article-list .guide-article-card,
.top-latest-articles .guide-article-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
}

.home-popular-article-list .guide-article-card .guide-card-image,
.top-latest-articles .guide-article-card .guide-card-image {
  height: 100%;
  min-height: 118px;
  aspect-ratio: 1;
}

.home-popular-article-list .guide-article-card .card-copy,
.top-latest-articles .guide-article-card .card-copy {
  display: flex;
  align-items: center;
  padding: 11px 12px;
}

.home-popular-article-list .guide-article-card h3,
.top-latest-articles .guide-article-card h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.home-popular-article-list .guide-article-card:not(:first-child) .card-copy > p,
.top-latest-articles .guide-article-card .card-copy > p {
  display: none;
}

.home-popular-article-list .guide-article-card:not(:first-child) .article-location-badge,
.top-latest-articles .guide-article-card .article-location-badge {
  top: 7px;
  left: 7px;
  padding: 3px 7px;
  font-size: 11px;
}

.home-photo-library {
  border-top: 1px solid var(--line);
}

.home-photo-library__head {
  display: block;
  text-align: center;
}

.home-photo-library h2 {
  margin: 0 0 7px;
  font-size: 20px;
}

.home-photo-library p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.home-photo-library__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.home-photo-library__grid li {
  min-width: 0;
}

.home-photo-library__card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  color: #fff;
  background: #d9dfdc;
  border-radius: 12px;
  box-shadow: 0 5px 14px rgba(20, 38, 30, .09);
}

.home-photo-library__card::after {
  position: absolute;
  inset: 38% 0 0;
  background: linear-gradient(transparent, rgba(10, 24, 18, .8));
  content: "";
}

.home-photo-library__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.home-photo-library__card strong {
  position: absolute;
  z-index: 1;
  right: 10px;
  bottom: 9px;
  left: 10px;
  display: -webkit-box;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.45;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .45);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-photo-library__rank {
  position: absolute;
  z-index: 2;
  top: 7px;
  left: 7px;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: #fff;
  background: rgba(143, 61, 32, .92);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
}

.home-photo-library__card:hover img,
.home-photo-library__card:focus-visible img {
  transform: scale(1.04);
}

.home-photo-library__cta {
  gap: 12px;
}

.home-photo-library__cta .guide-icon {
  width: 16px;
  height: 16px;
}

@media (max-width: 899px) {
  .home-more {
    position: relative;
    justify-content: center;
    min-height: 56px;
    padding: 10px 48px;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.45;
    text-align: center;
  }

  .home-more > span {
    text-align: center;
  }

  .home-more .guide-icon {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
  }
}

@media (min-width: 600px) and (max-width: 899px) {
  .home-intro__carousel-viewport {
    aspect-ratio: 2 / 1;
  }
}

@media (max-width: 430px) {
  .home-map-choice {
    min-height: 56px;
  }

  .home-map-choice__tagline {
    display: none;
  }
}

@media (max-width: 350px) {
  .home-intro__photo-copy small {
    display: none;
  }

  .home-intro__stats {
    gap: 5px;
  }

  .home-intro__stats span {
    padding-inline: 4px;
  }

  .home-path-nav a {
    grid-template-columns: 28px minmax(0, 1fr);
    padding-inline: 8px;
  }

  .home-path-nav .guide-icon {
    width: 23px;
    height: 23px;
  }

  .home-map-card {
    grid-template-columns: minmax(0, 1fr) 126px;
    padding: 10px;
  }

  .home-map-choice {
    grid-template-columns: 9px minmax(0, 1fr);
    min-height: 54px;
    padding-inline: 7px;
  }

  .home-map-choice > .guide-icon {
    display: none;
  }
}

/* Keep the photo mosaic closed at its lower-right edge for every item count. */
@media (max-width: 899px) {
  .photo-first-home .guide-photo-discovery-grid--home {
    grid-auto-flow: dense;
  }

  .photo-first-home .guide-photo-discovery-grid--home:has(> .guide-photo-discovery-card:last-child:nth-child(3n + 2)) > .guide-photo-discovery-card:last-child {
    grid-column: 1 / -1;
  }

  .photo-first-home .guide-photo-discovery-grid--home:has(> .guide-photo-discovery-card:last-child:nth-child(3n + 2)) > .guide-photo-discovery-card:last-child figure {
    aspect-ratio: 3 / 1;
  }

  .photo-first-home .guide-photo-discovery-grid--home:has(> .guide-photo-discovery-card:last-child:nth-child(3n)) > .guide-photo-discovery-card:last-child {
    grid-column: span 2;
  }

  .photo-first-home .guide-photo-discovery-grid--home:has(> .guide-photo-discovery-card:last-child:nth-child(3n)) > .guide-photo-discovery-card:last-child figure {
    aspect-ratio: 2 / 1;
  }
}

@media (min-width: 900px) {
  /* The four shortcut tiles remain available on mobile, but do not crowd the desktop hero. */
  .photo-first-home .home-path-nav {
    display: none;
  }

  /* The desktop shortcut row is hidden, so its dark overlap gutter is no longer needed. */
  .photo-first-home .home-intro.home-intro--with-photo {
    padding-bottom: 0;
  }

  .photo-first-home .home-guide .guide-section {
    padding-block: 36px;
  }

  .photo-first-home .home-section-head {
    display: block;
    margin-bottom: 18px;
    text-align: center;
  }

  .photo-first-home .home-section-head h2 {
    font-size: 26px;
  }

  .photo-first-home .home-section-head p {
    margin-inline: auto;
  }

  .photo-first-home .guide-photo-discovery-grid--home {
    grid-auto-flow: dense;
  }

  .photo-first-home .guide-photo-discovery-grid--home:has(> .guide-photo-discovery-card:last-child:nth-child(4n + 2)) > .guide-photo-discovery-card:last-child {
    grid-column: 1 / -1;
  }

  .photo-first-home .guide-photo-discovery-grid--home:has(> .guide-photo-discovery-card:last-child:nth-child(4n + 2)) > .guide-photo-discovery-card:last-child figure {
    height: auto;
    aspect-ratio: 4 / 1;
  }

  .photo-first-home .guide-photo-discovery-grid--home:has(> .guide-photo-discovery-card:last-child:nth-child(4n + 3)) > .guide-photo-discovery-card:nth-last-child(-n + 2) {
    grid-column: span 2;
  }

  .photo-first-home .guide-photo-discovery-grid--home:has(> .guide-photo-discovery-card:last-child:nth-child(4n + 3)) > .guide-photo-discovery-card:nth-last-child(-n + 2) figure,
  .photo-first-home .guide-photo-discovery-grid--home:has(> .guide-photo-discovery-card:last-child:nth-child(4n)) > .guide-photo-discovery-card:last-child figure {
    height: auto;
    aspect-ratio: 2 / 1;
  }

  .photo-first-home .guide-photo-discovery-grid--home:has(> .guide-photo-discovery-card:last-child:nth-child(4n)) > .guide-photo-discovery-card:last-child {
    grid-column: span 2;
  }

  .photo-first-home .guide-photo-discovery-grid--home:has(> .guide-photo-discovery-card:nth-child(2):last-child) > .guide-photo-discovery-card {
    grid-column: span 2;
    grid-row: auto;
  }

  .photo-first-home .guide-photo-discovery-grid--home:has(> .guide-photo-discovery-card:nth-child(2):last-child) > .guide-photo-discovery-card figure {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .photo-first-home .guide-photo-discovery-grid--home > .guide-photo-discovery-card:only-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .photo-first-home .guide-photo-discovery-grid--home > .guide-photo-discovery-card:only-child figure {
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

/* Fill incomplete top-page rows without changing the normal 10-photo grid. */
@media (max-width: 899px) {
  .photo-first-home .home-photo-library__grid:has(> li:last-child:nth-child(odd)) > li:last-child {
    grid-column: 1 / -1;
  }

  .photo-first-home .home-photo-library__grid:has(> li:last-child:nth-child(odd)) > li:last-child .home-photo-library__card {
    aspect-ratio: 2 / 1;
  }

  /* The lead tag already occupies both tracks, so even totals leave one card. */
  .photo-first-home .home-featured-tags:has(> .guide-tag-card:last-child:nth-child(even)) > .guide-tag-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) {
  /* Three cards remain thirds; one or two cards in the final row expand evenly. */
  .photo-first-home .home-popular-article-list,
  .photo-first-home .top-latest-articles .article-list {
    grid-auto-flow: dense;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .photo-first-home .home-popular-article-list > .guide-article-card,
  .photo-first-home .top-latest-articles .article-list > .guide-article-card {
    grid-column: span 2;
  }

  .photo-first-home .home-popular-article-list:has(> .guide-article-card:last-child:nth-child(3n + 1)) > .guide-article-card:last-child,
  .photo-first-home .top-latest-articles .article-list:has(> .guide-article-card:last-child:nth-child(3n + 1)) > .guide-article-card:last-child {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
    align-items: stretch;
  }

  .photo-first-home .home-popular-article-list:has(> .guide-article-card:last-child:nth-child(3n + 1)) > .guide-article-card:last-child .guide-card-image,
  .photo-first-home .top-latest-articles .article-list:has(> .guide-article-card:last-child:nth-child(3n + 1)) > .guide-article-card:last-child .guide-card-image {
    height: 100%;
    min-height: 150px;
    aspect-ratio: 3 / 2;
  }

  .photo-first-home .home-popular-article-list:has(> .guide-article-card:last-child:nth-child(3n + 1)) > .guide-article-card:last-child .card-copy,
  .photo-first-home .top-latest-articles .article-list:has(> .guide-article-card:last-child:nth-child(3n + 1)) > .guide-article-card:last-child .card-copy {
    display: grid;
    align-content: center;
  }

  .photo-first-home .home-popular-article-list:has(> .guide-article-card:last-child:nth-child(3n + 2)) > .guide-article-card:nth-last-child(-n + 2),
  .photo-first-home .top-latest-articles .article-list:has(> .guide-article-card:last-child:nth-child(3n + 2)) > .guide-article-card:nth-last-child(-n + 2) {
    grid-column: span 3;
  }

  /* The first tag is a double-width lead tile. Fill only the trailing remainder. */
  .photo-first-home .home-featured-tags:has(> .guide-tag-card:last-child:nth-child(4n)) > .guide-tag-card:last-child {
    grid-column: 1 / -1;
  }

  .photo-first-home .home-featured-tags:has(> .guide-tag-card:last-child:nth-child(4n + 5)) > .guide-tag-card:nth-last-child(-n + 2) {
    grid-column: span 2;
  }

  .photo-first-home .home-featured-tags:has(> .guide-tag-card:last-child:nth-child(4n + 2)) > .guide-tag-card:last-child {
    grid-column: span 2;
  }

  .photo-first-home .home-featured-tags > .guide-tag-card:only-child {
    grid-column: 1 / -1;
  }

  /* Five-column photo rows become a deliberate mosaic only for the remainder. */
  .photo-first-home .home-photo-library__grid {
    grid-auto-flow: dense;
  }

  .photo-first-home .home-photo-library__grid:has(> li:last-child:nth-child(5n + 1)) > li:last-child {
    grid-column: span 5;
  }

  .photo-first-home .home-photo-library__grid:has(> li:last-child:nth-child(5n + 1)) > li:last-child .home-photo-library__card {
    aspect-ratio: 5 / 1;
  }

  .photo-first-home .home-photo-library__grid:has(> li:last-child:nth-child(5n + 2)) > li:nth-last-child(2) {
    grid-column: span 2;
  }

  .photo-first-home .home-photo-library__grid:has(> li:last-child:nth-child(5n + 2)) > li:last-child {
    grid-column: span 3;
  }

  .photo-first-home .home-photo-library__grid:has(> li:last-child:nth-child(5n + 2)) > li:nth-last-child(2) .home-photo-library__card {
    aspect-ratio: 2 / 1;
  }

  .photo-first-home .home-photo-library__grid:has(> li:last-child:nth-child(5n + 2)) > li:last-child .home-photo-library__card {
    aspect-ratio: 3 / 1;
  }

  .photo-first-home .home-photo-library__grid:has(> li:last-child:nth-child(5n + 3)) > li:nth-last-child(3),
  .photo-first-home .home-photo-library__grid:has(> li:last-child:nth-child(5n + 3)) > li:last-child {
    grid-column: span 2;
  }

  .photo-first-home .home-photo-library__grid:has(> li:last-child:nth-child(5n + 3)) > li:nth-last-child(3) .home-photo-library__card,
  .photo-first-home .home-photo-library__grid:has(> li:last-child:nth-child(5n + 3)) > li:last-child .home-photo-library__card,
  .photo-first-home .home-photo-library__grid:has(> li:last-child:nth-child(5n + 4)) > li:last-child .home-photo-library__card {
    aspect-ratio: 2 / 1;
  }

  .photo-first-home .home-photo-library__grid:has(> li:last-child:nth-child(5n + 4)) > li:last-child {
    grid-column: span 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-intro__slide,
  .home-intro__slide img,
  .home-intro__carousel-dot::before {
    transition: none;
  }

  .home-intro__slide-link:hover img {
    transform: none;
  }
}

/* official_socials.css */
.official-socials {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 18px;
  background: linear-gradient(145deg, #fff8ef 0%, #fff0e8 52%, #edf6f4 100%);
  border-top: 1px solid var(--line);
}

.official-socials__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  background: #dce9e7;
}

.official-socials__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.official-socials__eyebrow {
  margin: 0 0 6px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
}

.official-socials__copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.45;
}

.official-socials__highlight {
  display: inline;
  margin: 14px 0 0;
  padding: 0 2px 2px;
  color: #6f3019;
  background: linear-gradient(transparent 56%, rgba(255, 150, 76, .28) 56%);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
}

.official-socials__copy > p:last-of-type {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.official-socials__profile-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.official-socials__profile-link .guide-icon {
  width: 16px;
  height: 16px;
}

.official-socials__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.official-socials__link {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 14px;
  min-width: 0;
  min-height: 62px;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: 0 5px 14px rgba(23, 37, 31, .05);
}

.official-socials__link-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  border-radius: 11px;
}

.official-socials__link--instagram .official-socials__link-icon {
  background: linear-gradient(135deg, #7d3bc0, #dd2a7b 55%, #f9a72b);
}

.official-socials__link--x .official-socials__link-icon {
  background: #111;
}

.official-socials__link-icon .guide-icon {
  width: 19px;
  height: 19px;
  stroke-width: 2;
}

.official-socials__link > span:nth-child(2) {
  display: grid;
  min-width: 0;
}

.official-socials__link strong {
  overflow: hidden;
  font-size: 12px;
  line-height: 1.35;
  text-overflow: ellipsis;
}

.official-socials__link small {
  overflow: hidden;
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.3;
  text-overflow: ellipsis;
}

.official-socials__link > .guide-icon {
  width: 14px;
  height: 14px;
  color: var(--muted);
}

@media (max-width: 359px) {
  .official-socials__links {
    grid-template-columns: 1fr;
  }
}

/* desktop.css */
/* Desktop layout for the public guide. Mobile remains the default. */
.desktop-header-nav {
  display: none;
}

@media (min-width: 900px) {
  html {
    scroll-padding-top: 82px;
  }

  body {
    background:
      radial-gradient(circle at 4% 8%, rgba(255, 150, 76, .08), transparent 28%),
      radial-gradient(circle at 96% 24%, rgba(143, 61, 32, .06), transparent 30%),
      #e7ebe7;
  }

  .page {
    width: min(calc(100% - 40px), 1024px);
    overflow: clip;
    box-shadow: 0 18px 54px rgba(16, 38, 28, .1);
  }

  .site-header {
    grid-template-columns: minmax(290px, auto) 1fr auto;
    min-height: 76px;
    padding: 12px 34px;
  }

  .brand-mark,
  .brand-mark img {
    width: 42px;
    height: 42px;
  }

  .brand-copy small {
    font-size: 12px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .desktop-header-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
  }

  .desktop-header-nav a {
    padding: 9px 12px;
    color: var(--ink);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    transition: color .18s ease, background-color .18s ease;
  }

  .desktop-header-nav a:hover,
  .desktop-header-nav a:focus-visible {
    color: var(--orange);
    background: var(--green-light);
  }

  .header-menu-toggle {
    min-height: 42px;
    padding-inline: 15px;
  }

  .header-menu-panel {
    width: 300px;
  }

  .breadcrumb,
  .guide-breadcrumb {
    padding: 12px 40px;
    font-size: 13px;
  }

  .guide-page-head,
  .guide-hero {
    padding: 32px 48px 28px;
  }

  .guide-page-head h1,
  .guide-hero h1 {
    max-width: 860px;
    font-size: 34px;
  }

  .guide-page-head > p,
  .guide-hero > p {
    max-width: 820px;
    font-size: 16px;
  }

  .guide-section,
  .section-band,
  .gallery-band {
    padding: 36px 48px;
  }

  .guide-results-section {
    padding: 28px 40px 32px;
  }

  .guide-section--first {
    padding-top: 32px;
  }

  .section-band--compact-top {
    padding-top: 28px;
  }

  .guide-section-head,
  .section-heading,
  .sources-head {
    margin-bottom: 20px;
  }

  .guide-section-head h1,
  .guide-section-head h2,
  .section-heading h2,
  .sources-head h2,
  .gallery-band h2 {
    font-size: 26px;
  }

  .guide-section-head p,
  .section-heading p,
  .sources-head p,
  .gallery-band p {
    max-width: 820px;
    font-size: 15px;
  }

  .guide-results-section > .guide-section-head {
    margin-bottom: 18px;
  }

  .guide-results-section > .guide-result-view-switch {
    margin-bottom: 12px;
  }

  .guide-results-section .guide-pagination-summary p {
    font-size: 13px;
  }

  .spot-list,
  .article-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .article-list--single {
    grid-template-columns: minmax(0, 860px);
  }

  .article-list--single .article-card {
    display: grid;
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
    align-items: stretch;
  }

  .article-list--single .article-card img {
    width: 100%;
    height: 100%;
    min-height: 150px;
    aspect-ratio: auto;
    object-fit: cover;
  }

  /* A single related article should use the full spot-page content width. */
  .spot-related-articles--single {
    grid-template-columns: minmax(0, 1fr);
  }

  .spot-related-articles--single .article-card {
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  }

  .spot-related-articles--single .article-card img {
    min-height: 150px;
  }

  .article-featured-spots:not(.article-featured-spots--single) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .article-featured-spots--single {
    width: min(100%, 860px);
    margin-right: auto;
  }

  .article-featured-spots--single .guide-spot-card {
    display: grid;
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
    align-items: stretch;
  }

  .article-featured-spots--single .guide-spot-card > img,
  .article-featured-spots--single .guide-spot-card > .guide-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 220px;
    aspect-ratio: auto;
    object-fit: cover;
  }

  /* Keep three-card rows closed for every result count. A six-track grid lets
   * a two-card final row become two equal halves without changing full rows. */
  :is(
    .photo-first-guide-page .spot-list,
    .photo-first-guide-page .article-list,
    .editor-articles .article-list,
    .nearby-spot-list,
    .spot-related-articles:not(.spot-related-articles--single),
    .article-featured-spots:not(.article-featured-spots--single)
  ) {
    grid-auto-flow: dense;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  :is(
    .photo-first-guide-page .spot-list,
    .photo-first-guide-page .article-list,
    .editor-articles .article-list,
    .nearby-spot-list,
    .spot-related-articles:not(.spot-related-articles--single),
    .article-featured-spots:not(.article-featured-spots--single)
  ) > :is(.guide-spot-card, .guide-article-card, .spot-card, .article-card) {
    grid-column: span 2;
  }

  :is(
    .photo-first-guide-page .spot-list,
    .photo-first-guide-page .article-list,
    .editor-articles .article-list,
    .nearby-spot-list,
    .spot-related-articles:not(.spot-related-articles--single),
    .article-featured-spots:not(.article-featured-spots--single)
  ):has(> :is(.guide-spot-card, .guide-article-card, .spot-card, .article-card):last-child:nth-child(3n + 1))
    > :is(.guide-spot-card, .guide-article-card, .spot-card, .article-card):last-child {
    grid-column: 1 / -1;
  }

  :is(
    .photo-first-guide-page .spot-list,
    .photo-first-guide-page .article-list,
    .editor-articles .article-list,
    .nearby-spot-list,
    .spot-related-articles:not(.spot-related-articles--single),
    .article-featured-spots:not(.article-featured-spots--single)
  ):has(> :is(.guide-spot-card, .guide-article-card, .spot-card, .article-card):last-child:nth-child(3n + 2))
    > :is(.guide-spot-card, .guide-article-card, .spot-card, .article-card):nth-last-child(-n + 2) {
    grid-column: span 3;
  }

  .guide-spot-card {
    display: block;
    min-width: 0;
  }

  .guide-spot-card > img,
  .guide-spot-card > .guide-image-placeholder {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .guide-spot-card .card-copy,
  .guide-article-card .card-copy,
  .spot-card .card-copy,
  .article-card .card-copy {
    padding: 17px 18px 19px;
  }

  .guide-spot-card,
  .guide-article-card,
  .spot-card,
  .article-card,
  .municipality-guide-card,
  .guide-tag-card {
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  }

  .guide-spot-card:hover,
  .guide-article-card:hover,
  .spot-card:hover,
  .article-card:hover,
  .municipality-guide-card:hover,
  .guide-tag-card:hover {
    border-color: rgba(143, 61, 32, .28);
    box-shadow: 0 12px 28px rgba(23, 37, 31, .1);
    transform: translateY(-3px);
  }

  .guide-card-image {
    aspect-ratio: 16 / 10;
  }

  .article-list .guide-article-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    min-height: 120px;
    align-items: stretch;
  }

  .article-list .guide-article-card .guide-card-image {
    width: 100%;
    height: 100%;
    min-height: 120px;
    aspect-ratio: 1;
  }

  .article-list .guide-article-card .card-copy {
    display: flex;
    align-items: center;
    padding: 14px 15px;
  }

  .article-list .guide-article-card h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
  }

  .article-list--single .guide-article-card,
  .spot-related-articles--single .guide-article-card {
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  }

  .article-list--single .guide-article-card .guide-card-image,
  .spot-related-articles--single .guide-article-card .guide-card-image {
    min-height: 150px;
    aspect-ratio: 3 / 2;
  }

  .guide-photo-discovery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
  }

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

  .guide-tag-grid > :only-child,
  .tag-grid > :only-child {
    width: min(100%, 360px);
  }

  .guide-tag-card,
  .tag-card {
    min-height: 176px;
    padding: 17px;
  }

  .guide-tag-card-name,
  .tag-card > span {
    font-size: 18px;
  }

  .municipality-guide-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .municipality-guide-card {
    border-radius: 16px;
  }

  .guide-more {
    width: fit-content;
    min-width: 300px;
    margin: 24px auto 0;
    padding-inline: 24px;
  }

  .spot-guide-map-section {
    padding-block: 36px;
  }

  .spot-guide-map-card {
    grid-template-columns: minmax(330px, .8fr) minmax(0, 1.2fr);
    gap: 34px;
    padding: 28px 34px;
    border-radius: 24px;
  }

  .spot-guide-map-card__visual .mie-area-map {
    max-width: 310px;
  }

  .spot-guide-map-choices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .spot-guide-map-choice:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .spot-guide-map-choice {
    min-height: 72px;
    padding: 10px 13px;
  }

  .spot-guide-map-choice strong {
    font-size: 15px;
  }

  .area-guide-city-chips,
  .guide-category-tabs {
    max-width: 960px;
  }

  /* Home */
  .home-intro {
    padding: 18px 48px 38px;
  }

  .home-intro__lead-layout {
    display: grid;
    grid-template-columns: minmax(340px, .92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 30px;
  }

  .home-intro__carousel {
    margin-top: 0;
  }

  .home-intro__carousel-viewport {
    aspect-ratio: 16 / 10;
    border-radius: 26px;
  }

  .home-intro h1 {
    font-size: clamp(27px, 3.05vw, 32px);
    line-height: 1.4;
  }

  .home-intro__title-line {
    white-space: nowrap;
  }

  .home-intro__lead {
    max-width: 760px;
    font-size: 16px;
  }

  .home-path-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
  }

  .home-path-nav a {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 84px;
    padding: 14px 16px;
  }

  .home-path-nav .guide-icon {
    width: 34px;
    height: 34px;
  }

  .home-path-nav strong {
    font-size: 15px;
  }

  .home-path-nav small {
    font-size: 12px;
  }

  .home-guide .guide-section {
    padding-block: 44px;
  }

  .home-guide .guide-section--first {
    padding-top: 42px;
  }

  .home-section-head {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 15px;
    margin-bottom: 26px;
  }

  .home-section-head h2 {
    font-size: 29px;
  }

  .home-section-head p {
    max-width: 780px;
    font-size: 15px;
  }

  .home-map-card {
    grid-template-columns: minmax(270px, .72fr) minmax(0, 1.28fr);
    gap: 24px;
    padding: 18px 24px;
    border-radius: 24px;
  }

  .home-map-card__visual .mie-area-map {
    max-width: 265px;
  }

  .home-map-choices {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .home-map-choice {
    min-height: 96px;
    padding: 14px 16px;
  }

  .home-map-choice__copy strong {
    font-size: 16px;
  }

  .home-map-choice__tagline,
  .home-map-choice__copy small {
    font-size: 12px;
  }

  .home-featured-tags .guide-tag-card:first-child {
    grid-column: span 2;
    min-height: 176px;
  }

  .home-featured-tags {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .home-featured-tags .guide-tag-card:nth-child(n + 10) {
    display: flex;
  }

  .guide-photo-discovery-grid--home .guide-photo-discovery-card:nth-child(n + 10) {
    display: block;
  }

  .home-guide .spot-list,
  .home-guide .article-list {
    gap: 20px;
  }

  .home-popular-article-list .guide-article-card,
  .top-latest-articles .guide-article-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .home-popular-article-list .guide-article-card .guide-card-image,
  .top-latest-articles .guide-article-card .guide-card-image {
    height: 100%;
    min-height: 120px;
    aspect-ratio: 1;
  }

  .home-popular-article-list .guide-article-card .card-copy,
  .top-latest-articles .guide-article-card .card-copy {
    display: flex;
    align-items: center;
    padding: 14px 15px;
  }

  .home-popular-article-list .guide-article-card h3,
  .top-latest-articles .guide-article-card h3 {
    margin: 0;
    font-size: 16px;
    -webkit-line-clamp: 3;
  }

  .home-popular-article-list .guide-article-card:not(:first-child) .card-copy > p,
  .top-latest-articles .guide-article-card .card-copy > p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .home-photo-library {
    padding-inline: 48px;
  }

  .home-photo-library__head {
    grid-template-columns: 68px minmax(0, 760px);
    justify-content: center;
    gap: 20px;
  }

  .home-photo-library__icon {
    width: 68px;
    height: 68px;
  }

  .home-photo-library__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-top: 26px;
  }

  .home-photo-library__card {
    border-radius: 15px;
  }

  .home-photo-library__card strong {
    right: 12px;
    bottom: 11px;
    left: 12px;
    font-size: 13px;
  }

  .home-photo-library__cta {
    display: flex;
    width: fit-content;
    margin: 22px auto 0;
  }

  /* Spot detail */
  .hero--with-media {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(400px, .95fr);
    grid-template-rows: auto auto 1fr;
    align-items: start;
    background: var(--surface);
  }

  .hero--with-media .hero-slider {
    grid-column: 1;
    grid-row: 1;
  }

  .hero--with-media .hero-slides {
    aspect-ratio: 16 / 10;
  }

  .hero--with-media .hero-excerpt {
    grid-column: 1;
    grid-row: 2;
    padding: 12px 22px 7px;
  }

  .hero--with-media .hero-thumbnails {
    grid-column: 1;
    grid-row: 3;
    grid-auto-columns: 90px;
    margin: 4px 22px 18px;
  }

  .hero--with-media .hero-copy {
    grid-column: 2;
    grid-row: 1 / span 3;
    padding: 0 30px 24px;
  }

  .hero-copy:not(.hero--with-media .hero-copy) {
    padding: 38px 48px 34px;
  }

  .hero-copy h1 {
    margin-bottom: 11px;
    font-size: 32px;
  }

  .hero--with-media .description,
  .hero--with-media .charm-lead {
    font-size: 14px;
  }

  .hero--with-media .charm-lead {
    margin-bottom: 14px;
  }

  .story-list {
    gap: 22px;
  }

  .story {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
    column-gap: 34px;
    align-items: start;
    padding-bottom: 24px;
  }

  .story img {
    grid-column: 1;
    grid-row: 1 / span 20;
    margin: 0;
  }

  .story h3,
  .story p {
    grid-column: 2;
  }

  .story h3 {
    margin-top: 4px;
    font-size: 22px;
  }

  .story p {
    font-size: 16px;
  }

  .story:nth-child(even) {
    grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
  }

  .story:nth-child(even) img {
    grid-column: 2;
  }

  .story:nth-child(even) h3,
  .story:nth-child(even) p {
    grid-column: 1;
  }

  #visit-info {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 0;
  }

  #visit-info .section-heading {
    grid-column: 1 / -1;
  }

  #visit-info .visit-map-panel {
    grid-column: 1 / -1;
    grid-row: auto;
    margin-top: 22px;
    margin-bottom: 0;
  }

  #visit-info .map-frame iframe {
    height: 430px;
  }

  #visit-info .visit-fact-panels {
    grid-column: 1 / -1;
    grid-row: auto;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  #visit-info .facts div {
    padding-block: 10px;
  }

  .nearby-spot-list .spot-card {
    display: block;
  }

  .nearby-spot-list .spot-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .gallery-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1.05fr);
    gap: 0 34px;
  }

  .gallery-band h2,
  .gallery-band p,
  .gallery-band .gallery-action {
    grid-column: 1;
  }

  .gallery-band .gallery-grid {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
    margin: 0;
  }

  .gallery-band .gallery-action {
    align-self: end;
    max-width: 410px;
  }

  .sources {
    max-width: 900px;
  }

  /* Article */
  .guide-main > article {
    max-width: 860px;
    margin: 40px auto 64px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 16px 38px rgba(23, 37, 31, .08);
  }

  .guide-article-header {
    padding: 34px 42px 30px;
  }

  .guide-article-header h1 {
    font-size: 34px;
    line-height: 1.5;
  }

  .guide-article-hero img {
    aspect-ratio: 16 / 9;
  }

  .guide-lead,
  .guide-toc,
  .guide-article-body {
    padding-inline: 48px;
  }

  .guide-lead {
    padding-block: 24px;
    font-size: 16px;
  }

  .guide-toc {
    padding-block: 24px;
  }

  .guide-toc ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }

  .guide-article-body {
    padding-block: 26px 44px;
    font-size: 16px;
    line-height: 1.9;
  }

  .guide-article-body h2 {
    font-size: 25px;
  }

  .guide-article-body h3 {
    font-size: 20px;
  }

  .guide-article-inline-spot .guide-spot-card {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 14px;
    padding: 9px;
  }

  .guide-article-inline-spot .guide-spot-card > img,
  .guide-article-inline-spot .guide-spot-card > .guide-image-placeholder {
    height: auto;
    aspect-ratio: 1;
    border-radius: 16px;
  }

  /* Advanced search and footer */
  .advanced-search {
    padding: 40px 48px;
  }

  .advanced-search-head {
    max-width: 780px;
    margin: 0 auto 20px;
  }

  .advanced-search-form {
    max-width: 980px;
    margin: 0 auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 14px;
  }

  .advanced-search-more,
  .advanced-search-keyword {
    height: fit-content;
  }

  .advanced-search-more:nth-of-type(1),
  .advanced-search-municipalities,
  .advanced-search-submit {
    grid-column: 1 / -1;
  }

  .advanced-search-city-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .advanced-search-keyword {
    grid-column: 1 / -1;
  }

  .advanced-search-submit {
    width: min(100%, 420px);
    margin: 8px auto 0;
  }

  .guide-search-result-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .photo-first-search-page .guide-search-result-list > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .official-socials {
    grid-template-columns: 220px minmax(0, 1fr) 255px;
    align-items: center;
    gap: 30px;
    padding: 28px 48px;
  }

  .official-socials__photo {
    aspect-ratio: 1;
    border-radius: 22px;
  }

  .official-socials__copy h2 {
    font-size: 28px;
  }

  .official-socials__highlight {
    font-size: 16px;
  }

  .official-socials__copy > p:last-of-type {
    font-size: 14px;
  }

  .official-socials__links {
    grid-template-columns: 1fr;
  }

  .official-socials__link {
    min-height: 70px;
  }

  .official-socials__link strong {
    font-size: 14px;
  }

  .official-socials__link small {
    font-size: 11px;
  }

  .footer {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 22px 46px;
    padding: 42px 48px 34px;
  }

  .footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 34px;
    margin-top: 0;
  }

  .footer-nav-group:last-child {
    grid-column: auto;
  }

  .footer-nav-group:last-child .footer-nav-group__links {
    grid-template-columns: 1fr;
  }

  .footer-nav-group h2 {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .footer-nav-group__links a {
    padding: 8px 0;
    font-size: 13px;
    transition: color .18s ease, padding-left .18s ease;
  }

  .footer-nav-group__links a:hover,
  .footer-nav-group__links a:focus-visible {
    padding-left: 4px;
    color: #fff;
  }

  .copyright {
    grid-column: 1 / -1;
    margin-top: 4px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .14);
  }

  .guide-static {
    padding: 32px 14px 36px;
  }

  .guide-static,
  .editor-profile {
    max-width: 920px;
    margin-inline: auto;
  }

  /* Error pages */
  .error-page {
    min-height: calc(100vh - 76px);
    padding: 54px 48px 64px;
  }

  .error-page__hero {
    display: grid;
    max-width: 980px;
    margin: 0 auto;
    grid-template-columns: 330px minmax(0, 1fr);
    grid-template-rows: auto auto auto auto;
    gap: 0 48px;
    align-items: center;
    padding: 42px 48px 40px;
    text-align: left;
  }

  .error-page__code {
    grid-column: 2;
    justify-self: start;
    margin-bottom: 12px;
  }

  .error-page__character-area {
    grid-column: 1;
    grid-row: 1 / -1;
    margin: 0;
  }

  .error-page__character {
    width: 220px;
  }

  .error-page__speech {
    margin-top: 2px;
    text-align: center;
  }

  .error-page__content {
    grid-column: 2;
    margin-bottom: 22px;
  }

  .error-page__content h1 {
    font-size: 32px;
  }

  .error-page__description {
    font-size: 15px;
  }

  .error-page__actions,
  .error-page__home-link {
    grid-column: 2;
  }

  .error-page__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .error-page__home-link {
    justify-self: start;
  }
}

@media (min-width: 900px) and (max-width: 1023px) {
  .desktop-header-nav {
    display: none;
  }
}

@media (min-width: 1180px) {
  .page {
    width: min(calc(100% - 64px), 1024px);
  }

  .guide-section,
  .section-band,
  .gallery-band {
    padding-inline: 56px;
  }

  .guide-results-section {
    padding: 28px 48px 32px;
  }

  .guide-results-section > .guide-section-head {
    margin-bottom: 18px;
  }

  .guide-results-section > .guide-result-view-switch {
    margin-bottom: 12px;
  }

  .guide-results-section .guide-pagination-summary p {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .guide-spot-card,
  .guide-article-card,
  .spot-card,
  .article-card,
  .municipality-guide-card,
  .guide-tag-card {
    transition: none;
  }
}

/* guide_subnav.css */
html {
  scroll-padding-top: 116px;
}

.guide-header-stack {
  position: sticky;
  top: 0;
  z-index: 50;
}

.guide-header-stack .site-header {
  position: relative;
  top: auto;
  z-index: 2;
}

.guide-quick-nav {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: rgba(255, 253, 248, .97);
  border-bottom: 1px solid rgba(22, 76, 56, .12);
  box-shadow: 0 5px 16px rgba(16, 38, 28, .06);
  backdrop-filter: blur(14px);
}

.guide-quick-nav__inner {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 8px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.guide-quick-nav__inner::-webkit-scrollbar {
  display: none;
}

.guide-quick-nav__link {
  display: inline-flex;
  min-height: 46px;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  padding: 7px 11px 6px;
  color: var(--muted);
  border-bottom: 3px solid transparent;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  transition: color .18s ease, background-color .18s ease, border-color .18s ease;
}

.guide-quick-nav__icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--brand-orange);
  stroke-width: 2;
}

.guide-quick-nav__link:hover,
.guide-quick-nav__link:focus-visible,
.guide-quick-nav__link.is-active {
  color: var(--orange);
  background: var(--warm);
  border-bottom-color: var(--brand-orange);
}

.guide-quick-nav__link:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: -3px;
}

.guide-pagination-anchor,
.hero-slider,
.story {
  scroll-margin-top: 0;
}

@media (max-width: 899px) {
  html {
    scroll-padding-top: 0;
  }

  .guide-header-stack {
    position: relative;
    top: auto;
  }
}

@media (min-width: 900px) {
  html {
    scroll-padding-top: 132px;
  }

  .guide-quick-nav__inner {
    justify-content: safe center;
    padding-inline: 24px;
  }

  .guide-quick-nav__link {
    min-height: 48px;
    padding-inline: 15px;
    font-size: 14px;
  }

  .guide-quick-nav__icon {
    width: 18px;
    height: 18px;
  }
}

/* photo_first_pages.css */
/* Photo-first discovery pages
 *
 * This file is intentionally loaded after the legacy guide styles. Keep the
 * page-level rules scoped so the renewed home and spot detail remain isolated.
 */

.photo-first-guide-page,
.photo-first-article-page {
  --photo-page-accent: #b6532b;
  --photo-page-accent-dark: #8f3d20;
  --photo-page-paper: #fffdf8;
  --photo-page-ink: #17251f;
  --photo-page-muted: #596860;
  --photo-page-line: rgba(23, 37, 31, .13);
  background: var(--photo-page-paper);
}

.photo-first-guide-page .guide-main,
.photo-first-article-page .guide-main {
  overflow: clip;
  background: var(--photo-page-paper);
}

.photo-first-guide-page .guide-breadcrumb,
.photo-first-article-page .guide-breadcrumb {
  position: relative;
  z-index: 3;
  width: 100%;
  color: var(--photo-page-muted);
  background: #ebe9e4;
  border-bottom: 1px solid rgba(23, 37, 31, .07);
}

/* Shared multi-photo page hero */
.guide-photo-page-hero {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 150, 76, .22), transparent 32%),
    #17251f;
  isolation: isolate;
}

.guide-photo-page-hero--without-media {
  min-height: 240px;
}

.guide-photo-page-hero__media {
  position: absolute;
  z-index: -2;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(110px, .85fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 3px;
  background: #17251f;
}

.guide-photo-page-hero__image {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #2f4038;
  object-fit: cover;
  transform: scale(1.002);
}

.guide-photo-page-hero__image--primary,
.guide-photo-page-hero__image:first-child {
  grid-row: 1 / -1;
}

.guide-photo-page-hero__media--single .guide-photo-page-hero__image,
.guide-photo-page-hero__media > .guide-photo-page-hero__image:only-child {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
}

.guide-photo-page-hero__media--double,
.guide-photo-page-hero__media:has(> .guide-photo-page-hero__image:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 1fr;
}

.guide-photo-page-hero__media--double .guide-photo-page-hero__image,
.guide-photo-page-hero__media:has(> .guide-photo-page-hero__image:nth-child(2):last-child) .guide-photo-page-hero__image {
  grid-row: 1;
}

.guide-photo-page-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 22, 16, .02) 20%, rgba(8, 22, 16, .83) 100%),
    linear-gradient(90deg, rgba(8, 22, 16, .45), transparent 72%);
  content: "";
  pointer-events: none;
}

.guide-photo-page-hero__copy {
  position: absolute;
  right: 18px;
  bottom: 28px;
  left: 18px;
  max-width: 860px;
  text-shadow: 0 3px 22px rgba(0, 0, 0, .42);
}

.guide-photo-page-hero h1 {
  max-width: 13em;
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 7.4vw, 34px);
  letter-spacing: -.025em;
  line-height: 1.28;
}

.guide-photo-page-hero__description {
  max-width: 48em;
  margin: 13px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.75;
}

.guide-photo-page-toolbar {
  padding: 18px;
  background: #fff;
  border-bottom: 1px solid var(--photo-page-line);
}

.guide-photo-page-toolbar > :first-child {
  margin-top: 0;
}

.guide-photo-page-toolbar > :last-child {
  margin-bottom: 0;
}

.photo-first-guide-page .guide-intent-note {
  margin: 0;
  color: var(--photo-page-muted);
  font-size: 12px;
}

/* Photo result grids */
.photo-first-guide-page .guide-results-section {
  background: var(--photo-page-paper);
}

.photo-first-guide-page .guide-photo-discovery-grid {
  grid-auto-flow: dense;
  gap: 6px;
}

.photo-first-guide-page .guide-photo-discovery-card {
  border-radius: 14px;
  box-shadow: 0 5px 18px rgba(15, 31, 23, .08);
}

.photo-first-guide-page .guide-photo-discovery-card figure {
  height: 100%;
  min-height: 0;
}

.photo-first-guide-page .guide-photo-discovery-grid > .guide-photo-discovery-card:first-child {
  grid-column: 1 / -1;
}

.photo-first-guide-page .guide-photo-discovery-grid > .guide-photo-discovery-card:first-child figure {
  aspect-ratio: 16 / 10;
}

/* The first photo is full-width on narrow screens. Stretch an unpaired final
 * card as well so the mosaic never ends with an empty lower-right cell. */
.photo-first-guide-page .guide-photo-discovery-grid > .guide-photo-discovery-card:last-child:nth-child(even) {
  grid-column: 1 / -1;
}

.photo-first-guide-page .guide-photo-discovery-grid > .guide-photo-discovery-card:last-child:nth-child(even) figure {
  aspect-ratio: 2 / 1;
}

.photo-first-guide-page .guide-photo-discovery-caption {
  padding: 48px 12px 12px;
  background: linear-gradient(transparent, rgba(6, 20, 14, .9));
}

.photo-first-guide-page .guide-photo-discovery-caption small {
  color: #ffd8c2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
}

.photo-first-guide-page .guide-photo-discovery-caption strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.45;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.photo-first-guide-page .guide-photo-discovery-card .guide-image-placeholder {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.photo-first-guide-page .guide-listing-toolbar {
  display: flex;
  width: 100%;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 0;
  padding: 13px 14px;
  background: #fff;
  border: 1px solid var(--photo-page-line);
  border-radius: 14px;
}

.photo-first-guide-page .guide-listing-bar {
  display: grid;
  min-width: 0;
  gap: 14px;
  margin-bottom: 16px;
}

.photo-first-guide-page .guide-listing-bar > .guide-section-head {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.photo-first-guide-page .guide-listing-bar .guide-pagination-summary,
.photo-first-guide-page .guide-listing-bar .guide-pagination-summary h2 {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.photo-first-guide-page .guide-listing-toolbar__group {
  display: grid;
  gap: 6px;
}

.photo-first-guide-page .guide-listing-toolbar__label {
  color: var(--photo-page-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
}

.photo-first-guide-page .guide-listing-toolbar__choices {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  background: #efe8df;
  border-radius: 999px;
}

.photo-first-guide-page .guide-listing-toolbar__choices a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 7px 12px;
  color: var(--photo-page-muted);
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.photo-first-guide-page .guide-listing-toolbar__choices a.is-active {
  color: #fff;
  background: var(--photo-page-accent);
  box-shadow: 0 5px 14px rgba(143, 61, 32, .18);
}

.photo-first-guide-page .guide-listing-toolbar__choices a[aria-busy="true"] {
  cursor: wait;
  opacity: .65;
}

.photo-first-guide-page .guide-listing-toolbar__choices .guide-icon {
  width: 16px;
  height: 16px;
}

.photo-first-guide-page .guide-listing-location {
  display: contents;
}

.photo-first-guide-page .guide-listing-location__status {
  flex-basis: 100%;
  margin: 0;
  color: var(--photo-page-accent-dark);
  font-size: 12px;
  font-weight: 700;
}

.photo-first-guide-page .guide-listing-location__status:empty {
  display: none;
}

/* Area and purpose discovery */
.photo-first-guide-page .area-index-list {
  gap: 14px;
}

.photo-first-guide-page .area-index-card {
  position: relative;
  display: block;
  min-height: 310px;
  overflow: hidden;
  color: #fff;
  background: #17251f;
  border: 0;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(23, 37, 31, .14);
}

.photo-first-guide-page .area-index-card__image {
  position: absolute;
  inset: 0;
}

.photo-first-guide-page .area-index-card__image::after {
  position: absolute;
  inset: 30% 0 0;
  background: linear-gradient(transparent, rgba(7, 23, 16, .92));
  content: "";
}

.photo-first-guide-page .area-index-card__copy {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 52px 18px 18px;
  border: 0;
}

.photo-first-guide-page .area-index-card__copy h2 {
  color: #fff;
  font-size: 25px;
}

.photo-first-guide-page .area-index-card__copy p {
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
}

.photo-first-guide-page .area-index-card__copy > span {
  color: #ffd9c4;
}

.photo-first-guide-page .municipality-guide-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  color: #fff;
  background: #17251f;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(23, 37, 31, .11);
}

.photo-first-guide-page .municipality-guide-card > img,
.photo-first-guide-page .municipality-guide-card > .guide-image-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.photo-first-guide-page .municipality-guide-card::after {
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, rgba(7, 23, 16, .9));
  content: "";
  pointer-events: none;
}

.photo-first-guide-page .municipality-guide-card-copy {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  align-items: flex-end;
  padding: 40px 13px 13px;
}

.photo-first-guide-page .municipality-guide-card h3 {
  color: #fff;
  text-shadow: 0 2px 9px rgba(0, 0, 0, .42);
}

.photo-first-guide-page .municipality-guide-card-copy span {
  color: #fff;
  background: rgba(182, 83, 43, .9);
  backdrop-filter: blur(6px);
}

.photo-first-guide-page .municipality-guide-grid > .municipality-guide-card:last-child:nth-child(odd),
.photo-first-guide-page .guide-tag-grid > .guide-tag-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.photo-first-guide-page .spot-guide-area-section {
  background: var(--photo-page-paper);
  border-top-width: 1px;
}

.photo-first-guide-page .spot-guide-map-card {
  background: #f7f1e9;
  border-color: rgba(143, 61, 32, .15);
}

.photo-first-guide-page .guide-tag-grid {
  gap: 8px;
}

.photo-first-guide-page .guide-tag-card {
  min-height: 170px;
  border-radius: 17px;
  box-shadow: 0 7px 20px rgba(23, 37, 31, .1);
}

.photo-first-guide-page .guide-tag-card::before {
  background: linear-gradient(180deg, rgba(16, 32, 24, .01) 22%, rgba(16, 32, 24, .9) 100%);
}

.photo-first-guide-page .guide-tag-card-name {
  font-size: 18px;
}

.photo-first-guide-page .area-guide-city-chips,
.photo-first-guide-page .guide-area-tabs,
.photo-first-guide-page .guide-article-area-tabs {
  margin: 0;
}

.photo-first-guide-page .guide-article-area-tabs {
  width: 100%;
  max-width: none;
  padding: 18px;
  background: #fff;
  border-bottom: 1px solid var(--photo-page-line);
}

.photo-first-guide-page .guide-article-area-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  white-space: nowrap;
}

.photo-first-guide-page .guide-article-area-tabs a small {
  color: inherit;
  font-size: 11px;
  line-height: 1;
  opacity: .78;
}

.photo-first-guide-page .area-guide-city-chips a,
.photo-first-guide-page .guide-area-tabs a {
  background: #fffaf3;
  border-color: rgba(143, 61, 32, .18);
}

.photo-first-guide-page .guide-area-tabs a.is-active {
  color: #fff;
  background: var(--photo-page-accent-dark);
  border-color: var(--photo-page-accent-dark);
}

/* Editorial story listing */
.guide-story-grid {
  display: grid;
  gap: 20px;
}

.guide-story-card {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: var(--photo-page-ink, #17251f);
  background: #fff;
  border: 1px solid rgba(23, 37, 31, .11);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(23, 37, 31, .08);
}

.guide-story-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #e8ece9;
}

.guide-story-card__media img,
.guide-story-card__media .guide-image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.guide-story-card__copy {
  padding: 16px 17px 19px;
}

.guide-story-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 10px;
  margin-bottom: 8px;
  color: var(--photo-page-muted, #596860);
  font-size: 11px;
  font-weight: 700;
}

.guide-story-card h2,
.guide-story-card h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--photo-page-ink, #17251f);
  font-size: 19px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.guide-story-card:hover .guide-story-card__media img,
.guide-story-card:focus-visible .guide-story-card__media img {
  transform: scale(1.035);
}

/* Full-bleed article */
.photo-first-article-page .guide-main > article {
  max-width: none;
  margin: 0;
  overflow: visible;
  background: var(--photo-page-paper);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.photo-first-article-page .guide-article-header {
  padding: 0;
  background: #17251f;
}

.photo-first-article-page .guide-article-hero {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  background: #17251f;
}

.photo-first-article-page .guide-article-hero::after {
  position: absolute;
  z-index: 1;
  inset: 22% 0 0;
  background: linear-gradient(transparent, rgba(6, 20, 14, .9));
  content: "";
  pointer-events: none;
}

.photo-first-article-page .guide-article-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.photo-first-article-page .guide-article-hero__copy {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 28px;
  left: 18px;
  max-width: 980px;
  color: #fff;
  text-shadow: 0 3px 20px rgba(0, 0, 0, .48);
}

.photo-first-article-page .guide-article-hero__eyebrow {
  margin: 0 0 8px;
  color: #ffd8c2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}

.photo-first-article-page .guide-article-header h1 {
  max-width: 18em;
  margin: 0;
  color: #fff;
  font-size: clamp(25px, 6.3vw, 34px);
  line-height: 1.42;
}

.photo-first-article-page .guide-article-meta {
  padding: 17px 18px;
  color: var(--photo-page-muted);
  background: #fff;
}

.photo-first-article-page .guide-article-reading {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--photo-page-paper);
}

.photo-first-article-page .guide-lead,
.photo-first-article-page .guide-toc {
  max-width: 820px;
  margin-inline: auto;
}

.photo-first-article-page .guide-lead {
  background: transparent;
  font-size: 16px;
  line-height: 1.9;
}

.photo-first-article-page .guide-toc {
  margin-block: 4px 16px;
  background: #f7ede2;
  border: 1px solid rgba(143, 61, 32, .12);
  border-radius: 16px;
}

.photo-first-article-page .guide-article-body {
  max-width: 1080px;
  margin-inline: auto;
  background: transparent;
}

.photo-first-article-page .guide-article-body > p,
.photo-first-article-page .guide-article-body > h2,
.photo-first-article-page .guide-article-body > h3,
.photo-first-article-page .guide-article-body > h4,
.photo-first-article-page .guide-article-body > ul,
.photo-first-article-page .guide-article-body > ol,
.photo-first-article-page .guide-article-body > blockquote,
.photo-first-article-page .guide-article-body > table,
.photo-first-article-page .guide-article-rich-block > p,
.photo-first-article-page .guide-article-rich-block > h2,
.photo-first-article-page .guide-article-rich-block > h3,
.photo-first-article-page .guide-article-rich-block > h4,
.photo-first-article-page .guide-article-rich-block > ul,
.photo-first-article-page .guide-article-rich-block > ol,
.photo-first-article-page .guide-article-rich-block > blockquote,
.photo-first-article-page .guide-article-rich-block > table {
  width: min(100%, 780px);
  margin-right: auto;
  margin-left: auto;
}

.photo-first-article-page .guide-article-body img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 32px rgba(23, 37, 31, .09);
}

.photo-first-article-page .guide-article-body figure,
.photo-first-article-page .guide-article-body .attachment,
.photo-first-article-page .guide-article-body > img,
.photo-first-article-page .guide-article-rich-block > img,
.photo-first-article-page .guide-article-rich-block > figure,
.photo-first-article-page .guide-article-rich-block > p:has(img),
.photo-first-article-page .guide-article-html-block > p:has(img) {
  width: 100%;
  max-width: 1040px;
  margin: 24px auto;
}

.photo-first-article-page .guide-image-caption,
.photo-first-article-page .guide-article-body figcaption {
  color: var(--photo-page-muted);
  font-size: 12px;
  text-align: center;
}

@media (max-width: 899px) {
  .photo-first-guide-page .guide-listing-bar > .guide-section-head {
    text-align: center;
  }

  .photo-first-guide-page .guide-listing-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    gap: 10px;
    padding: 12px;
  }

  .photo-first-guide-page .guide-listing-toolbar__group {
    min-width: 0;
  }

  .photo-first-guide-page .guide-listing-toolbar__choices {
    display: grid;
  }

  .photo-first-guide-page .guide-listing-toolbar__choices--sort {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .photo-first-guide-page .guide-listing-toolbar__choices--view {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-first-guide-page .guide-listing-toolbar__choices a {
    min-width: 0;
    padding-inline: 8px;
  }

  .photo-first-guide-page .guide-listing-location__status {
    grid-column: 1 / -1;
  }

  /* Photo view stays image-first on phones; an unpaired final tile expands. */
  .photo-first-guide-page .guide-photo-discovery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    border-top: 0;
  }

  .photo-first-guide-page .guide-photo-discovery-grid > .guide-photo-discovery-card,
  .photo-first-guide-page .guide-photo-discovery-grid > .guide-photo-discovery-card:first-child {
    grid-column: auto;
    grid-row: auto;
    padding: 0;
    background: var(--photo-page-ink);
    border: 0;
    border-radius: 10px;
    box-shadow: none;
  }

  .photo-first-guide-page .guide-photo-discovery-grid > .guide-photo-discovery-card figure,
  .photo-first-guide-page .guide-photo-discovery-grid > .guide-photo-discovery-card:first-child figure {
    display: block;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .photo-first-guide-page .guide-photo-discovery-card figure > img,
  .photo-first-guide-page .guide-photo-discovery-card figure > .guide-photo-discovery-placeholder {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border-radius: 0;
  }

  .photo-first-guide-page .guide-photo-discovery-caption {
    display: none;
  }

  .photo-first-guide-page .guide-photo-discovery-grid > .guide-photo-discovery-card:last-child:nth-child(even) {
    grid-column: auto;
  }

  .photo-first-guide-page .guide-photo-discovery-grid > .guide-photo-discovery-card:last-child:nth-child(even) figure {
    aspect-ratio: 4 / 3;
  }

  .photo-first-guide-page .guide-photo-discovery-grid > .guide-photo-discovery-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .photo-first-guide-page .guide-photo-discovery-grid > .guide-photo-discovery-card:last-child:nth-child(odd) figure {
    aspect-ratio: 2 / 1;
  }

  .photo-first-guide-page .guide-photo-discovery-grid > .guide-photo-discovery-card:only-child figure {
    aspect-ratio: 16 / 9;
  }

  .photo-first-guide-page .spot-list,
  .photo-first-guide-page .guide-search-result-list {
    gap: 0;
    border-top: 1px solid var(--photo-page-line);
  }

  .photo-first-guide-page .spot-list > .guide-spot-card,
  .photo-first-guide-page .guide-search-result-list > .guide-spot-card {
    grid-template-columns: minmax(0, 1fr) 116px;
    padding: 11px 0;
    border-width: 0 0 1px;
    border-radius: 0;
  }

  .photo-first-guide-page .spot-list > .guide-spot-card > img,
  .photo-first-guide-page .spot-list > .guide-spot-card > .guide-image-placeholder,
  .photo-first-guide-page .guide-search-result-list > .guide-spot-card > img,
  .photo-first-guide-page .guide-search-result-list > .guide-spot-card > .guide-image-placeholder {
    grid-column: 2;
    grid-row: 1;
    width: 116px;
    height: 88px;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
  }

  .photo-first-guide-page .spot-list > .guide-spot-card .card-copy,
  .photo-first-guide-page .guide-search-result-list > .guide-spot-card .card-copy {
    grid-column: 1;
    grid-row: 1;
    padding: 1px 12px 1px 0;
  }

  .photo-first-guide-page .spot-list > .guide-spot-card p,
  .photo-first-guide-page .guide-search-result-list > .guide-spot-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

@media (min-width: 900px) {
  .photo-first-guide-page .guide-listing-bar {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 24px;
  }

  .photo-first-guide-page .guide-listing-bar .guide-listing-toolbar {
    width: auto;
  }

  .photo-first-guide-page .page,
  .photo-first-article-page .page {
    width: 100%;
    max-width: none;
  }

  .photo-first-guide-page .site-header,
  .photo-first-article-page .site-header {
    padding-right: max(30px, calc((100vw - 1320px) / 2));
    padding-left: max(30px, calc((100vw - 1320px) / 2));
  }

  .photo-first-guide-page .guide-breadcrumb,
  .photo-first-article-page .guide-breadcrumb {
    padding: 15px max(32px, calc((100vw - 1180px) / 2));
  }

  .photo-first-guide-page .guide-section,
  .photo-first-guide-page .guide-results-section,
  .photo-first-article-page .guide-section {
    padding-right: max(32px, calc((100vw - 1180px) / 2));
    padding-left: max(32px, calc((100vw - 1180px) / 2));
  }

  .photo-first-guide-page .official-socials,
  .photo-first-article-page .official-socials,
  .photo-first-guide-page .footer,
  .photo-first-article-page .footer {
    padding-right: max(48px, calc((100vw - 1180px) / 2));
    padding-left: max(48px, calc((100vw - 1180px) / 2));
  }

  .guide-photo-page-hero {
    min-height: clamp(500px, 58vh, 620px);
  }

  .guide-photo-page-hero--without-media {
    min-height: 280px;
  }

  .guide-photo-page-hero__media {
    grid-template-columns: minmax(0, 1.65fr) minmax(330px, .75fr);
    gap: 5px;
  }

  .guide-photo-page-hero__copy {
    right: max(48px, calc((100vw - 1180px) / 2));
    bottom: 44px;
    left: max(48px, calc((100vw - 1180px) / 2));
  }

  .guide-photo-page-hero h1 {
    font-size: clamp(34px, 3vw, 42px);
  }

  .guide-photo-page-hero__description {
    font-size: 16px;
  }

  .guide-photo-page-toolbar {
    padding: 20px max(48px, calc((100vw - 1180px) / 2));
  }

  .photo-first-guide-page .guide-article-area-tabs {
    padding: 20px max(48px, calc((100vw - 1180px) / 2));
  }

  .photo-first-guide-page .guide-photo-discovery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .photo-first-guide-page .guide-photo-discovery-grid > .guide-photo-discovery-card:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }

  .photo-first-guide-page .guide-photo-discovery-grid > .guide-photo-discovery-card:first-child figure {
    height: 100%;
    aspect-ratio: auto;
  }

  /* Four-column mosaics reserve four cells for the lead photo. Widen the
   * final one or two cards according to the remainder instead of exposing an
   * empty cell on the last row. */
  .photo-first-guide-page .guide-photo-discovery-grid:has(> .guide-photo-discovery-card:last-child:nth-child(4n + 2)) > .guide-photo-discovery-card:last-child {
    grid-column: 1 / -1;
  }

  .photo-first-guide-page .guide-photo-discovery-grid:has(> .guide-photo-discovery-card:last-child:nth-child(4n + 2)) > .guide-photo-discovery-card:last-child figure {
    height: auto;
    aspect-ratio: 4 / 1;
  }

  .photo-first-guide-page .guide-photo-discovery-grid:has(> .guide-photo-discovery-card:last-child:nth-child(4n + 3)) > .guide-photo-discovery-card:nth-last-child(-n + 2) {
    grid-column: span 2;
  }

  .photo-first-guide-page .guide-photo-discovery-grid:has(> .guide-photo-discovery-card:last-child:nth-child(4n + 3)) > .guide-photo-discovery-card:nth-last-child(-n + 2) figure,
  .photo-first-guide-page .guide-photo-discovery-grid:has(> .guide-photo-discovery-card:last-child:nth-child(4n)) > .guide-photo-discovery-card:last-child figure {
    height: auto;
    aspect-ratio: 2 / 1;
  }

  .photo-first-guide-page .guide-photo-discovery-grid:has(> .guide-photo-discovery-card:last-child:nth-child(4n)) > .guide-photo-discovery-card:last-child {
    grid-column: span 2;
  }

  .photo-first-guide-page .guide-photo-discovery-grid:has(> .guide-photo-discovery-card:nth-child(2):last-child) > .guide-photo-discovery-card {
    grid-column: span 2;
    grid-row: auto;
  }

  .photo-first-guide-page .guide-photo-discovery-grid:has(> .guide-photo-discovery-card:nth-child(2):last-child) > .guide-photo-discovery-card figure {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .photo-first-guide-page .guide-photo-discovery-grid > .guide-photo-discovery-card:only-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .photo-first-guide-page .guide-photo-discovery-grid > .guide-photo-discovery-card:only-child figure {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .photo-first-guide-page .guide-photo-discovery-caption {
    padding: 62px 16px 15px;
  }

  .photo-first-guide-page .guide-photo-discovery-caption strong {
    font-size: 15px;
  }

  .photo-first-guide-page .guide-photo-discovery-grid > .guide-photo-discovery-card:first-child .guide-photo-discovery-caption strong {
    font-size: 22px;
  }

  .photo-first-guide-page .area-index-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .photo-first-guide-page .area-index-card {
    min-height: 390px;
  }

  .photo-first-guide-page .area-index-card:first-child {
    grid-column: 1 / -1;
    min-height: 500px;
  }

  .photo-first-guide-page .area-index-card__copy {
    padding: 76px 28px 25px;
  }

  .photo-first-guide-page .area-index-card__copy h2 {
    font-size: 27px;
  }

  .photo-first-guide-page .municipality-guide-card {
    min-height: 250px;
  }

  .photo-first-guide-page .municipality-guide-grid:has(> .municipality-guide-card:last-child:nth-child(4n + 1)) > .municipality-guide-card:last-child,
  .photo-first-guide-page .guide-tag-grid:has(> .guide-tag-card:last-child:nth-child(4n + 1)) > .guide-tag-card:last-child {
    grid-column: 1 / -1;
  }

  .photo-first-guide-page .municipality-guide-grid:has(> .municipality-guide-card:last-child:nth-child(4n + 2)) > .municipality-guide-card:nth-last-child(-n + 2),
  .photo-first-guide-page .guide-tag-grid:has(> .guide-tag-card:last-child:nth-child(4n + 2)) > .guide-tag-card:nth-last-child(-n + 2) {
    grid-column: span 2;
  }

  .photo-first-guide-page .municipality-guide-grid:has(> .municipality-guide-card:last-child:nth-child(4n + 3)) > .municipality-guide-card:last-child,
  .photo-first-guide-page .guide-tag-grid:has(> .guide-tag-card:last-child:nth-child(4n + 3)) > .guide-tag-card:last-child {
    grid-column: span 2;
  }

  .photo-first-guide-page .guide-tag-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  .photo-first-guide-page .guide-tag-card {
    min-height: 225px;
  }

  .guide-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .guide-story-grid--related > .guide-story-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .photo-first-articles-index .guide-story-grid > .guide-story-card:last-child:nth-child(even) {
    grid-column: 1 / -1;
  }

  .guide-story-card--feature {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(330px, .75fr);
    min-height: 440px;
  }

  .guide-story-card--feature .guide-story-card__media {
    height: 100%;
    aspect-ratio: auto;
  }

  .guide-story-card--feature .guide-story-card__copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
  }

  .guide-story-card--feature h2,
  .guide-story-card--feature h3 {
    font-size: 24px;
  }

  .photo-first-article-page .guide-article-hero {
    min-height: clamp(520px, 65vh, 680px);
  }

  .photo-first-article-page .guide-article-hero__copy {
    right: max(48px, calc((100vw - 1180px) / 2));
    bottom: 44px;
    left: max(48px, calc((100vw - 1180px) / 2));
  }

  .photo-first-article-page .guide-article-header h1 {
    font-size: clamp(32px, 3vw, 42px);
    line-height: 1.38;
  }

  .photo-first-article-page .guide-article-meta {
    display: flex;
    max-width: none;
    justify-content: space-between;
    padding: 18px max(48px, calc((100vw - 1180px) / 2));
  }

  .photo-first-article-page .guide-article-reading {
    padding-top: 18px;
  }

  .photo-first-article-page .guide-lead {
    padding-block: 32px 28px;
    font-size: 16px;
  }

  .photo-first-article-page .guide-toc {
    padding: 30px 34px;
  }

  .photo-first-article-page .guide-article-body {
    padding: 30px 20px 54px;
    font-size: 16px;
    line-height: 1.9;
  }

}

@media (prefers-reduced-motion: reduce) {
  .photo-first-guide-page .guide-photo-discovery-card img,
  .guide-story-card__media img {
    transition: none;
  }

  .photo-first-guide-page .guide-photo-discovery-card:hover img,
  .photo-first-guide-page .guide-photo-discovery-card:focus-visible img,
  .guide-story-card:hover .guide-story-card__media img,
  .guide-story-card:focus-visible .guide-story-card__media img {
    transform: none;
  }
}

/* guide_refinements.css */
/* Seasonal, area, taxonomy, and editorial refinements for the public guide. */

.home-seasonal-section {
  background: #fffaf2;
}

.home-seasonal-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 680px;
  margin: 0 auto 20px;
  padding: 4px;
  background: #f0e7da;
  border-radius: 999px;
}

.home-seasonal-tab {
  min-height: 44px;
  padding: 8px 12px;
  color: #596860;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.home-seasonal-tab.is-active,
.home-seasonal-tab[aria-selected="true"] {
  color: #fff;
  background: #8f3d20;
  box-shadow: 0 4px 12px rgba(111, 47, 25, .2);
}

.home-seasonal-tab:focus-visible {
  outline: 3px solid #ff964c;
  outline-offset: 2px;
}

.home-seasonal-panel[hidden] {
  display: none;
}

.home-seasonal-panel__title {
  margin: 0 0 12px;
  color: #17251f;
  font-size: 18px;
  text-align: center;
}

.home-seasonal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

/* Close the seasonal row when a season has fewer than the usual four cards. */
@media (max-width: 899px) {
  .home-seasonal-grid:has(> .home-seasonal-card:only-child) {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-seasonal-grid:has(> .home-seasonal-card:nth-child(3):last-child) > .home-seasonal-card:last-child {
    grid-column: 1 / -1;
  }

  .home-seasonal-grid:has(> .home-seasonal-card:only-child) .home-seasonal-card__image,
  .home-seasonal-grid:has(> .home-seasonal-card:nth-child(3):last-child) > .home-seasonal-card:last-child .home-seasonal-card__image {
    aspect-ratio: 2 / 1;
  }
}

.home-seasonal-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  color: #17251f;
  background: #fff;
  border: 1px solid rgba(23, 37, 31, .1);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(23, 37, 31, .07);
  transition: transform .18s ease, box-shadow .18s ease;
}

.home-seasonal-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e9eee9;
}

.home-seasonal-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.home-seasonal-card__copy {
  display: grid;
  gap: 4px;
  padding: 11px 12px 13px;
}

.home-seasonal-card__copy small {
  overflow: hidden;
  color: #728078;
  font-size: 10px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-seasonal-card__copy strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-seasonal-card:hover,
.home-seasonal-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 11px 25px rgba(23, 37, 31, .13);
}

.home-seasonal-card:hover img,
.home-seasonal-card:focus-visible img {
  transform: scale(1.04);
}

.home-seasonal-card:focus-visible {
  outline: 3px solid #ff964c;
  outline-offset: 3px;
}

.home-seasonal-more {
  margin-top: 18px;
}

/* Five cards always fill the mosaic. Ise-Shima and Higashi-Kishu are the
 * two visual anchors; the remaining three cards share the second row. */
.home-area-showcase {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.home-area-showcase__card {
  --area-color: #b6532b;
  position: relative;
  isolation: isolate;
  min-height: 190px;
  overflow: hidden;
  color: #fff;
  background: #2d4037;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(23, 37, 31, .12);
}

.home-area-showcase__card--nansei,
.home-area-showcase__card--higashikishu {
  grid-column: span 3;
  min-height: 230px;
}

.home-area-showcase__card--chuse,
.home-area-showcase__card--hokuse,
.home-area-showcase__card--iga {
  grid-column: span 2;
  min-height: 176px;
}

.home-area-showcase__card--hokuse { --area-color: #d86943; }
.home-area-showcase__card--chuse { --area-color: #7c70a2; }
.home-area-showcase__card--nansei { --area-color: #3f7fa5; }
.home-area-showcase__card--iga { --area-color: #d7a72e; }
.home-area-showcase__card--higashikishu { --area-color: #468474; }

.home-area-showcase__card > img,
.home-area-showcase__card > .guide-image-placeholder {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.home-area-showcase__shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 20, 14, .04) 20%, rgba(7, 20, 14, .88) 100%),
    linear-gradient(110deg, color-mix(in srgb, var(--area-color) 34%, transparent), transparent 58%);
}

.home-area-showcase__copy {
  position: absolute;
  right: 12px;
  bottom: 14px;
  left: 12px;
  display: grid;
  gap: 3px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .55);
}

.home-area-showcase__copy strong {
  color: #fff;
  font-size: 20px;
  line-height: 1.3;
}

.home-area-showcase__copy > span {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(255, 255, 255, .94);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-area-showcase__copy small {
  display: none;
  color: rgba(255, 255, 255, .78);
  font-size: 10px;
  line-height: 1.55;
}

.home-area-showcase__count {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 8px;
  color: #fff;
  background: rgba(12, 31, 24, .68);
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.home-area-showcase__card:hover > img,
.home-area-showcase__card:focus-visible > img {
  transform: scale(1.04);
}

.home-area-showcase__card:focus-visible {
  outline: 3px solid var(--area-color);
  outline-offset: 3px;
}

.home-area-showcase__more {
  margin-top: 18px;
}

/* Spot taxonomy groups use a compact label and chip layout. */
.spot-taxonomy-groups {
  margin: 22px 0 0;
  padding: 0;
  overflow: hidden;
  background: #fffaf2;
  border: 1px solid #ead8c8;
  border-radius: 14px;
}

.spot-taxonomy-group {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  margin: 0;
  border-bottom: 1px solid #ead8c8;
}

.spot-taxonomy-group:last-child {
  border-bottom: 0;
}

.spot-taxonomy-group dt {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 12px 10px;
  color: #17251f;
  background: #f3e6d7;
  font-size: 12px;
  font-weight: 800;
}

.spot-taxonomy-group dd {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin: 0;
  padding: 10px;
}

.spot-taxonomy-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  color: #42554c;
  background: #fff;
  border: 1px solid rgba(66, 85, 76, .2);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.spot-taxonomy-chip:hover,
.spot-taxonomy-chip:focus-visible {
  color: #8f3d20;
  border-color: #b6532b;
}

.spot-taxonomy-chip:focus-visible {
  outline: 2px solid #ff964c;
  outline-offset: 2px;
}

@media (min-width: 900px) {
  .home-seasonal-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .home-seasonal-grid:has(> .home-seasonal-card:only-child) {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-seasonal-grid:has(> .home-seasonal-card:nth-child(2):last-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-seasonal-grid:has(> .home-seasonal-card:nth-child(3):last-child) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-seasonal-grid:has(> .home-seasonal-card:only-child) .home-seasonal-card__image {
    aspect-ratio: 16 / 7;
  }

  .home-seasonal-card__copy {
    padding: 14px 15px 16px;
  }

  .home-seasonal-card__copy strong {
    font-size: 16px;
  }

  .home-area-showcase {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
  }

  .home-area-showcase__card--nansei,
  .home-area-showcase__card--higashikishu {
    grid-column: span 3;
    min-height: 330px;
  }

  .home-area-showcase__card--chuse,
  .home-area-showcase__card--hokuse,
  .home-area-showcase__card--iga {
    grid-column: span 2;
    min-height: 270px;
  }

  .home-area-showcase__copy {
    right: 20px;
    bottom: 20px;
    left: 20px;
    gap: 5px;
  }

  .home-area-showcase__copy strong {
    font-size: 26px;
  }

  .home-area-showcase__copy > span {
    font-size: 13px;
  }

  .home-area-showcase__copy small {
    display: block;
    font-size: 11px;
  }

  .home-area-showcase__count {
    top: 16px;
    right: 16px;
    padding: 6px 10px;
    font-size: 11px;
  }

  .spot-taxonomy-group {
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .spot-taxonomy-group dt {
    padding: 15px 18px;
    font-size: 13px;
  }

  .spot-taxonomy-group dd {
    gap: 8px;
    padding: 13px 16px;
  }

  .spot-taxonomy-chip {
    min-height: 34px;
    padding-inline: 12px;
    font-size: 12px;
  }
}

@media (max-width: 359px) {
  .home-area-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-area-showcase__card--nansei,
  .home-area-showcase__card--higashikishu,
  .home-area-showcase__card--iga {
    grid-column: 1 / -1;
  }

  .home-area-showcase__card--chuse,
  .home-area-showcase__card--hokuse {
    grid-column: span 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-seasonal-card,
  .home-seasonal-card__image img,
  .home-area-showcase__card > img,
  .home-seasonal-tab {
    transition: none;
  }
}

/* Borderless article cards: large photo, then headline. */
.article-card.guide-article-card,
.article-list .article-card.guide-article-card,
.guide-search-result-list .article-card.guide-article-card,
.renewed-spot-page .article-list .article-card.guide-article-card,
.home-popular-article-list .article-card.guide-article-card,
.top-latest-articles .article-card.guide-article-card {
  display: block;
  min-width: 0;
  min-height: 0;
  overflow: visible;
  color: #17251f;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none;
  transition: none;
}

.article-card.guide-article-card:hover,
.article-card.guide-article-card:focus-visible,
.guide-site-page .article-card.guide-article-card:hover,
.renewed-spot-page .article-card.guide-article-card:hover {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.article-card.guide-article-card .guide-card-image,
.article-list .article-card.guide-article-card .guide-card-image,
.guide-search-result-list .article-card.guide-article-card .guide-card-image,
.renewed-spot-page .article-list .article-card.guide-article-card .guide-card-image,
.home-popular-article-list .article-card.guide-article-card .guide-card-image,
.top-latest-articles .article-card.guide-article-card .guide-card-image {
  width: 100%;
  height: auto;
  min-height: 0;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #e7ece8;
  border-radius: 12px;
}

.article-card.guide-article-card .guide-card-image > img,
.article-card.guide-article-card .guide-card-image > .guide-image-placeholder,
.article-list .article-card.guide-article-card .guide-card-image > img,
.renewed-spot-page .article-list .article-card.guide-article-card .guide-card-image > img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  transition: transform .32s ease;
}

.article-card.guide-article-card:hover .guide-card-image > img,
.article-card.guide-article-card:focus-visible .guide-card-image > img {
  transform: scale(1.025);
}

.article-card.guide-article-card .card-copy,
.article-list .article-card.guide-article-card .card-copy,
.guide-search-result-list .article-card.guide-article-card .card-copy,
.renewed-spot-page .article-list .article-card.guide-article-card .card-copy,
.home-popular-article-list .article-card.guide-article-card .card-copy,
.top-latest-articles .article-card.guide-article-card .card-copy {
  display: block;
  padding: 10px 1px 0;
}

.article-card.guide-article-card h3,
.article-list .article-card.guide-article-card h3,
.renewed-spot-page .article-list .article-card.guide-article-card h3,
.home-popular-article-list .article-card.guide-article-card h3,
.top-latest-articles .article-card.guide-article-card h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #17251f;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.article-card.guide-article-card:focus-visible {
  outline: 3px solid #ff964c;
  outline-offset: 4px;
}

/* Listing pages keep the photo-led cards compact on phones. */
@media (max-width: 899px) {
  .photo-first-guide-page .article-list,
  .photo-first-guide-page .guide-search-result-group .guide-search-result-list,
  .photo-first-home .home-popular-article-list,
  .photo-first-home .top-latest-articles .article-list,
  .editor-articles .article-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 10px;
    border-top: 0;
  }

  .photo-first-guide-page .article-list > .article-card.guide-article-card:last-child:nth-child(odd),
  .photo-first-guide-page .guide-search-result-group .guide-search-result-list > .article-card.guide-article-card:last-child:nth-child(odd),
  .photo-first-home .home-popular-article-list > .article-card.guide-article-card:last-child:nth-child(odd),
  .photo-first-home .top-latest-articles .article-list > .article-card.guide-article-card:last-child:nth-child(odd),
  .editor-articles .article-list > .article-card.guide-article-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .photo-first-guide-page .article-list > .article-card.guide-article-card:last-child:nth-child(odd) .guide-card-image,
  .photo-first-guide-page .guide-search-result-group .guide-search-result-list > .article-card.guide-article-card:last-child:nth-child(odd) .guide-card-image,
  .photo-first-home .home-popular-article-list > .article-card.guide-article-card:last-child:nth-child(odd) .guide-card-image,
  .photo-first-home .top-latest-articles .article-list > .article-card.guide-article-card:last-child:nth-child(odd) .guide-card-image,
  .editor-articles .article-list > .article-card.guide-article-card:last-child:nth-child(odd) .guide-card-image {
    aspect-ratio: 3 / 1;
  }

  .article-list--single,
  .renewed-spot-page .spot-related-articles--single {
    grid-template-columns: minmax(0, 1fr);
  }

  .article-list--single > .article-card.guide-article-card:last-child:nth-child(odd),
  .renewed-spot-page .spot-related-articles--single > .article-card.guide-article-card:last-child:nth-child(odd) {
    grid-column: 1;
  }

  .article-list--single > .article-card.guide-article-card .guide-card-image,
  .renewed-spot-page .spot-related-articles--single > .article-card.guide-article-card .guide-card-image {
    aspect-ratio: 16 / 9;
  }
}

/* Tag titles use the same usable width as the page body. */
.photo-first-tag-page .guide-photo-page-hero__copy,
.photo-first-tag-page .guide-photo-page-hero h1 {
  width: auto;
  max-width: none;
}

.renewed-spot-page .hero--with-media .hero-excerpt {
  margin-inline: auto;
  text-align: center;
}

/* The table of contents remains one readable vertical list at every width. */
.photo-first-article-page .guide-toc ol {
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 900px) {
  .article-card.guide-article-card h3,
  .article-list .article-card.guide-article-card h3,
  .renewed-spot-page .article-list .article-card.guide-article-card h3,
  .home-popular-article-list .article-card.guide-article-card h3,
  .top-latest-articles .article-card.guide-article-card h3 {
    font-size: 17px;
    line-height: 1.55;
  }

  .article-list--single,
  .renewed-spot-page .spot-related-articles--single {
    width: min(100%, 420px);
    grid-template-columns: minmax(0, 1fr);
  }

  .article-list--single > .article-card.guide-article-card,
  .renewed-spot-page .spot-related-articles--single > .article-card.guide-article-card {
    grid-column: 1;
  }

  .guide-photo-page-hero {
    min-height: clamp(250px, 27vh, 300px);
  }

  .guide-photo-page-hero--without-media {
    min-height: 220px;
  }

  .photo-first-article-page .guide-article-hero {
    min-height: clamp(250px, 30vh, 320px);
  }

  .photo-first-home .home-intro--with-photo .home-intro__lead-layout {
    min-height: clamp(300px, 38vh, 390px);
  }

  .renewed-spot-page .hero--with-media {
    --gallery-width: min(60vw, 900px);
  }

  .renewed-spot-page .hero--with-media .hero-slides {
    aspect-ratio: 3 / 2;
  }

  .guide-page-head,
  .guide-hero {
    padding-top: 16px;
    padding-bottom: 14px;
  }

  .about-hero {
    min-height: 300px;
    padding-block: 16px;
  }

  .about-hero h1 {
    font-size: 34px;
  }

  .about-hero__lead {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.75;
  }

  .about-hero__actions {
    margin-top: 12px;
  }

  .about-hero .about-button {
    min-height: 46px;
    padding-block: 10px;
  }

  .about-hero__visual,
  .about-hero__visual > img {
    height: 240px;
  }

  .about-hero__visual {
    min-height: 240px;
  }

  .akoya-room__hero {
    min-height: 220px;
    padding-block: 12px;
  }

  .akoya-room__eyebrow {
    font-size: 13px;
  }

  .akoya-room__hero h1 {
    font-size: 30px;
  }

  .akoya-room__intro {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.65;
  }

  .akoya-room__cast {
    margin-top: 12px;
    padding-top: 8px;
  }

  .akoya-room__hero > img {
    width: min(20vw, 180px);
  }

  .editor-cover {
    aspect-ratio: 16 / 3.8;
  }
}

/* The home hero follows the spot gallery rhythm: one main photo with its neighbours in view. */
.photo-first-home .home-intro__carousel--3,
.photo-first-home .home-intro__carousel--4,
.photo-first-home .home-intro__carousel--5 {
  --home-hero-gallery-width: min(88vw, 440px);
}

.photo-first-home .home-intro__carousel--3 .home-intro__carousel-track,
.photo-first-home .home-intro__carousel--4 .home-intro__carousel-track,
.photo-first-home .home-intro__carousel--5 .home-intro__carousel-track {
  width: var(--home-hero-gallery-width);
  margin-right: auto;
  margin-left: auto;
  overflow: visible;
}

.photo-first-home .home-intro__carousel--3 .home-intro__slide,
.photo-first-home .home-intro__carousel--4 .home-intro__slide,
.photo-first-home .home-intro__carousel--5 .home-intro__slide {
  visibility: hidden;
  overflow: hidden;
  border-radius: 2px;
  transform: scale(.92);
  transition: opacity .38s ease, transform .5s cubic-bezier(.22, .61, .36, 1);
  will-change: opacity, transform;
}

.photo-first-home .home-intro__carousel--3 .home-intro__slide.is-active,
.photo-first-home .home-intro__carousel--4 .home-intro__slide.is-active,
.photo-first-home .home-intro__carousel--5 .home-intro__slide.is-active {
  z-index: 1;
  visibility: visible;
  opacity: 1;
  transform: translateX(0) scale(1);
}

.photo-first-home .home-intro__carousel--3 .home-intro__slide.is-prev,
.photo-first-home .home-intro__carousel--3 .home-intro__slide.is-next,
.photo-first-home .home-intro__carousel--4 .home-intro__slide.is-prev,
.photo-first-home .home-intro__carousel--4 .home-intro__slide.is-next,
.photo-first-home .home-intro__carousel--5 .home-intro__slide.is-prev,
.photo-first-home .home-intro__carousel--5 .home-intro__slide.is-next {
  visibility: visible;
  opacity: .42;
}

.photo-first-home .home-intro__carousel--3 .home-intro__slide.is-prev,
.photo-first-home .home-intro__carousel--4 .home-intro__slide.is-prev,
.photo-first-home .home-intro__carousel--5 .home-intro__slide.is-prev {
  transform: translateX(-96%) scale(.92);
}

.photo-first-home .home-intro__carousel--3 .home-intro__slide.is-next,
.photo-first-home .home-intro__carousel--4 .home-intro__slide.is-next,
.photo-first-home .home-intro__carousel--5 .home-intro__slide.is-next {
  transform: translateX(96%) scale(.92);
}

.photo-first-home .home-intro__carousel--3 .home-intro__slide:not(.is-active) .home-intro__photo-copy,
.photo-first-home .home-intro__carousel--4 .home-intro__slide:not(.is-active) .home-intro__photo-copy,
.photo-first-home .home-intro__carousel--5 .home-intro__slide:not(.is-active) .home-intro__photo-copy {
  opacity: 0;
}

.photo-first-home .home-intro__carousel--3 .home-intro__photo-copy,
.photo-first-home .home-intro__carousel--4 .home-intro__photo-copy,
.photo-first-home .home-intro__carousel--5 .home-intro__photo-copy {
  right: clamp(22px, 6%, 54px);
  left: clamp(22px, 6%, 54px);
}

.photo-first-home .home-intro__carousel--3 .home-intro__photo-copy strong,
.photo-first-home .home-intro__carousel--4 .home-intro__photo-copy strong,
.photo-first-home .home-intro__carousel--5 .home-intro__photo-copy strong {
  display: block;
  max-width: 100%;
  overflow: hidden;
  font-size: clamp(22px, 5.8vw, 28px);
  line-height: 1.35;
  letter-spacing: .03em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.photo-first-home .home-intro__carousel--3 .home-intro__carousel-arrow--prev,
.photo-first-home .home-intro__carousel--4 .home-intro__carousel-arrow--prev,
.photo-first-home .home-intro__carousel--5 .home-intro__carousel-arrow--prev {
  left: calc((100% - var(--home-hero-gallery-width)) / 2 + 10px);
}

.photo-first-home .home-intro__carousel--3 .home-intro__carousel-arrow--next,
.photo-first-home .home-intro__carousel--4 .home-intro__carousel-arrow--next,
.photo-first-home .home-intro__carousel--5 .home-intro__carousel-arrow--next {
  right: calc((100% - var(--home-hero-gallery-width)) / 2 + 10px);
}

.renewed-spot-page .hero--with-media .hero-slides {
  aspect-ratio: 3 / 2;
}

@media (min-width: 900px) {
  .photo-first-home .home-intro__carousel--3,
  .photo-first-home .home-intro__carousel--4,
  .photo-first-home .home-intro__carousel--5 {
    --home-hero-gallery-width: min(60vw, 900px);
  }

  .photo-first-home .home-intro__carousel--3 .home-intro__photo-copy strong,
  .photo-first-home .home-intro__carousel--4 .home-intro__photo-copy strong,
  .photo-first-home .home-intro__carousel--5 .home-intro__photo-copy strong {
    font-size: clamp(26px, 2.2vw, 34px);
  }

  .photo-first-home .home-intro__carousel--3 .home-intro__slide.is-prev,
  .photo-first-home .home-intro__carousel--4 .home-intro__slide.is-prev,
  .photo-first-home .home-intro__carousel--5 .home-intro__slide.is-prev {
    transform: translateX(-104%) scale(.92);
  }

  .photo-first-home .home-intro__carousel--3 .home-intro__slide.is-next,
  .photo-first-home .home-intro__carousel--4 .home-intro__slide.is-next,
  .photo-first-home .home-intro__carousel--5 .home-intro__slide.is-next {
    transform: translateX(104%) scale(.92);
  }
}

/* Article detail: editorial main column with a compact discovery sidebar. */
.photo-first-article-page .guide-article-layout {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  background: #fffdf8;
}

.photo-first-article-page .guide-article-main-column {
  min-width: 0;
}

.photo-first-article-page .guide-article-layout .guide-article-reading {
  max-width: none;
}

.photo-first-article-page .guide-article-support-section {
  background: transparent;
  border-top: 1px solid rgba(23, 37, 31, .12);
}

.photo-first-article-page .guide-article-support-section .guide-section-head {
  margin-bottom: 18px;
}

.guide-article-sidebar {
  display: grid;
  gap: 28px;
  margin-top: 16px;
  padding: 30px 18px 42px;
  background: #f7f2e9;
  border-top: 1px solid rgba(23, 37, 31, .1);
}

.guide-article-sidebar__section {
  min-width: 0;
}

.guide-article-sidebar__section + .guide-article-sidebar__section {
  padding-top: 27px;
  border-top: 1px solid rgba(23, 37, 31, .12);
}

.guide-article-sidebar__title {
  margin: 0 0 15px;
  padding-bottom: 10px;
  color: #17251f;
  border-bottom: 3px solid #b6532b;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.45;
}

.guide-article-sidebar__ranking-list,
.guide-article-sidebar__spot-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-article-sidebar__ranking-link {
  display: grid;
  grid-template-columns: 26px 92px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  color: #17251f;
}

.guide-article-sidebar__rank {
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #b6532b;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.guide-article-sidebar__ranking-item:first-child .guide-article-sidebar__rank {
  color: #493214;
  background: #efc75e;
}

.guide-article-sidebar__spot-link {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  color: #17251f;
}

.guide-article-sidebar__media {
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #e4ebe6;
  border-radius: 9px;
}

.guide-article-sidebar__media img,
.guide-article-sidebar__media > .guide-image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}

.guide-article-sidebar__ranking-link:hover .guide-article-sidebar__media img,
.guide-article-sidebar__ranking-link:focus-visible .guide-article-sidebar__media img,
.guide-article-sidebar__spot-link:hover .guide-article-sidebar__media img,
.guide-article-sidebar__spot-link:focus-visible .guide-article-sidebar__media img {
  transform: scale(1.035);
}

.guide-article-sidebar__item-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.guide-article-sidebar__item-copy small {
  color: #718078;
  font-size: 11px;
  font-weight: 700;
}

.guide-article-sidebar__item-title {
  display: -webkit-box;
  overflow: hidden;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.guide-article-sidebar__tag-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.guide-article-sidebar__tag-links a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 6px 11px;
  color: #42554c;
  background: #fff;
  border: 1px solid rgba(66, 85, 76, .2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.guide-article-sidebar__tag-links a:hover,
.guide-article-sidebar__tag-links a:focus-visible {
  color: #8f3d20;
  border-color: #b6532b;
}

.guide-article-sidebar a:focus-visible {
  outline: 3px solid #ff964c;
  outline-offset: 3px;
}

/* Related stories use the one-card-and-a-peek rhythm on small screens. */
@media (max-width: 899px) {
  .photo-first-article-page .guide-article-support-section--related .article-list:not(.article-list--single),
  .renewed-spot-page .visit-related-articles .spot-related-articles:not(.spot-related-articles--single) {
    display: grid;
    grid-auto-columns: minmax(250px, 84%);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding-bottom: 12px;
    scroll-snap-type: inline proximity;
    scrollbar-width: thin;
  }

  .photo-first-article-page .guide-article-support-section--related .article-card.guide-article-card,
  .renewed-spot-page .visit-related-articles .article-card.guide-article-card {
    grid-column: auto;
    scroll-snap-align: start;
  }
}

.renewed-spot-page .visit-related-articles {
  grid-column: 1 / -1;
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(23, 37, 31, .13);
}

.renewed-spot-page .visit-related-articles .section-heading--subsection {
  margin-bottom: 17px;
}

.renewed-spot-page .visit-related-articles .section-heading--subsection h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #17251f;
  font-size: 22px;
  line-height: 1.5;
}

@media (min-width: 900px) {
  .photo-first-article-page .guide-article-main-column > .guide-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .photo-first-article-page .guide-article-layout .guide-article-hero {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .photo-first-article-page .guide-article-layout .guide-article-header h1 {
    width: 100%;
    max-width: none;
    font-size: clamp(28px, 2.4vw, 34px);
    line-height: 1.42;
    text-wrap: wrap;
  }

  .photo-first-article-page .guide-article-layout .guide-article-hero__copy {
    right: 28px;
    bottom: 34px;
    left: 28px;
    width: auto;
    max-width: none;
  }

  .photo-first-article-page .guide-article-layout .guide-article-meta {
    padding: 0;
  }
}

@media (min-width: 1024px) {
  .photo-first-article-page .guide-article-layout {
    display: grid;
    width: min(calc(100% - 64px), 1180px);
    grid-template-columns: minmax(0, 1fr) 290px;
    align-items: start;
    gap: 40px;
    margin-top: 28px;
    margin-bottom: 20px;
  }

  .photo-first-article-page .guide-article-sidebar {
    position: sticky;
    top: 132px;
    gap: 30px;
    margin: 0;
    padding: 0 0 36px;
    background: transparent;
    border-top: 0;
  }

  .photo-first-article-page .guide-article-sidebar__title {
    font-size: 19px;
  }

  .photo-first-article-page .guide-article-sidebar__ranking-link {
    grid-template-columns: 24px 82px minmax(0, 1fr);
    gap: 8px;
  }

  .photo-first-article-page .guide-article-sidebar__spot-link {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 10px;
  }

  .photo-first-article-page .guide-article-sidebar__item-title {
    font-size: 13px;
  }
}

/* back_to_top.css */
.guide-back-to-top {
  position: fixed;
  right: calc(14px + env(safe-area-inset-right));
  bottom: calc(14px + env(safe-area-inset-bottom));
  z-index: 45;
  display: flex;
  width: 56px;
  height: 56px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #fff;
  background: #8f3d20;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(23, 37, 31, .24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease, background-color .2s ease;
}

.guide-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.guide-back-to-top__arrow {
  width: 11px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translateY(2px) rotate(45deg);
}

.guide-back-to-top__text {
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .04em;
}

.guide-back-to-top:hover {
  background: #703019;
}

.guide-back-to-top:focus-visible {
  outline: 3px solid #ff964c;
  outline-offset: 3px;
}

@media (min-width: 900px) {
  .guide-back-to-top {
    right: 24px;
    bottom: 24px;
    width: 62px;
    height: 62px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .guide-back-to-top {
    transition: none;
  }
}

/* article_meta_toc.css */
/* Compact editorial styling for article introductions and metadata. */
.photo-first-article-page .guide-article-intro {
  width: min(100%, 820px);
  margin-inline: auto;
  padding: 24px 18px 4px;
}

.photo-first-article-page .guide-article-intro .guide-lead {
  max-width: none;
  margin: 0;
  padding: 0;
  color: #17251f;
  background: transparent;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.95;
}

.photo-first-article-page .guide-article-intro .guide-article-meta {
  display: flex;
  max-width: none;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin: 14px 0 0;
  padding: 0;
  color: #5f685f;
  background: transparent;
  border: 0;
  font-size: 11px;
}

.photo-first-article-page .guide-article-meta__item {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.photo-first-article-page .guide-article-meta__item + .guide-article-meta__item {
  border: 0;
}

.photo-first-article-page .guide-article-meta__item dt,
.photo-first-article-page .guide-article-meta__item dd {
  margin: 0;
}

.photo-first-article-page .guide-article-meta__item dt {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  color: #767d76;
  font-weight: 600;
  white-space: nowrap;
}

.photo-first-article-page .guide-article-meta__item dd {
  min-width: 0;
  color: #17251f;
  font-size: 12px;
  font-weight: 600;
}

.photo-first-article-page .guide-article-meta__item .guide-icon {
  width: 14px;
  height: 14px;
  color: #b6532b;
  stroke-width: 1.9;
}

.photo-first-article-page .guide-article-meta__item--author dd {
  overflow: hidden;
}

.photo-first-article-page .guide-article-intro .guide-article-author {
  max-width: 100%;
  gap: 6px;
  color: #17251f;
  font-size: 12px;
}

.photo-first-article-page .guide-article-intro .guide-article-author img {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border: 0;
  box-shadow: none;
}

.photo-first-article-page .guide-article-intro + .guide-toc {
  margin-top: 18px;
}

/* Ten or more headings keep seven entries visible until the reader expands the list. */
.photo-first-article-page .guide-toc--collapsible:not(.is-expanded) .guide-toc-item:nth-child(n + 8) {
  display: none;
}

.photo-first-article-page .guide-toc-toggle {
  display: flex;
  width: min(100%, 240px);
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 18px auto 0;
  padding: 9px 22px;
  color: #8f3d20;
  background: #fff;
  border: 1px solid rgba(143, 61, 32, .42);
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.photo-first-article-page .guide-toc-toggle:hover {
  color: #fff;
  background: #8f3d20;
  border-color: #8f3d20;
}

.photo-first-article-page .guide-toc-toggle:focus-visible {
  outline: 3px solid rgba(255, 150, 76, .48);
  outline-offset: 3px;
}

.photo-first-article-page .guide-toc-toggle__arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .2s ease;
}

.photo-first-article-page .guide-toc--collapsible.is-expanded .guide-toc-toggle__arrow {
  transform: translateY(2px) rotate(225deg);
}

@media (min-width: 700px) {
  .photo-first-article-page .guide-article-intro {
    padding: 28px 20px 6px;
  }

  .photo-first-article-page .guide-article-intro .guide-lead {
    font-size: 16px;
  }

  .photo-first-article-page .guide-article-intro .guide-article-meta {
    gap: 8px 16px;
    padding: 0;
  }

  .photo-first-article-page .guide-article-meta__item {
    gap: 6px;
    padding: 0;
  }

  .photo-first-article-page .guide-article-meta__item + .guide-article-meta__item {
    border: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .photo-first-article-page .guide-toc-toggle,
  .photo-first-article-page .guide-toc-toggle__arrow {
    transition: none;
  }
}
