/* guesthouse TANDEM shared styles */
:root {
  --bg: #f1efe8;
  --paper: #f3eee3;
  --surface: #f8f5ee;
  --surface-soft: #efece3;
  --ink: #242c27;
  --muted: rgba(36, 44, 39, 0.70);
  --line: rgba(36, 44, 39, 0.10);
  --accent: #5f7c60;
  --accent-deep: #4b6850;
  --accent-soft: #c9b89f;
  --sage: #6b8368;
  --shadow: 0 16px 36px rgba(36, 44, 39, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

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

body.tandem-site {
  background: var(--paper);
}

body.tandem-site main,
body.tandem-site .site-footer {
  margin-left: 0;
}

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

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

a:hover {
  color: var(--accent-soft);
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(245, 242, 234, 0.88);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header__panel {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-header__controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.brand__logo {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  object-fit: cover;
  flex: none;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brand__name {
  font-family: "Noto Sans JP", "Hiragino Sans", "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.03em;
}

.brand__note {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav a {
  color: var(--ink);
}

.nav a.is-button {
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--accent-deep);
  color: #fdfbf7;
  box-shadow: 0 10px 22px rgba(75, 104, 80, 0.16);
}

.nav a.is-button:hover {
  color: #fdfbf7;
  transform: translateY(-1px);
}

.nav a.is-current:not(.is-button) {
  color: var(--accent-deep);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.nav a.is-button.is-current {
  box-shadow: 0 0 0 2px rgba(217, 160, 91, 0.42), 0 10px 22px rgba(75, 104, 80, 0.16);
}

.nav-toggle {
  display: none;
}

.lang-switcher {
  position: relative;
  margin: 0;
}

.lang-switcher > summary {
  list-style: none;
}

.lang-switcher > summary::-webkit-details-marker {
  display: none;
}

.lang-switcher__summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 11px 0 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(248, 245, 238, 0.94);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(36, 44, 39, 0.06);
}

.lang-switcher__summary:hover {
  border-color: rgba(95, 124, 96, 0.30);
}

.lang-switcher__summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.lang-switcher__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.lang-switcher__code {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.lang-switcher__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  display: grid;
  gap: 6px;
  min-width: 112px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(248, 245, 238, 0.98);
  box-shadow: 0 16px 30px rgba(36, 44, 39, 0.10);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 10;
}

.lang-switcher[open] .lang-switcher__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-switcher__item {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: rgba(248, 245, 238, 0.8);
}

.lang-switcher__item.is-active {
  background: var(--accent-deep);
  color: #fdfbf7;
  border-color: var(--accent-deep);
}

.lang-switcher__item:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.95) brightness(0.88);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 62% 58% at 50% 50%, rgba(20, 26, 20, 0.40), transparent 72%),
    linear-gradient(180deg, rgba(36, 44, 39, 0.10), rgba(36, 44, 39, 0.06) 44%, rgba(36, 44, 39, 0.42)),
    linear-gradient(90deg, rgba(95, 124, 96, 0.12), transparent 26%, transparent 74%, rgba(75, 104, 80, 0.14));
}

.hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin: 0;
  text-align: center;
  color: #fffaf2;
  padding: 0;
  transform: translate(-50%, -50%);
  display: grid;
  gap: 0;
  place-items: center;
  justify-items: center;
}

html.js-motion [data-hero-reveal] {
  opacity: 0;
  transform: translateY(22px);
  will-change: opacity, transform;
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--hero-reveal-delay, 0s);
}

html.js-motion [data-hero-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #d9a05b;
}

.hero h1,
.section h2,
.page h1,
.page h2 {
  font-family: "Noto Sans JP", "Hiragino Sans", "Noto Sans", sans-serif;
  font-weight: 700;
  text-wrap: balance;
}

.hero h1 {
  margin: 0;
  /* Fixed px cap instead of "ch": the ch unit is based on the width of the
     "0" glyph, which is far narrower than a full-width Japanese character
     (measured ~22px vs ~38px at this font size). Using ch here made the
     heading wrap after only 4-5 CJK characters (or 1-2 Latin words) instead
     of the intended ~2-line break already encoded by the <br> in each
     translation, and on wide screens it let long translations (en/fr/de)
     overflow past the hero content box. 640px comfortably fits the longest
     translated line without overflowing, and still shrinks to fit narrower
     screens via the parent's own width. */
  max-width: 640px;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.38;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 20px rgba(15, 20, 15, 0.38), 0 1px 4px rgba(15, 20, 15, 0.32);
}

.hero p {
  width: min(520px, 100%);
  margin: 18px auto 0;
  font-size: 15px;
  line-height: 1.92;
  color: rgba(253, 251, 247, 0.92);
  text-align: center;
  text-shadow: 0 1px 12px rgba(15, 20, 15, 0.32);
}

.hero .actions {
  margin-top: 22px;
}

html.js-motion .hero .actions[data-hero-reveal] .button {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--hero-reveal-delay, 0s) + 0.08s);
}

html.js-motion .hero .actions[data-hero-reveal].is-visible .button {
  opacity: 1;
  transform: translateY(0);
}

html.js-motion .hero .actions[data-hero-reveal].is-visible .button:nth-child(2) {
  transition-delay: calc(var(--hero-reveal-delay, 0s) + 0.18s);
}

@media (prefers-reduced-motion: reduce) {
  [data-hero-reveal],
  .hero .actions[data-hero-reveal] .button {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.section {
  padding: 120px 0 0;
}

.section--forest {
  background: linear-gradient(180deg, #5f7c60 0%, #577257 100%);
  color: #f7f4ed;
  padding: 108px 0;
}

.section--forest .section__label,
.section--forest .lead,
.section--forest .card__meta,
.section--forest .card__text,
.section--forest .note,
.section--forest li {
  color: rgba(247, 244, 237, 0.82);
}

.section--forest .section h2,
.section--forest .card__title {
  color: #f7f4ed;
}

.section--forest .card {
  background: rgba(42, 54, 43, 0.10);
  border-color: rgba(247, 244, 237, 0.12);
  box-shadow: none;
}

.section--forest .pill {
  background: rgba(247, 244, 237, 0.12);
  color: #f7f4ed;
}

.section--forest .card__text,
.section--forest ul {
  color: rgba(247, 244, 237, 0.82);
}

.section--forest#concept {
  background: var(--paper);
  color: var(--ink);
}

.section--forest#concept .section__label,
.section--forest#concept .lead,
.section--forest#concept .card__meta,
.section--forest#concept .card__text,
.section--forest#concept .note,
.section--forest#concept li {
  color: var(--muted);
}

.section--forest#concept .section h2,
.section--forest#concept .card__title {
  color: var(--ink);
}

.section--forest#concept .card {
  background: rgba(255, 251, 244, 0.92);
  border-color: rgba(36, 44, 39, 0.08);
  box-shadow: 0 14px 30px rgba(36, 44, 39, 0.06);
}

.section--forest#concept .card__text,
.section--forest#concept ul {
  color: var(--muted);
}

/* Default aspect ratios for the concept photo pair, so the two cards line up
   at every viewport width (previously these were only set inside the
   min-width:1081px block, leaving the 761-1080px range unconstrained). */
.section--forest#concept .grid.cols-2 > .card:first-child img {
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.section--forest#concept .grid.cols-2 > .card:last-child img {
  aspect-ratio: 1 / 0.95;
  object-fit: cover;
}

.section--sand {
  background: linear-gradient(180deg, #f3efe6 0%, #f0ece2 100%);
  color: var(--ink);
  padding: 108px 0;
}

.section--sand#access .grid {
  align-items: start;
}

.section--sand#access .grid > .card {
  height: auto;
}

.section__heading {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
  max-width: 720px;
}

.section__label {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sage);
}

.section h2 {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.55;
}

.lead {
  margin: 0;
  max-width: 700px;
  color: var(--muted);
  font-size: 15px;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid.cols-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid.cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(36, 44, 39, 0.07);
  transform-origin: center bottom;
}

/* Default aspect ratio for room-card photos so rows stay aligned at every
   viewport width, including the 761-1080px range between the mobile and
   desktop breakpoints below (where this previously had no ratio at all). */
.section--forest.section--rooms .grid.cols-3 .card img {
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
}

.section__heading,
.card,
.tour-card,
.page__header,
.prose > *,
.footer-top > *,
.footer-links .footer-nav,
.footer-bottom > * {
  will-change: transform, opacity, filter;
}

.is-inview {
  will-change: auto;
}

.card__body {
  padding: 22px 22px 24px;
}

.card__title {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Sans", "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
}

.card__meta {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
}

.card__text {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.85;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(95, 124, 96, 0.12);
  color: var(--sage);
  font-size: 12px;
  font-weight: 700;
}

.section--booking {
  padding-bottom: 100px;
}

.ride-strip {
  padding: 24px 0 0;
  background: var(--paper);
}

.ride-strip__track {
  position: relative;
  height: 122px;
  overflow: hidden;
  background: var(--paper);
  border-bottom: 0;
  box-shadow: none;
}

.ride-strip__track::before {
  content: none;
}

.ride-strip__track::after {
  content: none;
}

.ride-strip__bike {
  position: absolute;
  bottom: 18px;
  left: 0;
  width: 176px;
  transform: translateX(-220px);
  will-change: transform;
}

.ride-strip__bike.is-riding {
  animation: tandemBikeRide 7.5s ease-in-out forwards;
}

.ride-strip__wheel {
  transform-origin: center center;
}

.ride-strip__bike.is-riding .ride-strip__wheel {
  animation: tandemWheelSpin 7.5s linear forwards;
}

.ride-strip__label {
  position: absolute;
  right: 0;
  bottom: 34px;
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(176, 150, 118, 0.92);
}

@keyframes tandemBikeRide {
  0% { transform: translateX(-220px); }
  18% { transform: translateX(32px); }
  78% { transform: translateX(calc(100vw - 232px)); }
  100% { transform: translateX(calc(100vw - 120px)); }
}

@keyframes tandemWheelSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(1080deg); }
}

.booking-frame {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(36, 44, 39, 0.08);
  background: rgba(248, 245, 238, 0.96);
}

.site-footer {
  margin-top: 0;
  background: linear-gradient(180deg, #2f3b31 0%, #253027 100%);
  color: rgba(253, 251, 247, 0.84);
}

.site-footer a {
  color: rgba(253, 251, 247, 0.92);
}

.site-footer__inner {
  padding: 56px 0 28px;
  display: grid;
  gap: 36px;
  align-items: start;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.3fr);
  gap: 40px;
  align-items: start;
}

.footer-brand {
  max-width: 360px;
  text-align: left;
  margin-right: 0;
}

.footer-brand strong {
  display: inline-block;
  font-family: "Noto Sans JP", "Hiragino Sans", "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: #fdfbf7;
  margin-bottom: 14px;
}

.footer-brand__identity {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fdfbf7;
}

.footer-brand__identity:hover {
  color: #fdfbf7;
}

.footer-brand__identity img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
}

.footer-brand__copy,
.footer-brand__address {
  margin: 0;
  color: rgba(253, 251, 247, 0.74);
  line-height: 1.85;
}

.footer-brand__address {
  margin-top: 8px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.footer-nav {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.footer-nav__label {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #d9a05b;
}

.footer-nav a {
  line-height: 1.7;
}

.footer-nav a.is-current {
  color: #d9a05b;
  font-weight: 800;
}

.footer-nav span {
  line-height: 1.7;
  color: rgba(253, 251, 247, 0.78);
}

.footer-access {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.footer-map {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(253, 251, 247, 0.1);
  background: rgba(253, 251, 247, 0.04);
}

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

.footer-access__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: rgba(253, 251, 247, 0.78);
  font-size: 14px;
  line-height: 1.7;
}

.footer-access__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(253, 251, 247, 0.06);
  border: 1px solid rgba(253, 251, 247, 0.08);
}

.footer-note {
  color: rgba(253, 251, 247, 0.62);
  line-height: 1.8;
}

.footer-bottom {
  padding: 18px 0 40px;
  border-top: 1px solid rgba(253, 251, 247, 0.10);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(253, 251, 247, 0.56);
}

.footer-credit-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.tour-highlights {
  padding: 84px 0 88px;
  background: var(--paper);
  color: var(--ink);
}

.tour-highlights__intro {
  max-width: 760px;
  margin-bottom: 36px;
}

.tour-highlights__intro h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.tour-highlights__intro .lead {
  margin-top: 18px;
  color: #657167;
  max-width: 680px;
}

.tour-highlights__keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.tour-highlights__keywords li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.9);
  border: 1px solid rgba(91, 116, 96, 0.14);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #556458;
}

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

.tour-card {
  height: 100%;
  border-radius: 26px;
  background: rgba(255, 252, 247, 0.82);
  border: 1px solid rgba(91, 116, 96, 0.12);
  box-shadow: 0 18px 38px rgba(54, 62, 54, 0.08);
  overflow: hidden;
}

.tour-card__link {
  display: block;
  height: 100%;
}

.tour-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transform-origin: center center;
  transition: transform 0.45s ease, filter 0.25s ease;
}

.hero__media picture,
.card picture,
.tour-card picture {
  display: block;
}

.tour-card__body {
  padding: 22px 22px 24px;
}

.tour-card__kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7b8f79;
}

.tour-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.2;
  color: #26302a;
}

.tour-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: #5f6c61;
}

.tour-card:hover img,
.tour-card:focus-within img {
  transform: scale(1.03);
  filter: saturate(1.04);
}

.access-summary__intro h2,
.stay-facts__intro h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.access-summary__intro .lead,
.stay-facts__intro p {
  margin: 0;
  color: #667367;
}

.access-summary {
  padding: 0 0 84px;
  background: #f7f2e8;
}

.access-summary__shell {
  display: grid;
  gap: 22px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(91, 116, 96, 0.12);
  background: rgba(255, 252, 247, 0.76);
  box-shadow: 0 18px 38px rgba(54, 62, 54, 0.05);
}

.access-summary__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.access-summary__item {
  padding: 18px 18px 20px;
  border-radius: 22px;
  background: rgba(241, 239, 232, 0.95);
  border: 1px solid rgba(91, 116, 96, 0.10);
}

.access-summary__item dt {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6d816c;
}

.access-summary__item dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: #445246;
}

.travel-faq {
  padding: 76px 0 96px;
  background: #f7f2e8;
  color: var(--ink);
}

.travel-faq__intro {
  max-width: 760px;
  margin-bottom: 30px;
}

.travel-faq__intro h2 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.travel-faq__intro .lead {
  margin-top: 16px;
  color: #667367;
  max-width: 640px;
}

.travel-faq__list {
  display: grid;
  gap: 14px;
}

.stay-facts {
  display: grid;
  gap: 18px;
  margin: 0 0 26px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 252, 247, 0.82);
  border: 1px solid rgba(91, 116, 96, 0.12);
  box-shadow: 0 16px 34px rgba(54, 62, 54, 0.05);
}

.stay-facts__intro {
  display: grid;
  gap: 10px;
}

.stay-facts__intro h3 {
  font-size: clamp(24px, 2.4vw, 34px);
}

.stay-facts__table {
  display: grid;
}

.stay-facts__row {
  display: grid;
  grid-template-columns: minmax(150px, 220px) 1fr;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(91, 116, 96, 0.12);
}

.stay-facts__row:first-child {
  border-top: 0;
  padding-top: 0;
}

.stay-facts__label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #6d816c;
}

.stay-facts__value {
  font-size: 14px;
  line-height: 1.9;
  color: #445246;
}

.travel-faq__item {
  border: 1px solid rgba(91, 116, 96, 0.14);
  border-radius: 22px;
  background: rgba(255, 252, 247, 0.88);
  box-shadow: 0 18px 38px rgba(54, 62, 54, 0.06);
  overflow: hidden;
}

.travel-faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #253029;
}

.travel-faq__item summary::-webkit-details-marker {
  display: none;
}

.travel-faq__item p {
  margin: 0;
  padding: 0 24px 22px;
  font-size: 14px;
  line-height: 1.9;
  color: #5f6c61;
}

@media (min-width: 1081px) {
  body.tandem-site main,
  body.tandem-site .site-footer {
    margin-left: 0;
  }

  .site-header {
    position: sticky;
    top: 0;
    left: auto;
    width: auto;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(245, 242, 234, 0.88);
  }

  .site-header__inner {
    min-height: 72px;
    padding: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }

  .brand {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .brand__logo {
    width: 42px;
    height: 42px;
  }

  .brand__name {
    font-size: 16px;
    line-height: 1.2;
  }

  .brand__note {
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    font-size: 11px;
    width: auto;
    padding: 0;
  }

  .nav a {
    width: auto;
    padding: 0;
  }

  .nav a.is-button {
    width: auto;
    margin-top: 0;
    justify-content: center;
    padding: 9px 14px;
  }

  .lang-switcher {
    justify-self: auto;
  }

  .lang-switcher__summary {
    width: auto;
    justify-content: center;
  }

  .lang-switcher__menu {
    right: 0;
    left: auto;
    min-width: 112px;
  }

  .hero {
    min-height: 100vh;
    padding: 0;
    border-bottom: 1px solid var(--line);
    margin: 0;
  }

  .hero__media {
    inset: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
  }

  .hero__content {
    width: min(760px, calc(100% - 64px));
    text-align: center;
    padding: 0;
    margin-left: 0;
    display: grid;
    justify-items: center;
    align-content: center;
  }

  .hero p {
    width: min(560px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .hero .actions {
    justify-content: center !important;
  }

  .section {
    padding: 128px 0 0;
  }

  .section--forest,
  .section--sand {
    padding: 116px 0;
  }

  .section--forest .grid.cols-2 {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }

  .section--forest#concept .grid.cols-2 > .card:first-child {
    border-radius: 34px;
    overflow: hidden;
    transform: translateY(8px);
  }

  .section--forest#concept .grid.cols-2 > .card:last-child {
    transform: translateY(58px);
  }

  .section--forest#concept .grid.cols-2 > .card:first-child .card__body {
    padding: 18px 22px 24px;
  }

  .section--forest#concept .grid.cols-2 > .card:first-child img {
    aspect-ratio: 1.18 / 1;
    object-fit: cover;
  }

  .section--forest#concept .grid.cols-2 > .card:last-child img {
    aspect-ratio: 1 / 0.95;
    object-fit: cover;
  }

  .section--forest#concept .grid.cols-2 > .card:last-child .card__body {
    padding-top: 30px;
  }

  .section--forest.section--rooms .grid.cols-3 > .card {
    min-height: 100%;
    transform: none;
    margin-top: 0;
  }

  .section--forest.section--rooms .grid.cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .tour-highlights__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }

  .section--forest.section--rooms .grid.cols-3 .card img {
    aspect-ratio: 1 / 0.82;
    object-fit: cover;
  }

  .section--forest.section--rooms .grid.cols-3 .card__body {
    min-height: 250px;
  }

  .section__heading,
  .page__header,
  .prose,
  .booking-frame,
  .section .container {
    width: min(1180px, calc(100% - 64px));
  }
}

.page {
  padding: 48px 0 0;
}

.section--forest .actions .button {
  background: rgba(247, 244, 237, 0.92);
  color: var(--accent-deep);
  box-shadow: none;
}

.section--forest .actions .button--soft {
  background: rgba(247, 244, 237, 0.16);
  color: #f7f4ed;
  border: 1px solid rgba(247, 244, 237, 0.18);
}

.section--sand .actions .button {
  background: var(--accent-deep);
  color: #fdfbf7;
}

.section--sand .actions .button--soft {
  background: rgba(95, 124, 96, 0.12);
  color: var(--ink);
}

.hero .actions .button {
  background: rgba(247, 244, 237, 0.94);
  color: var(--accent-deep);
  box-shadow: none;
}

.hero .actions .button--soft {
  background: rgba(36, 44, 39, 0.14);
  color: #fdfbf7;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.section--forest .lead,
.section--sand .lead {
  max-width: 640px;
}

.page__header {
  max-width: 720px;
  margin-bottom: 32px;
  overflow-wrap: break-word;
  word-break: normal;
}

.page__intro {
  margin: 14px 0 0;
  color: var(--muted);
  max-width: 680px;
  overflow-wrap: break-word;
  word-break: normal;
  text-wrap: pretty;
}

.prose {
  max-width: 840px;
  overflow-wrap: break-word;
  word-break: normal;
}

.prose h2 {
  margin-top: 38px;
  font-family: "Noto Sans JP", "Hiragino Sans", "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.55;
  overflow-wrap: break-word;
  word-break: normal;
}

.prose p,
.prose li {
  color: var(--muted);
  line-height: 1.95;
  overflow-wrap: break-word;
  word-break: normal;
}

.prose ul {
  padding-left: 20px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  table-layout: fixed;
}

.table th,
.table td {
  border-bottom: 1px solid var(--line);
  padding: 16px 18px;
  text-align: left;
  vertical-align: middle;
  font-size: 15px;
  line-height: 1.6;
}

.table th {
  width: 34%;
  background: rgba(110, 126, 101, 0.08);
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

.table td {
  font-weight: 500;
}

.note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fdfbf7;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(92, 64, 51, 0.16);
}

.button--soft {
  background: rgba(110, 126, 101, 0.12);
  color: var(--ink);
  box-shadow: none;
}

.mobile-reserve-rail {
  display: none;
}

@media (max-width: 760px) {
  body.tandem-site {
    padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
  }

  .container {
    width: min(1120px, calc(100% - 28px));
  }

  .site-header__inner {
    min-height: auto;
    padding: 12px 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px 10px;
    align-items: center;
    justify-content: unset;
  }

  .site-header__panel {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 14px 0 4px;
  }

  .site-header.is-menu-open .site-header__panel {
    display: flex;
  }

  .site-header__controls {
    justify-self: end;
    margin-left: 0;
  }

  .brand {
    gap: 8px;
    min-width: 0;
  }

  .brand__logo {
    width: 38px;
    height: 38px;
  }

  .brand__name {
    font-size: 14px;
    letter-spacing: 0.01em;
  }

  .brand__note {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(253, 251, 247, 0.92);
    color: var(--ink);
    font: inherit;
    cursor: pointer;
  }

  .nav-toggle__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .nav-toggle__bars {
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
  }

  .nav-toggle__bars span {
    width: 16px;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.24s ease, opacity 0.24s ease;
  }

  .site-header.is-menu-open .nav-toggle__bars span:nth-child(1) {
    transform: translateY(4.5px) rotate(45deg);
  }

  .site-header.is-menu-open .nav-toggle__bars span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .nav-toggle__bars span:nth-child(3) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .lang-switcher {
    align-self: center;
  }

  .lang-switcher__summary {
    min-height: 34px;
    padding: 0 10px 0 8px;
  }

  body.tandem-site main,
  body.tandem-site .site-footer {
    margin-left: 0;
  }

  .site-header {
    position: sticky;
    width: auto;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .nav {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    flex-direction: column;
    flex-wrap: nowrap;
    overflow: visible;
    padding-bottom: 0;
  }

  .nav a {
    font-size: 12px;
    white-space: normal;
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(75, 104, 80, 0.08);
  }

  .nav a.is-button {
    justify-content: center;
    padding: 12px 16px;
  }

  .hero {
    min-height: 72svh;
  }

  .hero__content {
    width: calc(100% - 36px);
    max-width: 100%;
    gap: 0;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 10px;
    letter-spacing: 0.22em;
  }

  .hero h1 {
    /* max-width intentionally left at the 640px base value (see base .hero
       h1 rule) — on mobile the parent already constrains width, so no
       narrower override is needed here. */
    font-size: clamp(30px, 10vw, 44px);
    line-height: 1.28;
  }

  .hero p {
    width: min(100%, 320px);
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.82;
  }

  .hero .actions {
    width: 100%;
    margin-top: 16px;
    display: grid;
    gap: 10px;
  }

  .hero .actions .button,
  .hero .actions .button--soft {
    width: 100%;
  }

  .hero .actions .button--soft {
    display: none;
  }

  .mobile-reserve-rail {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    z-index: 90;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 24px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    box-shadow: 0 18px 34px rgba(75, 104, 80, 0.3);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-decoration: none;
  }

  .section {
    padding-top: 56px;
  }

  .section--forest,
  .section--sand {
    padding: 56px 0;
  }

  .section__heading,
  .page__header,
  .prose,
  .booking-frame,
  .section .container {
    width: min(100%, calc(100% - 28px));
  }

  .section__heading {
    margin-bottom: 26px;
  }

  .section h2,
  .page h1,
  .page h2 {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.28;
  }

  .page__header h1 {
    max-width: 100%;
    text-wrap: balance;
  }

  .page__intro {
    line-height: 1.82;
  }

  .lead {
    font-size: 14px;
    line-height: 1.8;
  }

  .grid {
    gap: 18px;
  }

  .grid.cols-2,
  .grid.cols-3,
  .section--forest.section--rooms .grid.cols-3 {
    grid-template-columns: 1fr;
  }

  .card {
    border-radius: 24px;
  }

  .card__body {
    padding: 18px 18px 20px;
  }

  .section--forest.section--rooms .grid.cols-3 .card__body {
    min-height: 0;
  }

  .section--forest.section--rooms .grid.cols-3 .card img,
  .tour-card img {
    aspect-ratio: 16 / 10;
  }

  .card__title {
    font-size: 17px;
  }

  .card__text,
  .section--forest ul {
    font-size: 13px;
    line-height: 1.8;
  }

  .ride-strip__track {
    height: 56px;
  }

  .ride-strip__bike {
    width: 132px;
    left: 18px;
    bottom: 6px;
  }

  .site-footer__inner,
  .footer-bottom {
    align-items: flex-start;
  }

  .site-footer__inner {
    gap: 28px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand strong {
    font-size: 18px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-nav {
    gap: 10px;
  }

  .footer-map iframe {
    height: 220px;
  }

  .footer-access__meta {
    display: grid;
    gap: 6px;
    font-size: 13px;
  }

  .footer-access__meta span {
    width: 100%;
    justify-content: flex-start;
  }

  .tour-highlights {
    padding: 56px 0;
  }

  .tour-highlights__intro {
    margin-bottom: 24px;
  }

  .tour-highlights__intro h2 {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.22;
  }

  .tour-highlights__intro .lead {
    margin-top: 14px;
  }

  .tour-highlights__keywords {
    gap: 8px;
    margin-top: 18px;
  }

  .tour-highlights__keywords li {
    width: 100%;
    padding: 9px 12px;
    font-size: 12px;
  }

  .tour-highlights__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tour-card {
    min-height: 0;
    border-radius: 24px;
  }

  .tour-card__body {
    padding: 18px 18px 20px;
  }

  .tour-card h3 {
    font-size: 20px;
  }

  .tour-card p {
    font-size: 13px;
    line-height: 1.8;
  }

  .access-summary__list {
    grid-template-columns: 1fr;
  }

  .access-summary__shell,
  .stay-facts {
    padding: 20px;
    border-radius: 24px;
  }

  .access-summary__intro h2,
  .stay-facts__intro h3 {
    font-size: 28px;
  }

  .travel-faq {
    padding: 64px 0 80px;
  }

  .travel-faq__intro h2 {
    font-size: 30px;
  }

  .travel-faq__item summary {
    padding: 18px 18px 16px;
    font-size: 16px;
  }

  .travel-faq__item p {
    padding: 0 18px 18px;
    font-size: 13px;
  }

  .stay-facts__row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-bottom {
    padding: 16px 0 28px;
    flex-direction: column;
    gap: 6px;
  }
}
