/* 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;
    }

    .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-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;
      border-bottom: 1px solid rgba(169, 82, 43, .22);
    }

    .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;
    }

    .visit-fact-group h3 {
      margin: 0 0 8px;
      color: var(--orange);
      font-size: 17px;
    }

    .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;
}

.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: 24px;
  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-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 .hero-copy h1 { order: 1; margin-top: 18px; margin-bottom: 7px; }
.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) {
  .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;
  }

  .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: 34px;
  }

  .renewed-spot-page .hero--with-media .hero-copy h1,
  .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: 10px;
    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;
  }
}

/* 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 .visit-fact-group {
    padding: 15px 17px 10px;
    background: rgba(255, 253, 248, .72);
    border: 1px solid var(--line);
    border-radius: 16px;
  }

  #visit-info .visit-fact-group h3 {
    margin-bottom: 6px;
    font-size: 17px;
  }

  #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;
  }
}

/* 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-header h1 {
    max-width: none;
    font-size: clamp(28px, 2.4vw, 34px);
    line-height: 1.42;
    text-wrap: balance;
  }

  .photo-first-article-page .guide-article-layout .guide-article-hero__copy {
    right: 28px;
    bottom: 34px;
    left: 28px;
  }

  .photo-first-article-page .guide-article-layout .guide-article-meta {
    padding: 17px 20px;
  }
}

@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;
  }
}
