    :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: hidden;
      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 {
      margin-bottom: 3px;
      color: var(--muted);
      font-size: 12px;
    }

    .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));
      padding: 8px 14px;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 14px;
      box-shadow: 0 12px 28px rgba(23, 37, 31, .2);
    }

    .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: 12px 14px;
      color: var(--muted);
      background: var(--surface);
      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(26px, 7.4vw, 32px);
      letter-spacing: .02em;
    }

    .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: #3e765e;
      background: #e7f1eb;
      border-color: #cadfd2;
    }

    .spot-classification-chip--season {
      color: #3f718f;
      background: #e8f2f7;
      border-color: #c9dfe9;
    }

    .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: 76px;
      gap: 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: 20px;
      color: var(--muted);
      font-size: 15px;
    }

    .quick-facts {
      display: grid;
      gap: 8px;
      margin: 0 0 18px;
    }

    .quick-facts div {
      display: grid;
      grid-template-columns: 88px minmax(0, 1fr);
      align-items: center;
      gap: 10px;
      min-width: 0;
      padding: 12px 13px;
      background: var(--surface-soft);
      border: 1px solid var(--line);
      border-radius: 12px;
    }

    .quick-facts dt {
      display: flex;
      align-items: center;
      gap: 6px;
      margin: 0;
      color: var(--muted);
      font-size: 12px;
    }

    .quick-facts dd {
      margin: 0;
      color: var(--ink);
      font-size: 14px;
      font-weight: 700;
      line-height: 1.55;
      white-space: pre-line;
    }

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

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

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

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

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

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

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

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

    .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(--muted);
      font-size: 15px;
    }

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

    .story {
      scroll-margin-top: 76px;
      padding-bottom: 28px;
      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(--muted);
      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: 24px;
    }

    .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: 12px;
      border-radius: 14px;
    }

    .map-frame {
      overflow: hidden;
      margin-bottom: 14px;
      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);
    }

    .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 {
      margin: 0;
      font-size: 14px;
      font-weight: 600;
      line-height: 1.7;
      white-space: pre-line;
    }

    .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, #b6532b, #3f7fa5);
    }

    .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 {
      margin: 0;
    }

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

    .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-result-view-switch-wrap {
      padding: 16px 14px;
      background: var(--surface);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .guide-result-view-switch-wrap .guide-search-view-switch {
      margin: 0;
    }

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

    .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;
      gap: 0;
      margin-top: 20px;
    }

    .footer-links a {
      padding: 10px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .14);
      font-size: 14px;
    }

    .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) {
      .brand-copy small {
        display: none;
      }

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

      .quick-facts dd {
        font-size: 12px;
      }

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