:root {
  --color-primary: #4a90e2;
  --color-secondary: #f4ecd8;
  --color-accent: #e26d5c;
  --color-text: #333333;
  --color-bg: #fafafa;
  --color-deep: #24475f;
  --color-ink: #123f64;
  --color-green: #5f8f57;
  --color-brown: #8a6a45;
  --color-paper: #fff9ec;
  --color-paper-edge: #e2c897;
  --color-wood-dark: #8c603b;
  --color-white: #ffffff;
  --color-sand: #f4ecd8;
  --color-muted: #526879;
  --font-en: "Montserrat", system-ui, sans-serif;
  --font-jp: "Noto Sans JP", "Zen Kaku Gothic New", system-ui, sans-serif;
  --font-soft: "Zen Maru Gothic", var(--font-jp);
  --font-display: var(--font-soft);
  --font-body: var(--font-jp);
  --font-number: "Montserrat", "Noto Sans JP", system-ui, sans-serif;
  --type-page-title: clamp(1.85rem, 1.48rem + 1.12vw, 2.5rem);
  --type-section-title: clamp(1.55rem, 1.34rem + 0.66vw, 2rem);
  --type-lead: 1rem;
  --type-card-title: clamp(1.2rem, 1.12rem + 0.25vw, 1.3rem);
  --type-body: 0.95rem;
  --type-note: 0.88rem;
  --type-price: clamp(1.65rem, 1.5rem + 0.48vw, 1.88rem);
  --texture-wood: url("../img/texture-wood-board-v1.jpg");
  --texture-paper: url("../img/texture-paper-washi-v1.jpg");
  --shadow: 0 18px 45px rgba(31, 48, 64, 0.14);
  --shadow-soft: 0 14px 34px rgba(31, 48, 64, 0.09);
  --radius: 8px;
  --container: min(1120px, calc(100% - 40px));
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-jp);
  line-height: 1.8;
}

body.is-menu-open {
  overflow: hidden;
}

body.is-lightbox-open {
  overflow: hidden;
}

body.hero-compare-page {
  background: #ffffff;
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.site-header:not(.is-scrolled):not(.is-solid) .site-logo,
.site-header:not(.is-scrolled):not(.is-solid) .site-nav {
  color: #fff;
  text-shadow:
    0 1px 0 rgba(7, 44, 65, 0.86),
    0 8px 18px rgba(7, 44, 65, 0.42);
}

.site-header:not(.is-scrolled):not(.is-solid) .site-logo__sub {
  color: #fff7dc;
}

.site-header:not(.is-scrolled):not(.is-solid) .site-nav a::after {
  background: #fff7dc;
  box-shadow: 0 5px 12px rgba(7, 44, 65, 0.28);
}

.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 30px rgba(35, 54, 68, 0.08);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  width: var(--container);
  height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--color-deep);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.site-logo__main {
  display: block;
  font-size: 1.22rem;
  line-height: 1.12;
  white-space: nowrap;
}

.site-logo__sub {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
  color: var(--color-brown);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.site-nav a {
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(35, 54, 68, 0.12);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-deep);
}

.site-header:not(.is-scrolled):not(.is-solid) .menu-toggle {
  background: rgba(13, 57, 78, 0.28);
  box-shadow: 0 12px 28px rgba(7, 44, 65, 0.22);
}

.site-header:not(.is-scrolled):not(.is-solid) .menu-toggle span {
  background: #fff;
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(226, 109, 92, 0.28);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(226, 109, 92, 0.7); }
  70% { transform: scale(1.04); box-shadow: 0 0 0 12px rgba(226, 109, 92, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(226, 109, 92, 0); }
}

.hero-compare-intro {
  padding: 112px 0 28px;
  background: #ffffff;
}

.hero-compare-intro__inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.hero-compare-intro h1 {
  margin: 8px 0 10px;
  color: var(--color-deep);
  font-size: 2.1rem;
  line-height: 1.35;
}

.hero-compare-intro p {
  margin: 0;
  max-width: 760px;
  color: #526879;
}

.hero-compare-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-compare-jump a {
  min-width: 104px;
  padding: 8px 14px;
  border: 1px solid rgba(74, 144, 226, 0.28);
  border-radius: 999px;
  color: var(--color-deep);
  background: rgba(235, 247, 255, 0.9);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.hero-lab {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  scroll-margin-top: var(--header-height);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero-lab--home {
  --hero-height: 100vh;
  min-height: var(--hero-height);
}

@supports (height: 100svh) {
  .hero-lab--home {
    --hero-height: 100svh;
  }
}

.hero-lab::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: var(--hero-position, center);
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-lab--empty::before {
  background-image: url("../img/hero-kanzaki-beach-v3-empty-bright.jpg");
  background-position: center 48%;
}

.hero-lab--family::before {
  background-image: url("../img/hero-kanzaki-beach-v4-family-airy.opt.webp");
  background-position: center 44%;
}

.hero-lab--fresh-beach {
  color: var(--color-deep);
}

.hero-lab--fresh-beach::before {
  background-image: url("../kanzaki_image02.opt.webp");
  background-position: center 48%;
  filter: saturate(1.08) brightness(1.03);
}

.hero-lab--fresh-beach .hero-lab__inner {
  grid-template-columns: minmax(560px, 1fr) minmax(300px, 360px);
  justify-content: space-between;
  gap: 28px;
}

.hero-lab--fresh-beach .hero-lab__album {
  width: min(380px, 32vw);
  min-height: 420px;
  justify-self: end;
  transform: translateX(18px);
}

.hero-lab--fresh-beach .hero-lab__label {
  margin-bottom: 16px;
  border-bottom-color: rgba(89, 208, 232, 0.92);
  color: #fff;
  font-size: 1.02rem;
  font-weight: 900;
  text-shadow:
    0 1px 0 rgba(6, 45, 69, 0.95),
    1px 0 0 rgba(6, 45, 69, 0.78),
    -1px 0 0 rgba(6, 45, 69, 0.78),
    0 3px 10px rgba(6, 45, 69, 0.48);
}

.hero-lab--fresh-beach .hero-lab__mark {
  color: #6878ff;
  font-size: clamp(3.8rem, 7.2vw, 5.9rem);
  -webkit-text-stroke: 4px rgba(255, 255, 255, 0.98);
  paint-order: stroke fill;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.92),
    2px 0 0 rgba(255, 255, 255, 0.96),
    -2px 0 0 rgba(255, 255, 255, 0.96),
    0 -2px 0 rgba(255, 255, 255, 0.96),
    0 5px 10px rgba(0, 54, 92, 0.38),
    0 18px 32px rgba(0, 35, 66, 0.28);
}

.hero-lab--fresh-beach .hero-lab__mark span {
  white-space: nowrap;
}

.hero-lab--fresh-beach .hero-lab__lead {
  max-width: 690px;
  margin-top: 22px;
  color: #fff;
  font-size: 1.14rem;
  line-height: 1.72;
  font-weight: 900;
  text-shadow:
    0 1px 0 rgba(7, 44, 65, 0.98),
    1px 0 0 rgba(7, 44, 65, 0.82),
    -1px 0 0 rgba(7, 44, 65, 0.82),
    0 4px 10px rgba(4, 35, 55, 0.58),
    0 14px 28px rgba(4, 35, 55, 0.34);
}

.hero-lab--fresh-beach .hero-lab__actions {
  margin-top: 30px;
}

.hero-lab--fresh-beach .hero-lab__chips span {
  border-color: rgba(56, 174, 207, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(219, 247, 252, 0.88));
  color: #0d6076;
  box-shadow:
    0 10px 22px rgba(20, 105, 135, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.hero-lab--fresh-beach .hero-lab__actions .button--ghost {
  background: #fff;
  color: #0c4962;
  border-color: rgba(56, 174, 207, 0.4);
  box-shadow:
    0 14px 28px rgba(24, 101, 132, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.hero-lab--fresh-beach .hero-lab__actions .button--ghost:hover {
  background: #eafbff;
  color: #083c55;
  border-color: rgba(56, 174, 207, 0.58);
}

.hero-lab::after {
  content: none;
}

.hero-lab__inner {
  position: relative;
  z-index: 2;
  width: var(--container);
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  padding: 118px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  align-items: center;
  gap: 54px;
}

.hero-lab--home .hero-lab__inner {
  min-height: var(--hero-height);
  padding-top: clamp(100px, 11svh, 124px);
  padding-bottom: clamp(44px, 7svh, 66px);
}

.hero-lab__label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 18px;
  padding: 0 0 8px;
  border-bottom: 3px solid rgba(255, 213, 144, 0.95);
  border-radius: 0;
  background: transparent;
  color: var(--color-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.72),
    0 4px 10px rgba(255, 255, 255, 0.42);
}

.hero-lab__copy {
  position: relative;
  isolation: isolate;
  min-width: 0;
}

.hero-lab__copy::before {
  content: none;
}

.hero-lab__mark {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 760px;
  font-size: clamp(3.2rem, 7.2vw, 5.4rem);
  line-height: 1.03;
  font-weight: 900;
  text-wrap: balance;
  -webkit-font-smoothing: antialiased;
  text-shadow:
    0 2px 3px rgba(5, 37, 60, 0.7),
    0 9px 22px rgba(0, 25, 42, 0.42);
}

.hero-lab__mark span {
  display: block;
}

.hero-lab__lead {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.98);
  font-size: 1.05rem;
  font-weight: 800;
  text-shadow:
    0 1px 0 rgba(5, 37, 60, 0.9),
    0 3px 5px rgba(0, 25, 42, 0.74),
    0 12px 24px rgba(0, 25, 42, 0.48);
}

.sp-break {
  display: none;
}

.hero-lab__chips {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-lab__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid rgba(255, 213, 144, 0.48);
  background:
    linear-gradient(180deg, rgba(255, 244, 218, 0.92), rgba(240, 213, 164, 0.86));
  color: #533f21;
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow:
    0 8px 18px rgba(10, 44, 67, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.hero-lab__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-lab__actions .button {
  position: relative;
  overflow: hidden;
  min-height: 54px;
  padding-inline: 24px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background:
    linear-gradient(135deg, #e26d5c 0%, #ef856f 58%, #f0a63c 100%);
  box-shadow:
    0 18px 34px rgba(0, 25, 42, 0.3),
    0 12px 25px rgba(226, 109, 92, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.hero-lab__actions .button::after {
  content: none;
}

.hero-lab__actions .button:not(.button--ghost):hover {
  background: linear-gradient(135deg, #e26d5c 0%, #ef856f 58%, #f0a63c 100%);
  color: #fff;
}

.hero-lab__actions .button--ghost {
  background: rgba(15, 43, 61, 0.64);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.56);
  box-shadow:
    0 16px 30px rgba(0, 25, 42, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(5px);
}

.hero-lab__actions .button--ghost:hover {
  background: rgba(47, 130, 196, 0.82);
  border-color: rgba(210, 236, 255, 0.78);
  box-shadow:
    0 16px 30px rgba(0, 68, 112, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-lab--home .hero-lab__actions .button {
  min-height: 54px;
  box-sizing: border-box;
  border: 0;
  border-radius: 5px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .7),
    0 8px 18px rgba(226, 109, 92, .22);
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background-color .2s ease,
    color .2s ease;
}

.hero-lab--home .hero-lab__actions .button--ghost {
  background: #fff;
  color: #0c4962;
  box-shadow:
    inset 0 0 0 1px rgba(56, 174, 207, .4),
    0 8px 18px rgba(24, 101, 132, .16);
  backdrop-filter: none;
}

.hero-lab--home .hero-lab__actions .button:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .82),
    0 8px 18px rgba(226, 109, 92, .28);
}

.hero-lab--home .hero-lab__actions .button--ghost:hover {
  background: #eafbff;
  color: #083c55;
  box-shadow:
    inset 0 0 0 1px rgba(56, 174, 207, .58),
    0 8px 18px rgba(24, 101, 132, .22);
}

.hero-lab__instagram {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-top: 18px;
  padding-bottom: 5px;
  border-bottom: 2px solid rgba(255, 213, 144, 0.95);
  color: #fff9e8;
  font-weight: 900;
  text-decoration: none;
  text-shadow:
    0 1px 0 rgba(5, 37, 60, 0.95),
    0 4px 10px rgba(0, 25, 42, 0.75);
}

.hero-lab__instagram::after {
  content: "↗";
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.hero-lab__instagram:hover::after {
  transform: translate(3px, -3px);
}

.hero-lab__album {
  position: relative;
  min-height: 560px;
}

.hero-lab__photo {
  position: absolute;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(6, 28, 44, 0.38);
  animation: photoFloat 7s ease-in-out infinite alternate;
}

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

.hero-lab__photo--bbq {
  right: 0;
  top: 46px;
  width: 316px;
  height: 236px;
  transform: rotate(2.5deg);
}

.hero-lab__photo--place {
  left: 0;
  bottom: 36px;
  width: 268px;
  height: 200px;
  transform: rotate(-3deg);
  animation-delay: 0.8s;
}

.hero-lab__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 330px;
  padding: 14px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.93);
  color: var(--color-deep);
  box-shadow: 0 18px 48px rgba(6, 28, 44, 0.28);
  font-weight: 900;
}

.hero-lab__caption small {
  display: block;
  color: #4a90e2;
  font-size: 0.76rem;
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(-0.8%, -0.4%, 0);
  }

  to {
    transform: scale(1.1) translate3d(1.2%, 0.6%, 0);
  }
}

@keyframes photoFloat {
  from {
    translate: 0 0;
  }

  to {
    translate: 0 -10px;
  }
}

.condition-strip {
  padding: 22px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f3fbff 100%);
}

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

.condition-banner {
  position: relative;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 124px;
  padding: 22px 58px 22px 24px;
  overflow: hidden;
  border: 1px solid rgba(28, 74, 92, 0.12);
  border-radius: 8px;
  background: #fff;
  color: var(--color-deep);
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(16, 45, 56, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.condition-banner::after {
  content: "↗";
  position: absolute;
  right: 22px;
  top: 18px;
  color: rgba(28, 74, 92, 0.42);
  font-size: 1.2rem;
  font-weight: 900;
}

.condition-banner img {
  width: 66px;
  height: 66px;
  object-fit: contain;
}

.condition-banner span {
  display: grid;
  gap: 4px;
}

.condition-banner strong {
  color: var(--color-deep);
  font-size: clamp(1.12rem, 2vw, 1.48rem);
  line-height: 1.35;
}

.condition-banner small {
  color: #526879;
  font-weight: 800;
}

.condition-banner--sea {
  background:
    linear-gradient(135deg, rgba(74, 144, 226, 0.18), rgba(255, 255, 255, 0.9) 54%),
    #fff;
}

.condition-banner--weather {
  background:
    linear-gradient(135deg, rgba(255, 232, 120, 0.24), rgba(255, 255, 255, 0.94) 58%),
    #fff;
}

.condition-banner:hover {
  transform: translateY(-3px);
  border-color: rgba(74, 144, 226, 0.24);
  box-shadow: 0 24px 52px rgba(16, 45, 56, 0.13);
}

@media (prefers-reduced-motion: reduce) {
  .hero-lab::before,
  .hero-lab__photo {
    animation: none;
  }
}

.hero {
  min-height: 96vh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10, 31, 45, 0.78) 0%, rgba(10, 31, 45, 0.52) 36%, rgba(10, 31, 45, 0.08) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(0, 0, 0, 0.16)),
    var(--hero-image) center/cover;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  background: linear-gradient(178deg, transparent 0 48%, var(--color-secondary) 49% 100%);
}

.hero__inner {
  width: var(--container);
  margin: 0 auto;
  padding-top: 92px;
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: minmax(0, 820px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__eyebrow,
.section__eyebrow {
  display: inline-flex;
  width: fit-content;
  color: var(--color-deep);
  background: rgba(244, 236, 216, 0.92);
  border: 1px solid rgba(138, 106, 69, 0.18);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.82rem;
  font-weight: 800;
}

.hero__eyebrow {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero__title {
  margin: 18px 0 20px;
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  line-height: 1.12;
  letter-spacing: 0;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
}

.hero__lead {
  max-width: 670px;
  font-size: 1.12rem;
  font-weight: 600;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.34);
}

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

.hero__meta span {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  min-height: 48px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero__meta strong {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 1.35rem;
  line-height: 1;
}

.hero__instagram {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration-color: rgba(255, 255, 255, 0.58);
  text-underline-offset: 5px;
}

.hero__actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 19px;
  border: 0;
  border-radius: 5px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button::after {
  content: ">";
  font-family: var(--font-en);
  font-size: 0.85em;
  line-height: 1;
  transform: translateY(1px);
}

.button[href^="tel:"]::before {
  content: "TEL";
  padding: 2px 6px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 3px;
  font-family: var(--font-en);
  font-size: .68rem;
  letter-spacing: .04em;
}

.button[href^="tel:"]::after {
  content: none;
}

.button--with-icon[href^="tel:"]::before,
.button--with-icon::after {
  content: none;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 13px 28px rgba(226, 109, 92, 0.24);
  background: #eb7a68;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-deep);
}

.button--line {
  background: transparent;
  color: var(--color-deep);
  border: 1px solid rgba(36, 71, 95, 0.26);
}

.contact-actions {
  justify-content: center;
}

.contact-reservation-copy {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.contact-actions .button--line:hover {
  background: rgba(255, 255, 255, .94);
  color: var(--color-deep);
  border-color: rgba(255, 255, 255, .94);
  box-shadow: 0 13px 28px rgba(255, 255, 255, .16);
}

.hero-collage {
  min-height: 420px;
  position: relative;
}

.hero-collage__photo {
  position: absolute;
  width: 240px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 8px solid #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-collage__photo::before {
  content: "";
}

.hero-collage__photo:nth-child(1) {
  right: 90px;
  top: 20px;
  transform: rotate(-7deg);
}

.hero-collage__photo:nth-child(2) {
  right: 0;
  top: 150px;
  transform: rotate(6deg);
}

.hero-collage__photo:nth-child(3) {
  right: 170px;
  top: 230px;
  transform: rotate(-2deg);
}

.section {
  padding: 86px 0;
}

.section--sand {
  background: var(--color-secondary);
}

.section--plans {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 76px;
  background:
    linear-gradient(180deg, #fffaf0 0%, #f3f9fb 58%, #fff7e6 100%);
}

.section--plans::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(138, 106, 69, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(238, 105, 90, 0), rgba(238, 105, 90, 0.06));
  pointer-events: none;
}

.section--white {
  background: #fff;
}

.section--deep {
  background: var(--color-deep);
  color: #fff;
}

.section--utility {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #17364b 0%, #24475f 58%, #1d5f84 100%);
  color: #fff;
}

.section--utility::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 82%);
  pointer-events: none;
}

.section--utility .section__eyebrow {
  background: rgba(255, 244, 223, 0.96);
  color: #9a5c19;
}

.section--utility .section__title,
.section--utility .section__lead {
  color: #fff;
}

.section--arrival {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #edf8ff 54%, #ffffff 100%);
}

.section--arrival::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(74, 144, 226, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(74, 144, 226, 0.08));
  pointer-events: none;
}

.container {
  position: relative;
  width: var(--container);
  margin: 0 auto;
}

.section__header {
  max-width: 760px;
  margin-bottom: 42px;
}

.section__header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section__title {
  margin: 12px 0 14px;
  font-size: clamp(1.62rem, 1.1rem + 2.35vw, 2.8rem);
  line-height: 1.35;
  letter-spacing: 0;
  color: var(--color-deep);
  text-wrap: balance;
}

.section--deep .section__title {
  color: #fff;
}

.section__lead {
  margin: 0;
  font-weight: 600;
}

.zigzag {
  display: grid;
  gap: 62px;
}

.arrival-story {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 58px;
  align-items: center;
}

.arrival-story__media {
  position: relative;
  min-height: 620px;
}

.arrival-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 58px rgba(30, 72, 98, 0.18);
}

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

.arrival-photo figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 9px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-deep);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.5;
}

.arrival-photo--main {
  inset: 0 34px auto 0;
  height: 440px;
}

.arrival-photo--sub {
  right: 0;
  bottom: 0;
  width: 54%;
  height: 260px;
}

.arrival-story__body {
  padding: 8px 0;
}

.arrival-flow {
  position: relative;
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.arrival-flow::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: linear-gradient(180deg, rgba(74, 144, 226, 0.28), rgba(74, 144, 226, 0));
}

.arrival-flow li {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
}

.arrival-flow li > span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(74, 144, 226, 0.28);
  border-radius: 999px;
  background: #fff;
  color: #2f82c4;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(32, 89, 125, 0.1);
}

.arrival-flow strong {
  display: block;
  color: var(--color-deep);
  font-size: 1.08rem;
}

.arrival-flow p {
  margin: 4px 0 0;
  color: #526879;
  font-size: 0.94rem;
  line-height: 1.75;
}

.arrival-points {
  margin-top: 52px;
  padding: 18px;
  border: 1px solid rgba(74, 144, 226, 0.2);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(237, 248, 255, 0.86)),
    radial-gradient(circle at 12% 18%, rgba(238, 105, 90, 0.14), transparent 32%);
  box-shadow: 0 22px 48px rgba(30, 72, 98, 0.12);
}

.arrival-points__intro {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 0 4px;
}

.arrival-points__intro span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff4df;
  color: #9a5c19;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
}

.arrival-points__intro strong {
  color: var(--color-deep);
  font-size: 1rem;
  line-height: 1.5;
}

.arrival-notes {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.arrival-note {
  position: relative;
  min-height: 178px;
  overflow: hidden;
  border-radius: 8px;
  padding: 20px 18px 18px;
  border: 1px solid rgba(74, 144, 226, 0.16);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-deep);
  box-shadow: 0 10px 24px rgba(30, 72, 98, 0.08);
}

.arrival-note::before {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: #4a90e2;
}

.arrival-note h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.35;
  color: var(--color-deep);
  font-weight: 900;
}

.arrival-note p {
  margin: 8px 0 16px;
  color: #526879;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.65;
}

.arrival-note__num {
  display: inline-block;
  margin-bottom: 8px;
  color: #2f82c4;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 900;
}

.arrival-note__icon {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(74, 144, 226, 0.18);
  border-radius: 999px;
  background: #edf8ff;
  color: #2f82c4;
  font-weight: 900;
}

.arrival-note__pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--color-deep);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
}

.arrival-note--photo {
  display: grid;
  grid-template-columns: minmax(112px, 0.9fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  padding: 10px;
  background: #fff;
}

.arrival-note--photo img {
  width: 100%;
  height: 100%;
  min-height: 158px;
  object-fit: cover;
  border-radius: 6px;
}

.arrival-note--photo div {
  padding: 10px 8px 8px 0;
}

.arrival-note--photo::before {
  background: #ee695a;
}

.arrival-note--drink {
  background: linear-gradient(180deg, #ffffff, #fff8ea);
}

.arrival-note--drink::before {
  background: #f0a63c;
}

.arrival-note--drink .arrival-note__icon {
  border-color: rgba(240, 166, 60, 0.25);
  background: #fff4df;
  color: #9a5c19;
}

.arrival-note--drink .arrival-note__num {
  color: #d68621;
}

.arrival-note--shower {
  background: linear-gradient(180deg, #ffffff, #edf8ff);
}

.arrival-note--ask {
  background: linear-gradient(180deg, #ffffff, #f0f7f5);
}

.arrival-note--ask::before {
  background: #5fae93;
}

.arrival-note--ask .arrival-note__icon {
  border-color: rgba(95, 174, 147, 0.25);
  background: #e9f7f2;
  color: #2f8069;
}

.arrival-note--ask .arrival-note__num {
  color: #2f8069;
}

.utility-shell {
  display: grid;
  gap: 38px;
}

.utility-head {
  max-width: 980px;
}

.utility-board {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 64px rgba(10, 28, 40, 0.28);
}

.utility-board__visual {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
}

.utility-board__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: none;
}

.utility-board__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.02);
}

.utility-board__visual figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  padding: 16px 18px;
  border-radius: 8px;
  background: rgba(10, 28, 40, 0.68);
  box-shadow: 0 16px 34px rgba(10, 28, 40, 0.18);
  color: #fff;
  font-weight: 800;
  line-height: 1.7;
}

.utility-board__visual figcaption span {
  display: block;
  margin-bottom: 8px;
  color: #ffd590;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.utility-board__body {
  display: grid;
  align-content: center;
  padding: 36px 40px 52px;
  background: rgba(10, 28, 40, 0.18);
}

.utility-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.utility-list div {
  display: grid;
  grid-template-columns: minmax(190px, 0.55fr) 1fr;
  gap: 24px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.utility-list div:last-child {
  border-bottom: 0;
}

.utility-list dt,
.utility-list dd {
  margin: 0;
}

.utility-list dt {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #fff;
  font-weight: 900;
  line-height: 1.45;
}

.utility-list dt span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(157, 216, 255, 0.38);
  border-radius: 999px;
  color: #9dd8ff;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
}

.utility-list__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.utility-list dd {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.75;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 54px;
  align-items: center;
}

.feature-row:nth-child(even) {
  grid-template-columns: 420px 1fr;
}

.feature-row:nth-child(even) .feature-row__body {
  order: 2;
}

.feature-row__tag {
  color: var(--color-accent);
  font-weight: 900;
}

.feature-row__title {
  margin: 8px 0 14px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.45;
  color: var(--color-deep);
}

.feature-row__image {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
  border-radius: 45% 55% 58% 42% / 45% 42% 58% 55%;
  box-shadow: var(--shadow);
}

.plan-header {
  max-width: 880px;
}

.plan-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(138, 106, 69, 0.2);
  border-radius: 999px;
  background: #fffdf8;
  color: #8a6a45;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: none;
}

.plan-title {
  margin-top: 18px;
  word-break: keep-all;
}

.plan-board {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
  gap: 20px;
  align-items: stretch;
}

.plan-main {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(36, 71, 95, 0.1);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 26px 58px rgba(35, 54, 68, 0.13);
}

.plan-main__media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

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

.plan-main__media span {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  color: #fff;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-main__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 42px;
}

.plan-label {
  position: relative;
  margin: 0 0 18px;
  padding-left: 18px;
  color: var(--color-accent);
  font-size: 0.84rem;
  font-weight: 900;
}

.plan-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: .56em;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.plan-main h3,
.plan-mini h3 {
  margin: 0;
  color: var(--color-deep);
  line-height: 1.35;
}

.plan-main h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.plan-main__copy {
  margin: 16px 0 24px;
  color: #526879;
  font-weight: 700;
  line-height: 1.85;
}

.plan-price-table {
  width: 100%;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(74, 144, 226, 0.16);
  border-radius: 8px;
  background: rgba(74, 144, 226, 0.16);
}

.plan-price-table p {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 14px 16px;
  background: #f7fcff;
}

.plan-price-table span {
  color: var(--color-deep);
  font-weight: 900;
}

.plan-price-table strong {
  color: var(--color-accent);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 1.45rem;
  line-height: 1;
}

.plan-note {
  margin: 16px 0 22px;
  color: #526879;
  font-size: 0.9rem;
  font-weight: 700;
}

.plan-side {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
}

.plan-mini {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(36, 71, 95, 0.1);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(35, 54, 68, 0.1);
}

.plan-mini--bring {
  padding: 30px;
}

.plan-mini__tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 14px;
  padding: 0 12px;
  border-radius: 999px;
  background: #edf8ff;
  color: #2f82c4;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
}

.plan-mini p {
  margin: 12px 0 18px;
  color: #526879;
  font-weight: 700;
  line-height: 1.7;
}

.plan-mini__price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(36, 71, 95, 0.1);
}

.plan-mini__price span,
.plan-mini small {
  color: #526879;
  font-weight: 800;
}

.plan-mini__price strong {
  color: var(--color-accent);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 1.7rem;
}

.plan-mini small {
  display: block;
  margin-top: 8px;
  font-size: 0.82rem;
}

.plan-mini--winter {
  display: grid;
  grid-template-columns: 38% 1fr;
  min-height: 210px;
  background: linear-gradient(135deg, #eef8ff 0%, #f8fcff 100%);
  border-color: rgba(74, 144, 226, 0.18);
}

.plan-mini--winter img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plan-mini--winter div {
  padding: 24px;
}

.plan-mini--winter .plan-mini__tag {
  background: #ffffff;
  color: #2f82c4;
  border: 1px solid rgba(74, 144, 226, 0.18);
}

.plan-mini--winter h3,
.plan-mini--winter p,
.plan-mini--winter strong {
  color: var(--color-deep);
}

.plan-mini--winter strong {
  color: #2f82c4;
}

.plan-footnote {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(36, 71, 95, .16);
  border-radius: var(--radius);
  background: rgba(36, 71, 95, .16);
  box-shadow: 0 12px 28px rgba(35, 54, 68, .08);
}

.plan-footnote span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  padding: 0 16px 0 42px;
  border-radius: 0;
  background: #fff8e8;
  color: var(--color-deep);
  font-size: 0.92rem;
  font-weight: 900;
  box-shadow: none;
}

.plan-footnote span::before {
  content: "";
  position: absolute;
  left: 16px;
  width: 13px;
  height: 13px;
  border: 2px solid #e26d5c;
  border-radius: 50%;
}

.plan-footnote span:nth-child(2)::before {
  border-color: #e26d5c;
}

.section--free-space {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 76px;
  background:
    linear-gradient(180deg, #ffffff 0%, #edf8ff 52%, #ffffff 100%);
}

.section--free-space::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(74, 144, 226, 0.07), transparent 46%),
    repeating-linear-gradient(90deg, rgba(36, 71, 95, 0.04) 0 1px, transparent 1px 54px);
  pointer-events: none;
}

.free-space-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  grid-template-areas:
    "copy visual"
    "panel panel";
  gap: 26px;
  align-items: stretch;
}

.free-space-copy {
  grid-area: copy;
  display: grid;
  align-content: center;
  padding: 10px 0;
}

.free-space-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 34px;
  margin-bottom: 16px;
  padding: 0 12px;
  border-radius: 3px;
  background: var(--color-deep);
  color: #fff;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.free-space-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.free-space-actions .button {
  min-height: 54px;
  box-sizing: border-box;
  border: 0;
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .56);
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background-color .2s ease,
    color .2s ease;
}

.free-space-actions .button--line {
  background: rgba(255, 255, 255, .94);
  color: var(--color-deep);
  box-shadow: inset 0 0 0 1px rgba(36, 71, 95, .18);
}

.free-space-actions .button:hover {
  transform: translateY(-2px);
  background: #eb7a68;
  color: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .68),
    0 8px 18px rgba(226, 109, 92, .22);
}

.free-space-actions .button--line:hover {
  background: rgba(255, 255, 255, .98);
  color: var(--color-deep);
  box-shadow:
    inset 0 0 0 1px rgba(36, 71, 95, .28),
    0 8px 18px rgba(36, 71, 95, .14);
}

.free-space-visual {
  grid-area: visual;
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: 10px;
  background: #123047;
  box-shadow: 0 28px 64px rgba(30, 72, 98, 0.16);
  isolation: isolate;
}

.free-space-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 40, 60, 0.03), rgba(10, 40, 60, 0.66)),
    linear-gradient(90deg, rgba(10, 40, 60, 0.48), transparent 56%);
}

.free-space-photo {
  position: absolute;
  overflow: hidden;
  border-radius: 8px;
}

.free-space-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.free-space-photo span {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 3px;
  background: rgba(255, 244, 218, 0.92);
  color: #533f21;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(11, 42, 64, 0.16);
}

.free-space-photo--main {
  inset: 0;
}

.free-space-photo--main img {
  filter: saturate(1.16) contrast(1.06) brightness(1.04);
}

.free-space-photo--main span {
  left: 22px;
  top: 22px;
  z-index: 2;
  color: #2f82c4;
}

.free-space-photo--sub {
  top: 24px;
  right: 24px;
  z-index: 2;
  width: min(42%, 280px);
  aspect-ratio: 4 / 3;
  border: 6px solid rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 44px rgba(8, 40, 62, 0.25);
}

.free-space-photo--sub img {
  filter: saturate(1.08) contrast(1.05) brightness(1.07);
}

.free-space-photo--sub span {
  left: 10px;
  right: 10px;
  bottom: 10px;
  justify-content: center;
  min-height: 30px;
  padding: 0 8px;
  font-size: 0.74rem;
  text-align: center;
}

.free-space-visual figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  padding: 16px 18px;
  border: 1px solid rgba(154, 92, 25, 0.16);
  border-left: 4px solid rgba(244, 236, 216, 0.95);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-deep);
  font-weight: 900;
  line-height: 1.6;
  box-shadow: 0 14px 34px rgba(18, 47, 70, 0.16);
  backdrop-filter: blur(6px);
}

.free-space-visual figcaption span {
  display: block;
  margin-bottom: 4px;
  color: #9a5c19;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.free-space-visual figcaption em {
  display: block;
  max-width: 32em;
  font-style: normal;
}

.free-space-panel {
  grid-area: panel;
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(0, 0.95fr);
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid rgba(74, 144, 226, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 46px rgba(30, 72, 98, 0.1);
}

.free-space-prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.free-space-price {
  min-height: 170px;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(36, 71, 95, 0.1);
}

.free-space-price--full {
  background: rgba(255, 244, 223, 0.96);
  border-color: rgba(154, 92, 25, 0.26);
  color: var(--color-deep);
}

.free-space-price span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 16px;
  padding: 0 12px;
  border-radius: 999px;
  background: #edf8ff;
  color: #2f82c4;
  font-weight: 900;
}

.free-space-price--full span {
  background: #fff;
  color: #9a5c19;
}

.free-space-price strong {
  display: block;
  color: var(--color-accent);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}

.free-space-price--full strong {
  color: #9a5c19;
}

.free-space-price p {
  margin: 12px 0 0;
  color: #526879;
  font-weight: 800;
  line-height: 1.65;
}

.free-space-price--full p {
  color: #375166;
}

.free-space-specs {
  display: grid;
  margin: 0;
  border: 1px solid rgba(74, 144, 226, 0.14);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.free-space-specs div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  padding: 17px 18px;
  border-bottom: 1px solid rgba(74, 144, 226, 0.12);
}

.free-space-specs div:last-child {
  border-bottom: 0;
}

.free-space-specs dt,
.free-space-specs dd {
  margin: 0;
}

.free-space-specs dt {
  color: #2f82c4;
  font-weight: 900;
}

.free-space-specs dd {
  color: var(--color-deep);
  font-weight: 800;
}

.free-space-rules {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.free-space-rules span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  background: #fff4df;
  color: #9a5c19;
  font-size: 0.86rem;
  font-weight: 900;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.cards--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section--plan-courses {
  padding-bottom: 68px;
}

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(36, 71, 95, 0.08);
  box-shadow: 0 10px 25px rgba(35, 54, 68, 0.08);
}

.card--offset {
  margin-top: 0;
}

.card__image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.card__body .button {
  align-self: flex-start;
  margin-top: auto;
}

.card__title {
  margin: 0 0 10px;
  color: var(--color-deep);
  font-size: 1.35rem;
  line-height: 1.4;
}

.price {
  color: var(--color-accent);
  font-size: 1.6rem;
  font-weight: 900;
  margin: 10px 0;
}

.check-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  margin: 8px 0;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.76em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-green);
}

.page-hero {
  min-height: 40vh;
  display: grid;
  place-items: center;
  padding-top: 78px;
  color: #fff;
  background: linear-gradient(rgba(19, 40, 55, 0.55), rgba(19, 40, 55, 0.55)), var(--page-hero) center/cover;
}

.page-hero--soft-photo {
  min-height: clamp(260px, 34vh, 360px);
  padding: 112px 20px 54px;
  background:
    linear-gradient(90deg, rgba(12, 41, 59, 0.68), rgba(12, 41, 59, 0.26)),
    var(--page-hero) center 46% / cover;
  color: #fff;
}

.page-hero--plan {
  background:
    linear-gradient(90deg, rgba(12, 41, 59, 0.66), rgba(12, 41, 59, 0.22)),
    url("../img/page-hero-plan-bbq-wide.jpg") center 54% / cover;
}

.page-hero--facility {
  background:
    linear-gradient(90deg, rgba(12, 41, 59, 0.66), rgba(12, 41, 59, 0.24)),
    url("../img/facility-bbq-enhanced-v1.opt.webp") center 58% / cover;
}

.page-hero--access {
  background:
    linear-gradient(90deg, rgba(12, 41, 59, 0.66), rgba(12, 41, 59, 0.22)),
    url("../img/access-beach.jpg") center 52% / cover;
}

.page-hero--archive {
  background:
    linear-gradient(90deg, rgba(12, 41, 59, 0.66), rgba(12, 41, 59, 0.24)),
    url("../img/archive-voice.jpg") center 48% / cover;
}

.page-hero--contact {
  background:
    linear-gradient(90deg, rgba(12, 41, 59, 0.66), rgba(12, 41, 59, 0.26)),
    url("../img/hero-wipe-fugetsu-v1.jpg") center 56% / cover;
}

.page-hero__title {
  position: relative;
  width: var(--container);
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  line-height: 1.25;
  margin: 0;
  text-shadow:
    0 2px 0 rgba(6, 36, 54, 0.7),
    0 16px 28px rgba(0, 22, 38, 0.32);
}

.page-hero--soft-photo .page-hero__title {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.page-hero__title::after {
  content: "";
  display: block;
  width: 74px;
  height: 3px;
  margin-top: 18px;
  border-radius: 999px;
  background: #fff7dc;
  box-shadow: 0 8px 18px rgba(0, 22, 38, 0.26);
}

.timeline {
  display: grid;
  gap: 24px;
  counter-reset: step;
}

.timeline__item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
}

.timeline__num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.split--reverse .split__media {
  order: 2;
}

.split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.local-food-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.local-food-card {
  position: relative;
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0;
  background: #edf4f2;
}

.local-food-card--wide {
  grid-row: auto;
}

.local-food-card img,
.split__media .local-food-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.local-food-card figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 3px;
  background: rgba(15, 43, 61, 0.74);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(16, 45, 56, 0.18);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.food-source-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.food-source-intro {
  max-width: 1120px;
}

.food-source-intro p {
  max-width: 960px;
}

.section__title--food-source {
  font-size: clamp(1.78rem, 1.24rem + 1.55vw, 2.46rem);
  line-height: 1.38;
}

.section__title--winter-bbq {
  font-size: clamp(2rem, 1.42rem + 1.9vw, 3rem);
  line-height: 1.38;
  white-space: nowrap;
}

.section__title--plan-choice {
  font-size: clamp(1.9rem, 1.2rem + 2vw, 2.72rem);
  line-height: 1.34;
  white-space: nowrap;
}

.info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid rgba(36, 71, 95, 0.08);
}

.info-card--included h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
}

.info-card__icon {
  display: inline-block;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  background-image: url("../4parts.png");
  background-repeat: no-repeat;
  background-size: 264px auto;
}

.info-card__icon--fire {
  background-position: -10px center;
}

.info-card__icon--cleanup {
  background-position: -78px center;
}

.info-card__icon--shower {
  background-position: -145px center;
}

.info-card__icon--parking {
  background-position: -207px center;
}

.info-card__mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-secondary);
  display: grid;
  place-items: center;
  color: var(--color-deep);
  font-weight: 900;
  margin-bottom: 10px;
}

.overview {
  display: grid;
  grid-template-columns: 180px 1fr;
  border: 1px solid #eee;
  background: #fff;
}

.overview dt,
.overview dd {
  margin: 0;
  padding: 16px 18px;
  border-bottom: 1px solid #eee;
}

.overview dt {
  background: rgba(244, 236, 216, 0.5);
  font-weight: 800;
}

.overview dd:last-child,
.overview dt:last-of-type {
  border-bottom: 0;
}

.map-frame {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.instagram-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.instagram-card {
  display: grid;
  grid-template-columns: minmax(170px, 0.78fr) 1fr;
  min-height: 270px;
  overflow: hidden;
  border-radius: 0;
  background: #fff;
  border: 1px solid rgba(36, 71, 95, .1);
  box-shadow: none;
}

.instagram-card__media {
  position: relative;
  display: block;
  min-height: 100%;
  color: #fff;
  overflow: hidden;
}

.instagram-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 35, 50, 0.05), rgba(9, 35, 50, 0.72));
}

.instagram-card__media img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.instagram-card__media:hover img {
  transform: scale(1.04);
}

.instagram-card__media span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 28px);
  border-radius: 3px;
  background: rgba(255, 244, 218, 0.92);
  color: #533f21;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.25;
}

.instagram-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  padding: 24px;
}

.instagram-card__label {
  margin: 0;
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.instagram-card h3 {
  margin: 0;
  color: var(--color-deep);
  font-size: 1.35rem;
}

.instagram-card p {
  margin: 0;
}

.masonry,
.archive-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}

.masonry__item,
.archive-card {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(35, 54, 68, 0.08);
}

.masonry__item img,
.archive-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  cursor: zoom-in;
}

.masonry__item figcaption,
.archive-card figcaption {
  min-height: 58px;
  padding: 10px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.archive-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.archive-filter {
  border: 1px solid rgba(36, 71, 95, 0.16);
  border-radius: 999px;
  background: #fff;
  color: var(--color-deep);
  padding: 8px 13px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.archive-filter.is-active {
  background: var(--color-deep);
  color: #fff;
}

.archive-count {
  margin-bottom: 18px;
  color: rgba(51, 51, 51, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
}

.archive-page-intro .section__header {
  max-width: 780px;
}

body.page-archive-detail {
  overflow-x: hidden;
}

.page-archive-gateway {
  overflow-x: hidden;
}

.archive-page-intro .section__lead {
  max-width: 760px;
  overflow-wrap: anywhere;
}

.page-archive-gateway .page-hero__title {
  max-width: min(900px, calc(100% - 32px));
  text-align: center;
  overflow-wrap: anywhere;
}

.archive-gateway .section__header {
  max-width: 840px;
}

.archive-gateway .section__title,
.archive-gateway .section__lead {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.archive-gateway__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 30px;
}

.archive-gateway__stats div {
  min-height: 98px;
  border: 1px solid rgba(36, 71, 95, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 18px;
}

.archive-gateway__stats span {
  display: block;
  color: var(--color-deep);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.archive-gateway__stats small {
  display: block;
  margin-top: 8px;
  color: rgba(35, 54, 68, 0.68);
  font-weight: 900;
}

.archive-gateway__cards {
  align-items: stretch;
}

.archive-gateway__cards .card {
  min-width: 0;
  border-radius: 8px;
}

.archive-gateway__cards .card__image {
  aspect-ratio: 16 / 11;
}

.archive-gateway__cards p {
  color: #526879;
  font-weight: 700;
  line-height: 1.75;
}

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

.archive-gateway__year-links a,
.archive-gateway__cards .check-list a {
  overflow-wrap: anywhere;
}

.archive-page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
  margin: 0 0 20px;
}

.archive-page-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(36, 71, 95, 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--color-deep);
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

.archive-page-nav__link.is-active {
  background: var(--color-deep);
  color: #fff;
}

.archive-page-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.archive-page-stat {
  min-height: 92px;
  border: 1px solid rgba(36, 71, 95, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 16px;
}

.archive-page-stat span {
  display: block;
  color: var(--color-deep);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 900;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.archive-page-stat small {
  display: block;
  margin-top: 7px;
  color: rgba(35, 54, 68, 0.7);
  font-weight: 900;
}

.archive-record-section + .archive-record-section {
  margin-top: 54px;
}

.archive-record-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(36, 71, 95, 0.12);
}

.archive-record-section__head span {
  color: var(--color-deep);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
}

.archive-record-section__head p {
  margin: 0;
  color: rgba(35, 54, 68, 0.66);
  font-weight: 900;
}

.archive-entry-feed {
  display: grid;
  gap: 26px;
}

.archive-entry {
  overflow: hidden;
  border: 1px solid rgba(36, 71, 95, 0.11);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(35, 54, 68, 0.08);
}

.archive-entry__head {
  padding: 24px 26px 18px;
}

.archive-entry__head span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-right: 8px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #eef5f7;
  color: var(--color-deep);
  padding: 0 11px;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
}

.archive-entry__head small {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #f7f1e6;
  color: #80632b;
  padding: 0 11px;
  font-size: 0.76rem;
  font-weight: 900;
}

.archive-entry__head h3 {
  margin: 0;
  color: var(--color-deep);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.archive-entry__photos {
  display: grid;
  gap: 12px;
  padding: 0 26px 26px;
}

.archive-entry__photos--single {
  grid-template-columns: minmax(0, 1fr);
}

.archive-entry__photos--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.archive-entry__photos--grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.archive-entry__photos figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #edf4f7;
  aspect-ratio: 4 / 3;
}

.archive-entry__photos--single figure {
  aspect-ratio: 16 / 9;
}

.archive-entry__photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.archive-entry__body {
  padding: 0 26px 26px;
  color: #465c50;
  font-weight: 700;
  line-height: 1.9;
}

.archive-entry__body p {
  margin: 0;
}

.archive-entry__body p + p {
  margin-top: 10px;
}

.archive-empty {
  border-radius: 8px;
  background: #f7f7f5;
  padding: 22px;
  color: rgba(35, 54, 68, 0.72);
  font-weight: 900;
}

.form {
  display: grid;
  gap: 16px;
}

.form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.form input,
.form textarea {
  width: 100%;
  border: 0;
  border-bottom: 3px solid transparent;
  border-radius: var(--radius);
  padding: 14px 15px;
  background: #f5f7fa;
  font: inherit;
}

.form input:focus,
.form textarea:focus {
  outline: 0;
  border-bottom-color: var(--color-primary);
}

.legacy {
  background: #fff;
}

.legacy__summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(36, 71, 95, 0.12);
  cursor: pointer;
  font-weight: 900;
  color: var(--color-deep);
}

.legacy__body {
  padding: 18px 0 32px;
}

.legacy__text {
  white-space: pre-wrap;
  background: #f7f7f5;
  border-radius: var(--radius);
  padding: 18px;
  max-height: 440px;
  overflow: auto;
  font-size: 0.92rem;
}

.legacy__images {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.legacy__images img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: zoom-in;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(12, 27, 38, 0.86);
}

.image-modal.is-open {
  display: flex;
}

.image-modal__panel {
  width: min(1120px, 100%);
  height: min(780px, calc(100vh - 44px));
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 12px;
}

.image-modal__stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
}

.image-modal__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  background: #111;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.image-modal__caption {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

.image-modal__button {
  position: absolute;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-deep);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.image-modal__button--close {
  top: 0;
  right: 0;
}

.image-modal__button--prev {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.image-modal__button--next {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.footer {
  padding: 58px 0 86px;
  background: var(--color-deep);
  color: #fff;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px;
}

.footer a {
  color: #fff;
}

.footer__nav {
  display: grid;
  gap: 8px;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .arrival-story {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .arrival-story__media {
    min-height: 520px;
  }

  .arrival-photo--main {
    right: 80px;
    height: 360px;
  }

  .arrival-photo--sub {
    width: 48%;
    height: 220px;
  }

  .arrival-notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .arrival-note--photo {
    grid-column: 1 / -1;
  }

  .utility-board {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .utility-board__visual {
    min-height: 330px;
  }

  .plan-board,
  .plan-main {
    grid-template-columns: 1fr;
  }

  .plan-main,
  .plan-main__media {
    min-height: 0;
  }

  .plan-main__media {
    aspect-ratio: 16 / 9;
  }

  .free-space-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "panel";
  }

  .free-space-visual {
    min-height: 420px;
  }

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










  .hero-compare-intro__inner {
    align-items: start;
    flex-direction: column;
  }

  .hero-lab__inner {
    grid-template-columns: 1fr;
    align-content: center;
    align-items: center;
    gap: 22px;
  }

  .hero-lab--home .hero-lab__inner {
    padding-top: clamp(86px, 10svh, 108px);
    padding-bottom: clamp(36px, 7svh, 58px);
  }

  .hero-lab--fresh-beach .hero-lab__inner {
    grid-template-columns: 1fr;
    isolation: isolate;
  }

  .hero-lab--fresh-beach .hero-lab__copy {
    z-index: 2;
    max-width: min(700px, 82vw);
  }

  .hero-lab--fresh-beach .hero-lab__mark {
    font-size: clamp(3.25rem, 7.3vw, 4.35rem);
    -webkit-text-stroke-width: 3px;
  }

  .hero-lab--fresh-beach .hero-lab__lead {
    max-width: min(680px, 82vw);
  }

  .hero-lab--fresh-beach .hero-lab__album {
    position: absolute;
    z-index: 1;
    right: clamp(124px, 18vw, 172px);
    bottom: clamp(24px, 5svh, 48px);
    width: min(430px, 52vw);
    max-width: none;
    min-height: clamp(176px, 24svh, 230px);
    justify-self: auto;
    transform: none;
    pointer-events: none;
  }

  .hero-lab__mark {
    font-size: clamp(3.25rem, 8vw, 4.5rem);
  }

  .hero-lab__album {
    min-height: 260px;
    max-width: 540px;
    width: 100%;
  }

  .hero-lab__photo--bbq {
    left: 0;
    right: auto;
    top: 0;
    width: clamp(230px, 35vw, 300px);
    height: clamp(170px, 25vw, 220px);
  }

  .hero-lab__photo--place {
    left: auto;
    right: 0;
    bottom: 0;
    width: clamp(180px, 28vw, 250px);
    height: clamp(134px, 20vw, 186px);
  }

  .hero-lab__caption {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: calc(var(--header-height) + 8px) 16px auto;
    display: none;
    padding: 20px;
    background: rgba(255, 255, 255, 0.97);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    color: var(--color-deep);
    flex-direction: column;
    align-items: stretch;
    text-shadow: none;
    backdrop-filter: blur(10px);
  }

  .site-nav a {
    padding: 10px 0;
    border-bottom: 1px solid rgba(36, 71, 95, 0.12);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-header:not(.is-scrolled):not(.is-solid) .site-nav {
    color: var(--color-deep);
    text-shadow: none;
  }

  .site-header:not(.is-scrolled):not(.is-solid) .site-nav a::after {
    background: var(--color-accent);
    box-shadow: none;
  }

  body.is-menu-open .site-nav {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero__inner,
  .feature-row,
  .feature-row:nth-child(even),
  .split,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .feature-row:nth-child(even) .feature-row__body,
  .split--reverse .split__media {
    order: initial;
  }

  .local-food-media {
    max-width: 620px;
  }

  .hero-collage {
    display: none;
  }

  .cards,
  .cards--three,
  .info-grid,
  .food-source-grid,
  .instagram-duo {
    grid-template-columns: 1fr;
  }

  .instagram-card {
    grid-template-columns: 1fr;
  }

  .instagram-card__media,
  .instagram-card__media img {
    min-height: 220px;
  }

  .card--offset {
    margin-top: 0;
  }

  .archive-page-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .archive-gateway__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) and (min-width: 641px) {
  .hero-lab--fresh-beach .hero-lab__copy,
  .hero-lab--fresh-beach .hero-lab__lead {
    max-width: min(660px, calc(100vw - 32px));
  }

  .hero-lab--fresh-beach .hero-lab__mark {
    font-size: clamp(3rem, 8.4vw, 3.8rem);
  }

  .hero-lab--fresh-beach .hero-lab__album {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(1120px, calc(100% - 28px));
    --header-height: 68px;
  }

  .page-archive-detail .container {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .arrival-story__media {
    min-height: 430px;
  }

  .arrival-photo {
    border-width: 7px;
  }

  .arrival-photo--main {
    inset: 0 0 auto;
    height: 292px;
  }

  .arrival-photo--sub {
    width: 68%;
    height: 164px;
  }

  .arrival-flow {
    gap: 16px;
  }

  .arrival-flow li {
    grid-template-columns: 40px 1fr;
    gap: 13px;
  }

  .arrival-flow li > span {
    width: 40px;
    height: 40px;
    font-size: 0.72rem;
  }

  .arrival-flow::before {
    left: 19px;
  }

  .arrival-points {
    margin-top: 34px;
    padding: 14px;
  }

  .arrival-points__intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .arrival-notes {
    grid-template-columns: 1fr;
  }

  .condition-strip__grid {
    grid-template-columns: 1fr;
  }

  .condition-banner {
    grid-template-columns: 50px minmax(0, 1fr);
    min-height: 104px;
    padding: 18px 48px 18px 18px;
  }

  .condition-banner img {
    width: 50px;
    height: 50px;
  }

  .arrival-note {
    min-height: auto;
  }

  .arrival-note--photo {
    grid-template-columns: 1fr;
  }

  .arrival-note--photo img {
    min-height: 150px;
    aspect-ratio: 16 / 9;
  }

  .arrival-note--photo div {
    padding: 0 8px 8px;
  }

  .local-food-media {
    gap: 8px;
    padding: 8px;
  }

  .local-food-card {
    min-height: 0;
  }

  .local-food-card--wide {
    grid-column: auto;
    grid-row: auto;
  }

  .local-food-card figcaption {
    left: 8px;
    bottom: 8px;
    min-height: 28px;
    padding: 0 10px;
    font-size: 0.76rem;
  }

  .utility-shell {
    gap: 26px;
  }

  .utility-board {
    border-radius: 8px;
  }

  .utility-board__visual {
    min-height: 260px;
  }

  .utility-board__visual figcaption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .utility-board__body {
    padding: 24px 20px;
  }

  .utility-list div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 17px 0;
  }

  .plan-kicker {
    min-height: 38px;
    font-size: 0.94rem;
  }

  .plan-title {
    font-size: 1.62rem;
    line-height: 1.48;
  }

  .plan-main__body {
    padding: 26px 22px;
  }

  .plan-price-table p {
    padding: 13px 14px;
  }

  .plan-mini--bring {
    padding: 24px 20px;
  }

  .plan-mini--winter {
    grid-template-columns: 1fr;
  }

  .plan-mini--winter img {
    aspect-ratio: 16 / 9;
  }

  .plan-footnote {
    padding-bottom: 18px;
  }

  .section--free-space {
    padding-bottom: 96px;
  }

  .free-space-copy {
    padding: 0;
  }

  .free-space-visual {
    min-height: 340px;
    border-width: 7px;
  }

  .free-space-photo--main span {
    left: 14px;
    top: 14px;
    min-height: 28px;
    font-size: 0.72rem;
  }

  .free-space-photo--sub {
    top: 48px;
    right: 12px;
    width: min(52%, 190px);
    border-width: 4px;
  }

  .free-space-photo--sub span {
    left: 6px;
    right: 6px;
    bottom: 6px;
    min-height: 26px;
    font-size: 0.68rem;
  }

  .free-space-visual figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 12px 14px;
    font-size: 0.88rem;
  }

  .free-space-panel {
    padding: 14px;
  }

  .free-space-prices {
    grid-template-columns: 1fr;
  }

  .free-space-price {
    min-height: auto;
    padding: 20px;
  }

  .free-space-price strong {
    font-size: 1.9rem;
  }

  .free-space-specs div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 15px 16px;
  }

  .free-space-rules span {
    min-height: 34px;
    font-size: 0.8rem;
  }

















  .archive-page-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow-x: visible;
    padding-bottom: 0;
  }

  .archive-page-nav__link {
    justify-content: center;
    min-height: 38px;
    padding: 7px 12px;
    font-size: 0.84rem;
  }

  .archive-page-intro .section__lead {
    max-width: 18em;
  }

  .archive-page-summary {
    grid-template-columns: 1fr 1fr;
  }

  .archive-page-stat {
    min-height: 82px;
    padding: 13px;
  }

  .page-archive-gateway .page-hero__title {
    max-width: 12em;
    font-size: 1.88rem;
  }

  .archive-gateway__stats {
    grid-template-columns: 1fr;
  }

  .archive-gateway__stats div {
    min-height: 76px;
    padding: 14px 16px;
  }

  .archive-gateway__stats span {
    font-size: 1.72rem;
  }

  .archive-gateway__year-links {
    grid-template-columns: 1fr;
  }

  .archive-record-section__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .archive-entry-feed {
    gap: 22px;
  }

  .archive-entry__head {
    padding: 22px 20px 16px;
  }

  .archive-entry__photos {
    padding: 0 20px 20px;
  }

  .archive-entry__photos--two {
    grid-template-columns: 1fr;
  }

  .archive-entry__body {
    padding: 0 20px 20px;
  }





  .hero-compare-intro {
    padding-top: 92px;
  }

  .hero-compare-intro h1 {
    font-size: 1.65rem;
  }

  .hero-lab__inner {
    padding-top: calc(var(--header-height) + clamp(18px, 5svh, 34px));
    padding-bottom: clamp(28px, 6svh, 46px);
  }

  .hero-lab--home .hero-lab__inner {
    min-height: var(--hero-height);
    padding-top: calc(var(--header-height) + clamp(18px, 5svh, 34px));
    padding-bottom: clamp(28px, 6svh, 46px);
    align-content: center;
    align-items: center;
  }

  .hero-lab--fresh-beach::before {
    background-image: url("../kanzaki_image02.opt.webp");
    background-position: 55% center;
  }

  .hero-lab__mark {
    font-size: clamp(2.65rem, 10vw, 3.35rem);
  }

  .hero-lab--fresh-beach .hero-lab__label {
    font-size: 0.88rem;
  }

  .hero-lab--fresh-beach .hero-lab__mark {
    font-size: clamp(2.72rem, 11.2vw, 3.48rem);
    -webkit-text-stroke-width: 2.5px;
  }

  .hero-lab__lead {
    font-size: 0.95rem;
  }

  .hero-lab--fresh-beach .hero-lab__lead {
    max-width: 100%;
    font-size: 0.94rem;
    line-height: 1.68;
    word-break: normal;
    overflow-wrap: anywhere;
    line-break: strict;
  }

  .sp-break {
    display: block;
  }

  .hero-lab__chips span {
    min-height: 34px;
    font-size: 0.8rem;
  }

  .hero-lab--fresh-beach .hero-lab__actions {
    margin-top: clamp(22px, 4svh, 30px);
    margin-bottom: 0;
  }

  .hero-lab__actions .button {
    min-height: 52px;
    padding-inline: clamp(16px, 4.4vw, 22px);
  }

  .hero-lab__album {
    display: none;
  }

  .hero-lab__photo {
    border-width: 6px;
  }

  .hero-lab__photo--bbq {
    width: 230px;
    height: 172px;
  }

  .hero-lab__photo--place {
    width: 172px;
    height: 129px;
  }

  .page-hero--soft-photo {
    min-height: clamp(220px, 32vh, 280px);
    padding: 94px 0 40px;
  }

  .page-hero__title {
    width: var(--container);
    font-size: clamp(1.85rem, 9vw, 2.5rem);
  }

  .page-hero__title::after {
    width: 58px;
    margin-top: 14px;
  }

  .hero {
    min-height: 86vh;
  }

  .section {
    padding: 64px 0;
  }

  .overview {
    grid-template-columns: 1fr;
  }

  .overview dt {
    border-bottom: 0;
    padding-bottom: 4px;
  }

  .overview dd {
    padding-top: 4px;
  }

  .floating-cta {
    left: auto;
    right: 14px;
    bottom: 14px;
    justify-content: center;
    width: 92px;
    min-height: 46px;
    padding: 0 14px;
    font-size: 0;
    line-height: 1.2;
    white-space: nowrap;
  }

  .floating-cta::after {
    content: "予約";
    font-size: 0.9rem;
    font-weight: 900;
  }

  .section--plans {
    padding-bottom: 96px;
  }
}
/* Plan page refinements */
.info-card.info-card--photo {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.info-card__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.info-card--photo > div {
  padding: 18px;
}

.info-card--photo h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.info-card--photo p {
  margin: 0;
}

.section--flow-compact {
  padding-top: 58px;
  padding-bottom: 58px;
}

.section--flow-compact .section__header {
  max-width: 940px;
  margin-bottom: 24px;
}

.section--flow-compact .section__title {
  max-width: 940px;
  font-size: clamp(1.8rem, 1.18rem + 1.9vw, 2.48rem);
  line-height: 1.28;
  text-wrap: auto;
}

.section--flow-compact .timeline {
  max-width: 900px;
  gap: 14px;
}

.section--flow-compact .timeline__item {
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
}

.section--flow-compact .timeline__num {
  width: 46px;
  height: 46px;
  font-size: 1rem;
}

.section--flow-compact .timeline__item h3 {
  margin: 0 0 6px;
  font-size: 1.08rem;
}

.section--flow-compact .timeline__item p {
  margin: 0;
}

@media (max-width: 640px) {
  .section--flow-compact {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .section--flow-compact .timeline__item {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .section--flow-compact .timeline__num {
    width: 38px;
    height: 38px;
    font-size: .9rem;
  }
}

/* Home page restructure */
.section--home-strengths {
  padding-bottom: 62px;
  background:
    linear-gradient(180deg, rgba(248, 251, 249, .9), rgba(255, 255, 255, 1) 72%, #fffaf0 100%),
    var(--color-white);
}

.page-home .section__eyebrow {
  position: relative;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0 0 0 22px;
  color: #8a6a45;
  font-size: 0.78rem;
  letter-spacing: .08em;
}

.page-home .section__eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translateY(-50%);
}

.section--home-strengths .section__eyebrow {
  padding-left: 0;
  padding-bottom: 9px;
  border-bottom: 2px solid rgba(138, 106, 69, .34);
}

.section--home-strengths .section__eyebrow::before {
  content: none;
}

.section--home-flow .section__eyebrow {
  display: inline-grid;
  place-items: center;
  min-width: 96px;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(36, 71, 95, .22);
  color: var(--color-deep);
  letter-spacing: 0;
}

.section--home-flow .section__eyebrow::before {
  content: none;
}

.section--experience .section__eyebrow {
  color: #2f82c4;
}

.section--experience .section__eyebrow::before {
  width: 18px;
  height: 8px;
  border: 0;
  border-bottom: 3px solid currentColor;
  border-radius: 50%;
}

.section--local-around .section__eyebrow {
  padding-left: 0;
  color: var(--color-deep);
}

.section--local-around .section__eyebrow::before {
  content: none;
}

.section--local-around .section__eyebrow::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 8px;
  background: #e26d5c;
}


.section--sand .section__eyebrow {
  align-items: center;
  gap: 12px;
  width: auto;
  margin-left: 0;
  padding-left: 12px;
  color: var(--color-brown);
  white-space: nowrap;
}

.section--sand .section__eyebrow::before {
  content: none;
}

.section--sand .section__eyebrow::after {
  content: "";
  display: block;
  flex: 0 0 58px;
  width: 58px;
  height: 1px;
  margin-top: 0;
  background: rgba(138, 106, 69, .36);
}

.section--home-strengths .section__title,
.section--plans .section__title,
.section--home-flow .section__title,
.section--experience .section__title,
.section--free-space .section__title,
.section--sand .section__title {
  max-width: 760px;
  font-size: clamp(1.72rem, 1.18rem + 1.65vw, 2.42rem);
  line-height: 1.48;
  text-wrap: pretty;
}

.section--home-strengths .section__header--center .section__title,
.section--plans .section__header--center .section__title,
.section--home-flow .section__header--center .section__title {
  margin-left: auto;
  margin-right: auto;
}

.section--home-strengths .section__header--center .section__title {
  max-width: 1040px;
  font-size: clamp(1.72rem, 1.08rem + 1.7vw, 2.28rem);
  white-space: nowrap;
}

.home-strength-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-strength-card {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid rgba(36, 71, 95, .1);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(31, 48, 64, .07);
}

.home-strength-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, #e26d5c, #f0d5a4, #4a90e2);
}

.home-strength-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.home-strength-card div {
  padding: 22px 24px 26px;
}

.voice-highlight span,
.home-closing-cta__inner > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 28px;
  padding: 0 10px;
  border-radius: 3px;
  background: #fff8e8;
  color: #8a6a45;
  font-family: var(--font-en);
  font-size: .72rem;
  font-weight: 800;
}

.home-strength-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(138, 106, 69, .22);
  border-radius: 50%;
  background: #fff8e8;
}

.home-strength-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-strength-icon--bbq {
  color: #8a6a45;
  background: #fff5dc;
}

.home-strength-icon--sea {
  color: #2f82c4;
  background: #eef8ff;
}

.home-strength-icon--care {
  color: #5f8f57;
  background: #f2faef;
}

.home-strength-card h3,
.home-flow-card h3 {
  margin: 14px 0 8px;
  color: var(--color-deep);
  font-size: 1.12rem;
}

.home-strength-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
}

.home-strength-card p,
.home-flow-card p {
  margin: 0;
  line-height: 1.85;
}

.section--home-flow {
  padding-top: 84px;
  padding-bottom: 88px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 248, 0.98)),
    linear-gradient(90deg, rgba(74, 144, 226, 0.08), rgba(226, 109, 92, 0.07));
}

.home-flow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.home-flow-grid::before {
  content: none;
}

.home-flow-card {
  position: relative;
  z-index: 1;
  min-height: 178px;
  padding: 24px 24px 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(250, 253, 253, .96));
  border: 1px solid rgba(36, 71, 95, .1);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(31, 48, 64, .08);
}

.home-flow-card::before {
  content: none;
}

.home-flow-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(36, 71, 95, .1);
  font-size: 1.18rem;
  line-height: 1.45;
}

.home-flow-card h3::before {
  content: "";
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #4a90e2;
  box-shadow: 0 0 0 5px rgba(74, 144, 226, .1);
}

.home-flow-card:nth-child(2) h3::before {
  background: #5f8f57;
  box-shadow: 0 0 0 5px rgba(95, 143, 87, .1);
}

.home-flow-card:nth-child(3) h3::before {
  background: #e26d5c;
  box-shadow: 0 0 0 5px rgba(226, 109, 92, .1);
}

.home-flow-card:nth-child(4) h3::before {
  background: #8a6a45;
  box-shadow: 0 0 0 5px rgba(138, 106, 69, .1);
}

.home-flow-card p {
  color: rgba(36, 71, 95, .84);
  font-weight: 600;
}

.section--experience {
  background:
    linear-gradient(90deg, rgba(244, 249, 249, .88), rgba(255, 255, 255, 1));
}

.message-quote {
  display: grid;
  gap: 8px;
  margin: 22px 0;
  padding: 18px 0 18px 22px;
  border-left: 4px solid rgba(138, 106, 69, .42);
  border-radius: 0;
  background: transparent;
  color: var(--color-deep);
}

.message-quote p {
  margin: 0;
  font-size: clamp(1.04rem, .95rem + .42vw, 1.26rem);
  font-weight: 800;
  line-height: 1.85;
}

.message-quote cite {
  color: var(--color-muted);
  font-style: normal;
  font-weight: 700;
}

.voice-highlight {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 34px;
  padding: 20px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.section--memory-gateway {
  padding: 78px 0 72px;
}

.section--memory-gateway .section__header {
  max-width: 720px;
  margin-bottom: 28px;
}

.section--memory-gateway .section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: auto;
  white-space: nowrap;
  font-size: .94rem;
}

.section--memory-gateway .section__eyebrow::after {
  flex: 0 0 58px;
  width: 58px;
  margin-top: 0;
}

.section--memory-gateway .voice-highlight {
  margin-bottom: 0;
}

.section--memory-gateway .voice-highlight p {
  max-width: 520px;
  margin: 0 0 20px;
  color: #526879;
  font-weight: 700;
  line-height: 1.8;
}

.voice-highlight figure {
  overflow: hidden;
  margin: 0;
  border-radius: calc(var(--radius) - 2px);
}

.voice-highlight img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.voice-highlight blockquote {
  margin: 16px 0 12px;
  color: var(--color-deep);
  font-size: clamp(1.24rem, 1rem + .9vw, 1.72rem);
  font-weight: 900;
  line-height: 1.62;
}

.home-closing-cta {
  padding: 78px 0;
  background:
    linear-gradient(rgba(15, 43, 61, .74), rgba(15, 43, 61, .74)),
    url("../img/hero-kanzaki-beach-v3-family-bright.opt.webp") center/cover;
  color: var(--color-white);
}

.home-closing-cta__inner {
  max-width: 860px;
}

.home-closing-cta__inner > span {
  background: rgba(255, 255, 255, .92);
}

.home-closing-cta h2 {
  margin: 18px 0 14px;
  color: var(--color-white);
  font-size: clamp(1.86rem, 1.28rem + 2.2vw, 3.1rem);
  line-height: 1.32;
  text-wrap: pretty;
}

.home-closing-cta p {
  max-width: min(100%, 880px);
  margin: 0;
  font-weight: 700;
  line-height: 1.9;
}

.home-closing-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.home-closing-cta .home-closing-cta__button[href^="tel:"]::before,
.home-closing-cta__button::after {
  content: none;
}

.button-icon {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.button-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-closing-cta .button--line {
  color: #fff;
  border-color: rgba(255, 255, 255, .62);
}

.home-closing-cta .button--line:hover {
  background: rgba(255, 255, 255, .94);
  color: var(--color-deep);
  border-color: rgba(255, 255, 255, .94);
  box-shadow: 0 13px 28px rgba(255, 255, 255, .16);
}

@media (max-width: 940px) {
  .home-strength-grid,
  .voice-highlight {
    grid-template-columns: 1fr;
  }

  .home-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .home-flow-grid::before {
    content: none;
  }

  .home-strength-card {
    border-bottom: 1px solid rgba(36, 71, 95, .12);
  }

  .home-strength-card:last-child {
    border-bottom: 0;
  }

  .home-flow-card {
    min-height: auto;
    padding: 22px;
  }

  .home-flow-card::before {
    content: none;
  }
}

@media (max-width: 640px) {
  .section--home-strengths .section__title,
  .section--plans .section__title,
  .section--home-flow .section__title,
  .section--experience .section__title,
  .section--free-space .section__title,
  ,
  .section--sand .section__title {
    font-size: 1.48rem;
    line-height: 1.58;
  }

  .section--home-strengths .section__header--center .section__title {
    max-width: 100%;
    white-space: normal;
  }

  .section__title--plan-choice,
  .section__title--winter-bbq {
    white-space: normal;
  }

  .home-strength-card div,
  .home-flow-card,
  .message-quote,
  .voice-highlight {
    padding: 18px;
  }

  .section--home-flow {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .home-flow-grid {
    grid-template-columns: 1fr;
  }

  .home-closing-cta {
    padding: 58px 0;
  }
}

/* Home redesign: editorial guide sections */
.section--home-guide {
  position: relative;
  overflow: hidden;
  padding-top: 90px;
  padding-bottom: 76px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96) 0%, rgba(244, 250, 252, .92) 46%, rgba(255, 248, 232, .88) 100%),
    repeating-linear-gradient(90deg, rgba(138, 106, 69, .045) 0 1px, transparent 1px 58px);
}

.section--home-guide::before {
  content: "";
  position: absolute;
  left: max(22px, calc((100vw - 1180px) / 2));
  right: max(22px, calc((100vw - 1180px) / 2));
  top: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(36, 71, 95, .2), transparent);
}

.home-guide-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(390px, 1.08fr);
  grid-template-areas:
    "copy main"
    "notes main"
    "sea main";
  gap: 22px 34px;
  align-items: start;
}

.home-guide-copy {
  grid-area: copy;
  padding-top: 24px;
}

.home-guide-copy .section__title,
.price-guide-head .section__title,
.route-guide-head .section__title {
  margin-top: 14px;
  margin-bottom: 18px;
  max-width: 760px;
}

.home-guide-copy p,
.price-guide-head p,
.route-guide-head p {
  max-width: 620px;
  margin: 0;
  color: rgba(36, 71, 95, .76);
  font-weight: 700;
  line-height: 1.9;
}

.home-guide-photo {
  position: relative;
  margin: 0;
  background: #fff;
  box-shadow: 0 24px 54px rgba(35, 54, 68, .14);
}

.home-guide-photo img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.home-guide-photo figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  max-width: calc(100% - 36px);
  padding: 8px 12px;
  background: rgba(255, 255, 255, .92);
  color: var(--color-deep);
  font-size: .84rem;
  font-weight: 800;
  line-height: 1.55;
}

.home-guide-photo--main {
  grid-area: main;
  padding: 10px;
  transform: rotate(.6deg);
}

.home-guide-photo--main img {
  min-height: 560px;
  aspect-ratio: 4 / 5;
}

.home-guide-photo--sea {
  grid-area: sea;
  align-self: end;
  max-width: 520px;
  padding: 8px;
  transform: rotate(-1.2deg);
}

.home-guide-photo--sea img {
  aspect-ratio: 16 / 7;
}

.home-guide-notes {
  grid-area: notes;
  display: grid;
  gap: 12px;
}

.home-guide-note {
  position: relative;
  padding: 18px 20px 18px 74px;
  border: 1px solid rgba(138, 106, 69, .18);
  background:
    linear-gradient(180deg, rgba(255, 253, 246, .98), rgba(255, 248, 232, .94));
  box-shadow: 0 14px 30px rgba(35, 54, 68, .08);
}

.home-guide-note::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 20px;
  width: 34px;
  height: 2px;
  background: #e26d5c;
  box-shadow: 0 8px 0 rgba(74, 144, 226, .5);
}

.home-guide-note span,
.route-point span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  padding: 3px 8px;
  background: #24475f;
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
  line-height: 1.2;
}

.home-guide-note h3,
.price-menu h3,
.route-point h3 {
  margin: 0;
  color: var(--color-deep);
  line-height: 1.45;
}

.home-guide-note h3 {
  font-size: 1.08rem;
}

.home-guide-note p,
.price-menu p,
.route-point p {
  margin: 8px 0 0;
  color: rgba(36, 71, 95, .78);
  font-weight: 700;
  line-height: 1.78;
}

.section--price-guide {
  padding-top: 86px;
  padding-bottom: 88px;
  background:
    radial-gradient(circle at 12% 12%, rgba(74, 144, 226, .13), transparent 28%),
    linear-gradient(180deg, #fff8e8 0%, #f7fbfb 58%, #ffffff 100%);
}

.price-guide-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .72fr);
  gap: 24px 46px;
  align-items: end;
  margin-bottom: 28px;
}

.price-guide-head .plan-kicker {
  grid-column: 1 / -1;
  justify-self: start;
  border-radius: 0;
  background: #24475f;
  color: #fff;
}

.price-guide-head .section__title {
  margin-bottom: 0;
}

.price-guide-head p {
  padding: 0 0 6px 18px;
  border-left: 3px solid rgba(226, 109, 92, .55);
}

.price-board {
  display: grid;
  grid-template-columns: minmax(310px, .86fr) minmax(0, 1.14fr);
  gap: 0;
  overflow: hidden;
  border: 10px solid #fff;
  background:
    linear-gradient(180deg, rgba(255, 253, 246, .98), rgba(255, 248, 232, .96));
  box-shadow: 0 28px 70px rgba(35, 54, 68, .14);
}

.price-board__photo {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

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

.price-board__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15, 43, 61, .58));
}

.price-board__photo span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: #fff;
  font-weight: 900;
  line-height: 1.7;
  text-shadow: 0 10px 26px rgba(0, 0, 0, .3);
}

.price-board__menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-content: start;
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(138, 106, 69, .08) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 255, 255, .62), rgba(255, 248, 232, .82));
  background-size: 100% 100%, 100% 100%;
}

.price-menu {
  position: relative;
  padding: 24px 22px 22px;
  border: 1px solid rgba(138, 106, 69, .18);
  background: rgba(255, 255, 255, .82);
}

.price-menu::before {
  content: "";
  position: absolute;
  left: 22px;
  top: -9px;
  width: 78px;
  height: 18px;
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 4px 12px rgba(35, 54, 68, .08);
  transform: rotate(-2deg);
}

.price-menu .plan-label {
  margin-bottom: 12px;
  color: #8a6a45;
}

.price-menu h3 {
  font-size: 1.5rem;
}

.price-list {
  display: grid;
  gap: 1px;
  margin: 18px 0 0;
  border-top: 2px solid rgba(36, 71, 95, .18);
}

.price-list div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(36, 71, 95, .12);
}

.price-list dt {
  color: var(--color-deep);
  font-weight: 900;
}

.price-list dd {
  margin: 0;
  color: var(--color-accent);
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.price-board__notes {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.price-board__notes p {
  margin: 0;
  padding: 14px 14px 14px 16px;
  background: #fff8e8;
  color: rgba(36, 71, 95, .78);
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.7;
}

.price-board__notes span {
  display: block;
  width: fit-content;
  margin-bottom: 5px;
  padding: 2px 7px;
  background: #24475f;
  color: #fff;
  font-size: .72rem;
  line-height: 1.2;
}

.price-board__button {
  grid-column: 1 / -1;
  justify-self: start;
  min-height: 50px;
  margin-top: 4px;
  border-radius: 0;
  box-shadow: 7px 7px 0 rgba(138, 106, 69, .16);
}

.section--route-guide {
  position: relative;
  overflow: hidden;
  padding-top: 86px;
  padding-bottom: 94px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f0f8fb 100%),
    repeating-linear-gradient(0deg, rgba(74, 144, 226, .04) 0 1px, transparent 1px 54px);
}

.route-guide-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, .72fr);
  gap: 20px 42px;
  align-items: end;
  margin-bottom: 30px;
}

.route-guide-head .section__eyebrow {
  grid-column: 1 / -1;
  justify-self: start;
}

.route-guide-head .section__title {
  margin-bottom: 0;
}

.route-map {
  position: relative;
  min-height: 480px;
  padding: 38px;
  border: 1px solid rgba(74, 144, 226, .16);
  background:
    radial-gradient(circle at 22% 24%, rgba(74, 144, 226, .13), transparent 24%),
    radial-gradient(circle at 72% 70%, rgba(226, 109, 92, .1), transparent 25%),
    rgba(255, 255, 255, .82);
  box-shadow: 0 24px 58px rgba(35, 54, 68, .1);
}

.route-map__line {
  position: absolute;
  left: 90px;
  right: 110px;
  top: 50%;
  height: 76px;
  border-top: 4px solid rgba(74, 144, 226, .58);
  border-radius: 50%;
  transform: translateY(-50%);
}

.route-map__line::after {
  content: "";
  position: absolute;
  right: -8px;
  top: -8px;
  width: 16px;
  height: 16px;
  border-top: 4px solid rgba(74, 144, 226, .58);
  border-right: 4px solid rgba(74, 144, 226, .58);
  transform: rotate(45deg);
}

.route-point {
  position: absolute;
  z-index: 1;
  width: min(245px, 24%);
  padding: 18px 18px 20px;
  border: 1px solid rgba(36, 71, 95, .12);
  background: rgba(255, 255, 255, .93);
  box-shadow: 0 16px 34px rgba(35, 54, 68, .09);
}

.route-point::after {
  content: "";
  position: absolute;
  left: 22px;
  bottom: -8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e26d5c;
  box-shadow: 0 0 0 6px rgba(226, 109, 92, .14);
}

.route-point--consult {
  left: 38px;
  top: 48px;
}

.route-point--arrival {
  left: 27%;
  bottom: 42px;
}

.route-point--bbq {
  right: 28%;
  top: 54px;
}

.route-point--care {
  right: 38px;
  bottom: 54px;
}

.route-map__photo {
  position: absolute;
  z-index: 0;
  margin: 0;
  padding: 7px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(35, 54, 68, .1);
}

.route-map__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-map__photo--sea {
  left: 42%;
  top: 38%;
  width: 220px;
  height: 118px;
  transform: rotate(-2deg);
}

.route-map__photo--bbq {
  right: 18%;
  bottom: 28px;
  width: 200px;
  height: 132px;
  transform: rotate(2deg);
}

@media (min-width: 941px) {
  .home-guide-layout {
    padding-bottom: 0;
  }

  .home-guide-photo--sea {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
    width: auto;
  }

  .home-guide-photo--sea img {
    aspect-ratio: 16 / 5;
  }
}

@media (max-width: 940px) {
  .home-guide-layout,
  .price-board,
  .price-guide-head,
  .route-guide-head {
    grid-template-columns: 1fr;
  }

  .home-guide-layout {
    grid-template-areas:
      "copy"
      "main"
      "notes"
      "sea";
  }

  .home-guide-copy {
    padding-top: 0;
  }

  .home-guide-photo--main {
    transform: none;
  }

  .home-guide-photo--main img {
    min-height: 420px;
    aspect-ratio: 16 / 10;
  }

  .home-guide-photo--sea {
    max-width: none;
  }

  .price-board__photo {
    min-height: 320px;
  }

  .price-board__menu {
    grid-template-columns: 1fr;
  }

  .price-board__notes {
    grid-template-columns: 1fr;
  }

  .route-map {
    min-height: 0;
    display: grid;
    gap: 14px;
    padding: 28px;
  }

  .route-map__line {
    left: 46px;
    right: auto;
    top: 30px;
    bottom: 30px;
    width: 4px;
    height: auto;
    border-top: 0;
    border-left: 4px solid rgba(74, 144, 226, .58);
    border-radius: 0;
    transform: none;
  }

  .route-map__line::after {
    right: auto;
    left: -10px;
    top: auto;
    bottom: -2px;
    transform: rotate(135deg);
  }

  .route-point,
  .route-map__photo {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
  }

  .route-point {
    margin-left: 42px;
  }

  .route-point::after {
    left: -35px;
    top: 22px;
    bottom: auto;
  }

  .route-map__photo {
    display: none;
  }
}

@media (max-width: 640px) {
  .section--home-guide,
  .section--price-guide,
  .section--route-guide {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .home-guide-layout {
    gap: 16px;
  }

  .home-guide-copy .section__title,
  .price-guide-head .section__title,
  .route-guide-head .section__title {
    font-size: 1.48rem;
    line-height: 1.58;
  }

  .home-guide-photo--main,
  .home-guide-photo--sea,
  .price-board {
    border-width: 6px;
  }

  .home-guide-photo--main img {
    min-height: 300px;
    aspect-ratio: 4 / 3;
  }

  .home-guide-note {
    padding: 16px 16px 18px 58px;
  }

  .home-guide-note::before {
    left: 16px;
    width: 25px;
  }

  .price-board__menu {
    padding: 18px;
  }

  .price-menu {
    padding: 22px 18px 20px;
  }

  .price-list dd {
    font-size: 1.28rem;
  }

  .price-list div {
    padding-right: 78px;
  }

  .price-menu {
    padding-bottom: 72px;
  }

  .route-map {
    padding: 20px 18px 20px 16px;
  }

  .route-map__line {
    left: 27px;
  }

  .route-point {
    margin-left: 32px;
    padding: 16px;
  }

  .route-point::after {
    left: -27px;
  }
}

/* Home redesign pass 2: move closer to the approved mock */
.section--home-guide {
  padding-top: 76px;
  padding-bottom: 56px;
  background:
    radial-gradient(circle at 6% 84%, rgba(74, 144, 226, .12), transparent 16%),
    radial-gradient(circle at 94% 84%, rgba(226, 109, 92, .09), transparent 16%),
    linear-gradient(180deg, #fbf7ee 0%, #fffdf7 55%, #f6efe3 100%);
}

.section--home-guide::before {
  left: 0;
  right: 0;
  top: 0;
  height: 8px;
  background: linear-gradient(90deg, #e3caa1, #f7efe0, #99c9df);
}

.home-guide-layout {
  grid-template-columns: minmax(220px, .72fr) minmax(360px, 1.12fr) minmax(250px, .72fr);
  grid-template-areas:
    "copy main notes"
    "sea sea notes";
  gap: 22px 28px;
  align-items: start;
  padding: 0 0 18px;
}

.home-guide-copy {
  padding-top: 42px;
  z-index: 2;
}

.home-guide-copy .section__eyebrow {
  display: inline-flex;
  padding: 0 0 7px;
  border-bottom: 2px solid rgba(36, 71, 95, .22);
  background: transparent;
  color: #16466f;
  letter-spacing: .06em;
}

.home-guide-copy .section__title {
  max-width: 380px;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #0f4775;
  font-size: 2.05rem;
  line-height: 1.62;
}

.home-guide-copy p {
  max-width: 330px;
  color: rgba(33, 58, 76, .84);
  font-size: .96rem;
  font-weight: 800;
  line-height: 2.05;
}

.home-guide-wave {
  display: block;
  width: 120px;
  height: 18px;
  margin-top: 28px;
  border-top: 3px solid rgba(74, 144, 226, .72);
  border-bottom: 2px solid rgba(74, 144, 226, .38);
  border-radius: 50%;
  transform: rotate(-5deg);
}

.home-guide-photo {
  border: 10px solid #fff;
  background: #fff;
  box-shadow: 0 18px 30px rgba(44, 54, 58, .2);
}

.home-guide-photo img {
  height: 100%;
  object-fit: cover;
}

.home-guide-photo figcaption {
  left: 14px;
  right: 14px;
  bottom: 12px;
  max-width: none;
  padding: 8px 11px;
  background: rgba(255, 255, 255, .88);
  color: #16466f;
  font-size: .76rem;
  text-align: center;
}

.home-guide-photo--main {
  z-index: 1;
  width: min(100%, 560px);
  justify-self: center;
  padding: 0;
  transform: rotate(2.2deg);
}

.home-guide-photo--main::before,
.home-guide-photo--sea::before {
  content: "";
  position: absolute;
  left: 42%;
  top: -18px;
  z-index: 2;
  width: 118px;
  height: 30px;
  background: rgba(221, 193, 145, .72);
  box-shadow: 0 4px 10px rgba(44, 54, 58, .12);
  transform: rotate(5deg);
}

.home-guide-photo--main img {
  min-height: 0;
  aspect-ratio: 4 / 3.25;
}

.home-guide-photo--sea {
  z-index: 2;
  max-width: 720px;
  margin-top: -24px;
  padding: 0;
  transform: rotate(-3deg);
}

.home-guide-photo--sea::before {
  left: 6%;
  top: -15px;
  width: 90px;
  height: 24px;
  transform: rotate(-9deg);
}

.home-guide-photo--sea img {
  aspect-ratio: 16 / 6.4;
}

.home-guide-notes {
  position: relative;
  grid-area: notes;
  gap: 22px;
  padding: 22px 16px 24px;
  border: 1px solid rgba(88, 59, 33, .18);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .06), transparent 22%, rgba(255, 255, 255, .08) 56%, transparent),
    repeating-linear-gradient(90deg, #b98c58 0 24px, #c79c67 24px 48px, #a97845 48px 72px);
  box-shadow: 0 18px 38px rgba(44, 54, 58, .22);
  transform: rotate(.5deg);
}

.home-guide-notes::after {
  content: "";
  position: absolute;
  right: -12px;
  bottom: -12px;
  width: 74px;
  height: 74px;
  border-right: 5px solid rgba(74, 144, 226, .48);
  border-bottom: 5px solid rgba(74, 144, 226, .48);
  transform: rotate(10deg);
}

.home-guide-note {
  position: relative;
  padding: 22px 22px 20px;
  border: 1px solid rgba(138, 106, 69, .22);
  background:
    linear-gradient(180deg, rgba(255, 253, 245, .98), rgba(248, 238, 218, .98));
  box-shadow: 0 12px 22px rgba(44, 54, 58, .18);
}

.home-guide-note:nth-child(2) {
  transform: translateX(12px) rotate(-1.4deg);
}

.home-guide-note:nth-child(3) {
  transform: translateX(-8px) rotate(1.6deg);
}

.home-guide-note::before {
  left: 50%;
  top: -12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #66715f;
  box-shadow: 0 3px 0 rgba(44, 54, 58, .2);
  transform: translateX(-50%);
}

.home-guide-note__tag {
  display: block;
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 10px 6px;
  border-bottom: 0;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.25;
  box-shadow: 3px 3px 0 rgba(10, 52, 73, .13);
}

.home-guide-note:nth-child(1) .home-guide-note__tag {
  background: #18bfe8;
  color: #073d55;
}

.home-guide-note:nth-child(2) .home-guide-note__tag {
  background: #0b70dc;
}

.home-guide-note:nth-child(3) .home-guide-note__tag {
  background: #ff751f;
  color: #062f45;
}

.home-guide-note p {
  margin-top: 0;
  color: rgba(33, 58, 76, .82);
  font-size: .88rem;
  line-height: 1.9;
}

.section--price-guide {
  padding-top: 34px;
  padding-bottom: 34px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .09), transparent 18%, rgba(255, 255, 255, .1) 52%, transparent),
    repeating-linear-gradient(0deg, #9b7048 0 28px, #aa8054 28px 34px, #8f623f 34px 68px);
}

.price-board {
  display: block;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.price-board__head {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 24px;
}

.price-board__head .plan-kicker {
  position: relative;
  display: inline-flex;
  min-width: 210px;
  justify-content: center;
  padding: 12px 22px;
  background: #fff9ee;
  color: #0f4775;
  box-shadow: 0 5px 0 rgba(65, 42, 23, .2);
  font-size: 1.35rem;
  font-weight: 900;
}

.price-board__head .plan-kicker::before,
.price-board__head .plan-kicker::after {
  content: "";
  position: absolute;
  top: 0;
  width: 18px;
  height: 100%;
  background:
    linear-gradient(135deg, transparent 0 50%, #fff9ee 51%) top / 100% 18px repeat-y,
    linear-gradient(45deg, transparent 0 50%, #fff9ee 51%) bottom / 100% 18px repeat-y;
}

.price-board__head .plan-kicker::before {
  left: -18px;
}

.price-board__head .plan-kicker::after {
  right: -18px;
  transform: scaleX(-1);
}

.price-board__head p {
  margin: 0;
  color: rgba(255, 255, 255, .92);
  font-weight: 900;
}

.price-board__papers {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(260px, .72fr);
  gap: 22px;
  align-items: stretch;
}

.price-menu,
.price-board__notes,
.price-board__contact {
  border: 1px solid rgba(88, 59, 33, .18);
  background:
    linear-gradient(180deg, rgba(255, 253, 246, .98), rgba(248, 238, 218, .98));
  box-shadow: 0 18px 30px rgba(42, 28, 16, .26);
}

.price-menu {
  padding: 32px 30px 28px;
  text-align: center;
}

.price-menu::before,
.price-board__notes::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -17px;
  width: 116px;
  height: 30px;
  background: rgba(255, 255, 255, .6);
  box-shadow: 0 5px 10px rgba(42, 28, 16, .13);
  transform: translateX(-50%) rotate(-2deg);
}

.price-menu--bring {
  transform: translateY(10px);
}

.price-menu h3,
.price-board__notes h3 {
  margin: 0;
  color: #0f4775;
  font-size: 1.35rem;
  line-height: 1.45;
}

.price-menu__sub {
  margin: 8px 0 16px;
  color: rgba(33, 58, 76, .84);
  font-size: .88rem;
  font-weight: 900;
}

.price-menu__photo {
  margin: 0 0 18px;
  padding: 8px;
  background: #fff;
  box-shadow: 0 10px 18px rgba(42, 28, 16, .16);
}

.price-menu__photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 5.2;
  object-fit: cover;
}

.price-menu__main {
  margin: 0 0 18px;
  color: #0f4775;
  font-weight: 900;
}

.price-menu__main span {
  font-family: var(--font-en);
  font-size: 2.6rem;
  line-height: 1;
}

.price-menu__main small {
  display: inline-block;
  margin-left: 8px;
  color: rgba(33, 58, 76, .78);
  font-size: .72rem;
  font-weight: 900;
}

.price-list {
  gap: 8px;
  margin: 0;
  border-top: 0;
  text-align: left;
}

.price-list div {
  gap: 8px;
  justify-content: flex-start;
  padding: 0;
  border-bottom: 0;
}

.price-list dt {
  position: relative;
  padding-left: 17px;
  color: rgba(33, 58, 76, .86);
  font-size: .86rem;
  line-height: 1.75;
}

.price-list dt::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4a90e2;
}

.price-list dd {
  color: rgba(33, 58, 76, .74);
  font-family: inherit;
  font-size: .82rem;
}

.price-menu__child {
  margin: 18px 0 0;
  padding: 12px 10px;
  background: rgba(226, 200, 151, .42);
  color: rgba(33, 58, 76, .9);
  font-size: .86rem;
  font-weight: 900;
}

.price-board__notes {
  position: relative;
  grid-column: auto;
  display: block;
  padding: 34px 26px 26px;
  transform: rotate(.7deg);
}

.price-board__notes h3 + p {
  margin-top: 18px;
}

.price-board__notes p {
  margin: 0 0 18px;
  padding: 0;
  background: transparent;
  color: rgba(33, 58, 76, .86);
  font-size: .92rem;
  line-height: 1.85;
}

.price-board__notes span {
  display: block;
  width: fit-content;
  margin-bottom: 4px;
  padding: 0 0 5px;
  border-bottom: 2px solid rgba(74, 144, 226, .35);
  background: transparent;
  color: #0f4775;
  font-size: .86rem;
  font-weight: 900;
}

.price-board__notes ul {
  margin: 14px 0 0;
  padding-left: 1.1em;
  color: rgba(33, 58, 76, .86);
  font-size: .88rem;
  font-weight: 800;
  line-height: 1.9;
}

.price-board__contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 22px;
  align-items: center;
  margin-top: 26px;
  padding: 16px 22px;
  background: #fff9ee;
}

.price-board__contact > span {
  color: #d96f55;
  font-size: 1.14rem;
  font-weight: 900;
}

.price-board__contact p {
  display: grid;
  gap: 2px;
  margin: 0;
  color: #0f4775;
  font-weight: 900;
  text-align: center;
}

.price-board__contact strong {
  font-family: var(--font-en);
  font-size: 1.55rem;
}

.price-board__contact small {
  font-size: .78rem;
}

.price-board__button {
  grid-column: auto;
  justify-self: auto;
  min-height: 52px;
  margin-top: 0;
  border-radius: 0;
  box-shadow: 6px 6px 0 rgba(42, 28, 16, .16);
}

.section--route-guide {
  padding-top: 72px;
  padding-bottom: 82px;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, .82), transparent 24%),
    linear-gradient(180deg, #dff3fb 0%, #eaf8fd 58%, #d7eef8 100%);
}

.route-guide-head {
  grid-template-columns: minmax(0, .7fr) minmax(360px, 1fr);
  margin-bottom: 24px;
}

.route-guide-head .section__eyebrow {
  border: 0;
  background: transparent;
  color: #0f4775;
}

.route-guide-head .section__title {
  color: #0f4775;
  font-size: 2rem;
}

.route-guide-head p {
  color: rgba(33, 58, 76, .78);
  font-size: .92rem;
}

.route-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: 28px 34px;
  min-height: 0;
  padding: 26px 30px 34px;
  border: 0;
  background:
    radial-gradient(circle at 90% 88%, rgba(74, 144, 226, .14), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, .36), rgba(255, 255, 255, .16));
  box-shadow: none;
}

.route-map::before,
.route-map::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.route-map::before {
  left: 4px;
  bottom: 18px;
  width: 120px;
  height: 52px;
  border-bottom: 3px solid rgba(74, 144, 226, .6);
  border-radius: 50%;
}

.route-map::after {
  right: 20px;
  bottom: 22px;
  width: 118px;
  height: 82px;
  border-right: 3px solid rgba(74, 144, 226, .52);
  border-bottom: 3px solid rgba(74, 144, 226, .52);
  border-radius: 0 0 60px 0;
}

.route-map__line {
  position: absolute;
  left: 44px;
  right: 44px;
  top: 115px;
  bottom: 84px;
  z-index: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 360'%3E%3Cpath d='M22 90 C138 210 260 35 398 130 S622 248 752 126 S912 70 978 230' fill='none' stroke='%234a90e2' stroke-width='6' stroke-linecap='round' stroke-dasharray='12 13'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: .5;
  transform: none;
}

.route-map__line::after {
  display: none;
}

.route-spot {
  position: relative;
  z-index: 1;
  text-align: center;
}

.route-spot--station {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
}

.route-spot--reception {
  grid-column: 2;
  grid-row: 1;
}

.route-spot--bbq {
  grid-column: 3;
  grid-row: 1;
}

.route-spot--sea {
  grid-column: 4;
  grid-row: 1;
}

.route-spot--shower {
  grid-column: 2;
  grid-row: 2;
}

.route-spot--cleanup {
  grid-column: 3;
  grid-row: 2;
}

.route-spot figure {
  width: min(100%, 160px);
  margin: 0 auto 12px;
  padding: 7px;
  background: #fff;
  box-shadow: 0 12px 20px rgba(35, 54, 68, .18);
}

.route-spot:nth-of-type(odd) figure {
  transform: rotate(-1.7deg);
}

.route-spot:nth-of-type(even) figure {
  transform: rotate(1.8deg);
}

.route-spot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.route-spot h3 {
  margin: 0 0 7px;
  color: #0f4775;
  font-size: 1rem;
  line-height: 1.45;
}

.route-spot p {
  max-width: 190px;
  margin: 0 auto;
  color: rgba(33, 58, 76, .82);
  font-size: .8rem;
  font-weight: 800;
  line-height: 1.75;
}

@media (max-width: 940px) {
  .home-guide-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "main"
      "sea"
      "notes";
  }

  .home-guide-copy {
    padding-top: 0;
  }

  .home-guide-copy .section__title,
  .home-guide-copy p {
    max-width: 620px;
  }

  .home-guide-photo--main,
  .home-guide-photo--sea,
  .home-guide-notes {
    transform: none;
  }

  .home-guide-photo--main {
    justify-self: start;
  }

  .home-guide-photo--main img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .home-guide-photo--sea {
    max-width: none;
    margin-top: 0;
  }

  .home-guide-notes {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .home-guide-note:nth-child(2),
  .home-guide-note:nth-child(3) {
    transform: none;
  }

  .price-board__papers {
    grid-template-columns: 1fr;
  }

  .price-menu--bring,
  .price-board__notes {
    transform: none;
  }

  .price-board__contact {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .route-guide-head {
    grid-template-columns: 1fr;
  }

  .route-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 24px;
  }

  .route-spot,
  .route-spot--station,
  .route-spot--reception,
  .route-spot--bbq,
  .route-spot--sea,
  .route-spot--shower,
  .route-spot--cleanup {
    grid-column: auto;
    grid-row: auto;
  }

  .route-map__line {
    display: none;
  }
}

@media (min-width: 700px) and (max-width: 940px) {
  .price-board__papers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-board__notes {
    grid-column: 1 / -1;
  }

  .price-board__contact {
    grid-template-columns: minmax(0, 1fr) auto;
    padding-right: 122px;
  }

  .price-board__contact .price-board__button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .floating-cta {
    right: 12px;
    bottom: 12px;
    width: 76px;
    min-height: 44px;
    padding: 0 10px;
    font-size: 0;
    line-height: 1.2;
  }

  .floating-cta::after {
    content: "予約";
    font-size: .84rem;
    font-weight: 900;
  }
}

@media (max-width: 640px) {
  .section--home-guide,
  .section--price-guide,
  .section--route-guide {
    padding-top: 52px;
    padding-bottom: 88px;
  }

  .floating-cta {
    right: 10px;
    bottom: 10px;
    width: 72px;
    min-height: 42px;
    padding: 0 10px;
    box-shadow: 0 10px 24px rgba(226, 109, 92, .22);
  }

  .floating-cta::after {
    font-size: .82rem;
  }

  .home-guide-copy .section__title,
  .route-guide-head .section__title {
    font-size: 1.55rem;
  }

  .home-guide-copy p,
  .route-guide-head p {
    font-size: .88rem;
    line-height: 1.9;
  }

  .home-guide-photo {
    border-width: 7px;
  }

  .home-guide-photo--main img,
  .home-guide-photo--sea img {
    aspect-ratio: 4 / 3;
  }

  .home-guide-notes {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  .home-guide-note {
    padding: 18px 18px 17px;
  }

  .price-board__head {
    display: grid;
    gap: 12px;
  }

  .price-board__head .plan-kicker {
    min-width: 0;
    width: fit-content;
    font-size: 1.08rem;
  }

  .price-menu,
  .price-board__notes,
  .price-board__contact {
    padding-left: 18px;
    padding-right: 18px;
  }

  .price-menu {
    padding-top: 28px;
  }

  .price-menu__main span {
    font-size: 2.25rem;
  }

  .price-list div {
    padding-right: 0;
  }

  .route-map {
    grid-template-columns: 1fr;
    padding: 12px 0 8px;
  }

  .route-map::before,
  .route-map::after {
    display: none;
  }

  .route-spot {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    text-align: left;
  }

  .route-spot figure {
    grid-row: 1 / span 2;
    width: 112px;
    margin: 0;
  }

  .route-spot h3 {
    grid-column: 2;
    margin-bottom: 4px;
  }

  .route-spot p {
    grid-column: 2;
    max-width: none;
    margin: 0;
  }
}

/* Header colors stay inverted on scroll; extra paper and pill decorations are removed. */
.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(255, 255, 255, .92);
  border-bottom: 0;
  box-shadow: 0 8px 30px rgba(35, 54, 68, .08);
}

.site-header.is-scrolled::after,
.site-header.is-solid::after {
  content: none;
}

.site-logo {
  display: block;
}

.site-logo__sub {
  color: #8c603b;
  font-size: .76rem;
  font-weight: 900;
}

.site-logo__main {
  color: var(--color-ink);
  font-size: 1.3rem;
  font-weight: 900;
}

.site-header:not(.is-scrolled):not(.is-solid) .site-logo__main {
  color: #fff;
}

.site-header:not(.is-scrolled):not(.is-solid) .site-logo__sub {
  color: #fff7dc;
}

.site-header.is-scrolled .site-nav,
.site-header.is-solid .site-nav {
  gap: 18px;
}

.site-header.is-scrolled .site-nav a,
.site-header.is-solid .site-nav a {
  padding: 0;
  border-radius: 0;
  color: var(--color-ink);
  font-weight: 800;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-solid .site-nav a:hover,
.site-header.is-scrolled .site-nav a[aria-current="page"],
.site-header.is-solid .site-nav a[aria-current="page"] {
  background: transparent;
}

.site-header.is-scrolled .site-nav a::after,
.site-header.is-solid .site-nav a::after {
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: #e26d5c;
}

.site-header.is-scrolled .site-nav a:last-child,
.site-header.is-solid .site-nav a:last-child {
  margin-left: 0;
  background: transparent;
  color: #b94f3f;
}

.site-nav {
  font-size: .98rem;
  font-weight: 800;
}

.page-home .home-guide-copy .home-guide-wave {
  display: none;
}

/* Home guide balance: keep the three-part composition and rebalance its visual weight. */
@media (min-width: 941px) {
  .page-home .home-guide-layout {
    grid-template-columns:
      minmax(210px, .7fr)
      minmax(330px, 1fr)
      minmax(285px, .84fr);
    gap: 22px 24px;
  }

  .page-home .home-guide-copy {
    align-self: center;
    padding-top: 0;
  }

  .page-home .home-guide-copy .section__title {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.88rem;
    line-height: 1.48;
  }

  .page-home .home-guide-copy p {
    font-size: .9rem;
    line-height: 1.78;
  }

  .page-home .home-guide-photo--main {
    width: min(94%, 520px);
    align-self: center;
  }

  .page-home .home-guide-photo--sea {
    width: min(92%, 650px);
    max-width: 650px;
    margin-top: 0;
    justify-self: start;
  }

  .page-home .home-guide-notes {
    gap: 24px;
    padding: 26px 20px 28px;
  }

  .page-home .home-guide-note {
    padding: 24px 24px 22px;
  }

  .page-home .home-guide-note p {
    font-size: .95rem;
    line-height: 1.85;
  }
}

.section--home-guide {
  background:
    radial-gradient(circle at 6% 84%, rgba(74, 144, 226, .11), transparent 16%),
    radial-gradient(circle at 94% 84%, rgba(226, 109, 92, .08), transparent 16%),
    linear-gradient(180deg, rgba(251, 247, 238, .88) 0%, rgba(255, 253, 247, .9) 55%, rgba(246, 239, 227, .9) 100%),
    var(--texture-paper);
  background-size: auto, auto, auto, 560px 560px;
}

.home-guide-copy .section__eyebrow,
.route-guide-head .section__eyebrow {
  letter-spacing: 0;
}

.home-guide-copy .section__title,
.route-guide-head .section__title {
  color: var(--color-ink);
  font-weight: 900;
  text-wrap: balance;
}

.home-guide-copy p,
.route-guide-head p {
  color: rgba(18, 63, 100, .77);
  font-weight: 800;
}

.home-guide-wave {
  border-top-color: rgba(74, 144, 226, .58);
  border-bottom-color: rgba(74, 144, 226, .26);
}

.home-guide-photo,
.price-menu__photo,
.route-spot figure {
  border-color: #fff;
  box-shadow:
    0 16px 28px rgba(33, 44, 49, .16),
    0 2px 0 rgba(255, 255, 255, .82) inset;
}

.home-guide-photo--main::before,
.home-guide-photo--sea::before,
.price-menu::before,
.price-board__notes::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .38), rgba(209, 176, 122, .42)),
    var(--texture-paper);
  background-size: auto, 220px 220px;
}

.home-guide-notes {
  background:
    linear-gradient(90deg, rgba(94, 64, 39, .18), rgba(255, 255, 255, .08) 42%, rgba(76, 52, 33, .16)),
    var(--texture-wood);
  background-size: auto, 760px 760px;
  border-color: rgba(88, 59, 33, .22);
}

.home-guide-note,
.price-menu,
.price-board__notes,
.price-board__contact {
  background:
    linear-gradient(180deg, rgba(255, 253, 246, .86), rgba(249, 240, 219, .9)),
    var(--texture-paper);
  background-size: auto, 480px 480px;
}

.home-guide-note__tag,
.price-menu h3,
.price-board__notes h3,
.route-spot h3 {
  color: var(--color-ink);
}

.section--price-guide {
  background:
    linear-gradient(180deg, rgba(121, 78, 44, .24), rgba(121, 78, 44, .18)),
    var(--texture-wood);
  background-size: auto, 760px 760px;
}

.price-board__head .plan-kicker {
  background:
    linear-gradient(180deg, rgba(255, 252, 243, .92), rgba(248, 236, 214, .94)),
    var(--texture-paper);
  background-size: auto, 360px 360px;
  color: var(--color-ink);
}

.price-board__head .plan-kicker::before,
.price-board__head .plan-kicker::after {
  background:
    linear-gradient(135deg, transparent 0 50%, #fff8e9 51%) top / 100% 18px repeat-y,
    linear-gradient(45deg, transparent 0 50%, #fff8e9 51%) bottom / 100% 18px repeat-y;
}

.price-menu__main {
  color: rgba(18, 63, 100, .74);
}

.price-menu__main span {
  color: var(--color-ink);
  letter-spacing: 0;
}

.price-list dt,
.price-board__notes p,
.price-board__notes ul,
.route-spot p {
  color: rgba(18, 63, 100, .78);
}

.price-list dt::before {
  background: #4f9bd4;
}

.price-board__contact {
  border-top: 3px solid rgba(226, 109, 92, .22);
}

.price-board__contact > span {
  color: #c85f49;
}

.route-map {
  background:
    radial-gradient(circle at 88% 80%, rgba(74, 144, 226, .11), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, .28), rgba(255, 255, 255, .1)),
    var(--texture-paper);
  background-size: auto, auto, 620px 620px;
  background-blend-mode: normal, normal, multiply;
}

.route-map__line {
  opacity: .44;
  filter: saturate(.88);
}

@media (max-width: 940px) {
  .site-header.is-scrolled .site-nav,
  .site-header.is-solid .site-nav {
    gap: 10px;
  }

  .site-header.is-scrolled .site-nav a,
  .site-header.is-solid .site-nav a {
    border-radius: 0;
    padding: 10px 0;
  }
}

@media (max-width: 640px) {
  .site-logo__main {
    font-size: 1.04rem;
  }

  .site-logo__sub {
    font-size: .64rem;
  }

  .home-guide-copy .section__title,
  .route-guide-head .section__title {
    line-height: 1.68;
  }

  .price-board__head p {
    font-size: .92rem;
    line-height: 1.6;
  }
}

/* Home detail pass 4: keep the reservation shortcut present without covering content. */
@media (max-width: 940px) {
  .floating-cta {
    right: 18px;
    bottom: max(18px, env(safe-area-inset-bottom));
    width: 62px;
    height: 62px;
    min-height: 0;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    font-size: 0;
    line-height: 1;
    box-shadow: 0 12px 26px rgba(226, 109, 92, .24);
    animation: none;
  }

  .floating-cta::after {
    content: "予約";
    font-size: .84rem;
    font-weight: 900;
    letter-spacing: 0;
  }
}

@media (max-width: 640px) {
  .floating-cta {
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 58px;
    height: 58px;
    box-shadow: 0 10px 22px rgba(226, 109, 92, .22);
  }

  .floating-cta::after {
    font-size: .8rem;
  }
}

@media (max-width: 420px) {
  .floating-cta {
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    width: 54px;
    height: 54px;
  }

  .floating-cta::after {
    font-size: .76rem;
  }
}

@media (max-width: 940px) {
  body:not(.page-home) > .footer {
    padding-bottom: calc(110px + env(safe-area-inset-bottom));
  }

  .page-contact .floating-cta {
    display: none;
  }

  body.page-contact > .footer {
    padding-bottom: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .has-js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 940px) {
  .page-home .floating-cta {
    display: none;
  }
}

/* Home detail pass 5: softer paper typography and a warmer reservation strip. */
.page-home .section--home-guide,
.page-home .section--price-guide,
.page-home .section--route-guide {
  font-family: var(--font-soft);
}

.price-board__head {
  margin-bottom: 30px;
}

.price-board__head .plan-kicker {
  min-width: 236px;
  padding: 14px 28px 15px;
  border-radius: 3px;
  box-shadow:
    0 8px 0 rgba(65, 42, 23, .14),
    0 16px 24px rgba(42, 28, 16, .18);
  font-family: var(--font-soft);
  font-size: clamp(1.34rem, 2vw, 1.72rem);
  letter-spacing: 0;
  transform: rotate(-.35deg);
}

.price-board__head p {
  font-family: var(--font-soft);
  font-size: 1.02rem;
  line-height: 1.7;
  letter-spacing: 0;
  text-shadow: 0 2px 10px rgba(42, 28, 16, .24);
}

@media (min-width: 941px) {
  .price-board__papers {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(250px, .7fr);
    gap: 28px;
    align-items: start;
  }
}

.price-menu,
.price-board__notes {
  border: 0;
  outline: 1px solid rgba(104, 73, 43, .14);
  box-shadow:
    0 24px 38px rgba(42, 28, 16, .18),
    0 1px 0 rgba(255, 255, 255, .92) inset;
}

.price-menu {
  min-height: 492px;
  padding: 38px 34px 30px;
}

.price-board__papers > .price-menu:first-child {
  transform: rotate(-.35deg);
}

.price-menu--bring {
  transform: translateY(8px) rotate(.45deg);
}

.price-menu::before,
.price-board__notes::before {
  top: -19px;
  width: 126px;
  height: 31px;
  opacity: .9;
  box-shadow:
    0 7px 12px rgba(42, 28, 16, .13),
    0 1px 0 rgba(255, 255, 255, .56) inset;
}

.price-menu h3,
.price-board__notes h3 {
  font-family: var(--font-soft);
  font-size: clamp(1.28rem, 1.45vw, 1.55rem);
  letter-spacing: 0;
}

.price-menu__sub,
.price-list dt,
.price-list dd,
.price-menu__child,
.price-board__notes p,
.price-board__notes ul {
  font-family: var(--font-soft);
  letter-spacing: 0;
}

.price-menu__photo {
  margin-bottom: 22px;
  padding: 9px;
  transform: rotate(.15deg);
}

.price-menu--bring .price-menu__photo {
  transform: rotate(-.25deg);
}

.price-menu__main {
  margin-bottom: 20px;
}

.price-menu__main span {
  font-size: clamp(2.72rem, 4vw, 3.35rem);
}

.price-menu__child {
  margin-top: 20px;
  padding: 14px 12px;
  background:
    linear-gradient(180deg, rgba(244, 224, 184, .72), rgba(237, 205, 143, .48)),
    var(--texture-paper);
  background-size: auto, 260px 260px;
}

.price-board__notes {
  padding: 38px 30px 30px;
  transform: rotate(1.15deg);
}

.price-board__notes::after {
  content: "";
  position: absolute;
  right: 24px;
  top: -26px;
  width: 28px;
  height: 58px;
  border: 3px solid rgba(35, 58, 74, .58);
  border-left-width: 2px;
  border-radius: 18px;
  transform: rotate(16deg);
}

.price-board__notes h3 {
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(74, 144, 226, .28);
}

.price-board__contact {
  position: relative;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 24px;
  min-height: 98px;
  margin-top: 30px;
  padding: 20px 24px 20px 128px;
  border: 0;
  outline: 1px solid rgba(104, 73, 43, .12);
  background:
    linear-gradient(180deg, rgba(255, 253, 246, .91), rgba(250, 241, 222, .94)),
    var(--texture-paper);
  background-size: auto, 560px 560px;
  box-shadow:
    0 20px 34px rgba(42, 28, 16, .18),
    0 1px 0 rgba(255, 255, 255, .9) inset;
}

.price-board__contact::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 50%;
  width: 58px;
  height: 42px;
  border: 2px solid rgba(194, 151, 92, .72);
  border-radius: 4px;
  background:
    linear-gradient(135deg, transparent 0 58%, rgba(220, 188, 132, .42) 59% 100%),
    linear-gradient(180deg, rgba(255, 252, 242, .95), rgba(244, 225, 190, .9));
  box-shadow: 0 8px 12px rgba(42, 28, 16, .14);
  transform: translateY(-50%) rotate(-9deg);
}

.price-board__contact::after {
  content: "";
  position: absolute;
  left: 96px;
  top: 50%;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 8px, rgba(241, 177, 90, .88) 9px 10px, transparent 11px),
    repeating-conic-gradient(from -8deg, rgba(241, 177, 90, .72) 0 9deg, transparent 9deg 28deg);
  transform: translateY(-50%) rotate(-10deg);
}

.price-board__contact > span {
  font-family: var(--font-soft);
  font-size: clamp(1.08rem, 1.55vw, 1.34rem);
  letter-spacing: 0;
}

.price-board__contact p {
  position: relative;
  padding-left: 30px;
}

.price-board__contact p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 17px;
  height: 24px;
  border: 3px solid var(--color-ink);
  border-top-width: 5px;
  border-radius: 7px 7px 10px 10px;
  transform: translateY(-50%) rotate(-22deg);
}

.price-board__contact strong {
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1;
}

.price-board__button {
  position: relative;
  min-width: 176px;
  min-height: 68px;
  padding: 13px 26px 24px;
  border-radius: 2px;
  background: linear-gradient(135deg, #e66457, #ef9b58);
  box-shadow:
    7px 7px 0 rgba(42, 28, 16, .14),
    0 13px 22px rgba(206, 93, 73, .2);
  font-family: var(--font-soft);
  font-size: 1.02rem;
  letter-spacing: 0;
}

.price-board__button[href^="tel:"]::before {
  content: "TEL";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 8px;
  width: auto;
  padding: 2px 6px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 2px;
  color: rgba(255, 255, 255, .96);
  font-size: .68rem;
  line-height: 1;
  text-align: center;
  transform: none;
}

@media (max-width: 940px) {
  .price-menu {
    min-height: 0;
    padding: 36px 30px 30px;
  }

  .price-board__head {
    padding-left: 18px;
   }

  .price-board__papers > .price-menu:first-child,
  .price-menu--bring,
  .price-board__notes {
    transform: none;
  }

  .price-board__contact {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 20px 24px 22px 114px;
  }

  .price-board__contact .price-board__button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .price-board__head {
    gap: 14px;
    margin-bottom: 26px;
    padding-left: 18px;
  }

  .price-board__head .plan-kicker {
    min-width: 178px;
    padding: 11px 20px 12px;
    font-size: 1.24rem;
  }

  .price-menu {
    padding: 36px 20px 28px;
  }

  .price-board__notes {
    padding: 36px 22px 26px;
  }

  .price-board__notes::after {
    right: 20px;
    width: 23px;
    height: 46px;
  }

  .price-board__contact {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    padding: 76px 20px 22px;
  }

  .price-board__contact::before {
    left: 24px;
    top: 34px;
    width: 52px;
    height: 38px;
  }

  .price-board__contact::after {
    left: 86px;
    top: 36px;
    width: 30px;
    height: 30px;
  }

  .price-board__contact p {
    padding-left: 28px;
    text-align: left;
  }

  .price-board__button {
    width: 100%;
  }
}

@media (max-width: 1100px) {
  .page-home .floating-cta {
    display: none;
  }
}

.page-home .floating-cta {
  display: none;
}

/* Home detail pass 6: richer route map with varied photo ratios and light doodles. */
.section--route-guide {
  position: relative;
  overflow: hidden;
  padding-top: 54px;
  padding-bottom: 72px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, .9), transparent 26%),
    radial-gradient(circle at 84% 22%, rgba(255, 255, 255, .52), transparent 22%),
    linear-gradient(180deg, #dff5fd 0%, #e9f8fd 55%, #d7eef8 100%);
}

.section--route-guide::before,
.section--route-guide::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.section--route-guide::before {
  left: max(18px, calc((100vw - 1120px) / 2 - 42px));
  top: 118px;
  width: 138px;
  height: 66px;
  border-bottom: 3px solid rgba(79, 155, 212, .28);
  border-radius: 50%;
  transform: rotate(-7deg);
}

.section--route-guide::after {
  right: max(22px, calc((100vw - 1120px) / 2 - 32px));
  bottom: 34px;
  width: 178px;
  height: 98px;
  border-right: 3px solid rgba(79, 155, 212, .28);
  border-bottom: 3px solid rgba(79, 155, 212, .28);
  border-radius: 0 0 70px 0;
}

.section--route-guide .container {
  position: relative;
  z-index: 1;
}

.route-guide-head {
  align-items: end;
  margin-bottom: 22px;
}

.route-guide-head .section__title {
  font-family: var(--font-soft);
  font-size: clamp(1.78rem, 2.05vw, 2rem);
  line-height: 1.48;
  letter-spacing: 0;
}

.route-guide-head .section__title span {
  display: block;
}

.route-guide-head p {
  font-family: var(--font-soft);
  font-size: .86rem;
  font-weight: 800;
  line-height: 1.9;
  letter-spacing: 0;
}

.route-map {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  outline: 1px solid rgba(74, 144, 226, .08);
  background: #ffffff;
  box-shadow:
    0 18px 34px rgba(45, 87, 108, .08),
    0 1px 0 rgba(255, 255, 255, .9) inset;
}

.route-spot figure {
  position: relative;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, .92);
  background: #fff;
  box-shadow:
    0 13px 22px rgba(33, 44, 49, .13),
    0 2px 0 rgba(255, 255, 255, .88) inset;
}

.route-spot figure::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -11px;
  width: 42px;
  height: 13px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .42), rgba(209, 176, 122, .34)),
    var(--texture-paper);
  background-size: auto, 180px 180px;
  box-shadow: 0 5px 10px rgba(42, 28, 16, .1);
  transform: translateX(-50%) rotate(-4deg);
}

.route-spot h3,
.route-spot p {
  font-family: var(--font-soft);
  letter-spacing: 0;
}

.route-spot h3 {
  font-size: .96rem;
  line-height: 1.42;
}

.route-spot p {
  font-size: .74rem;
  line-height: 1.72;
}

.route-spot--station figure {
  width: 176px;
  transform: rotate(-1.8deg);
}

.route-spot--station img {
  aspect-ratio: 5 / 3;
}

.route-spot--reception figure {
  width: 150px;
  transform: rotate(2.1deg);
}

.route-spot--reception img {
  aspect-ratio: 4 / 5;
}

.route-spot--bbq figure {
  width: 172px;
  transform: rotate(-1.1deg);
}

.route-spot--bbq img {
  aspect-ratio: 4 / 3;
}

.route-spot--sea figure {
  width: 154px;
  transform: rotate(1.7deg);
}

.route-spot--sea img {
  aspect-ratio: 3 / 2;
}

.route-spot--shower figure {
  width: 140px;
  transform: rotate(-2.4deg);
}

.route-spot--shower img {
  aspect-ratio: 3 / 4;
}

.route-spot--cleanup figure {
  width: 164px;
  transform: rotate(1.4deg);
}

.route-spot--cleanup img {
  aspect-ratio: 4 / 3;
}

@media (min-width: 941px) {
  .route-map {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(6, minmax(58px, auto));
    gap: 0;
    min-height: 570px;
    padding: 34px 48px 38px;
  }

  .route-map::before {
    display: block;
    inset: 20px 18px;
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    background: url("../img/route-map-doodles-v1.svg") center / 100% 100% no-repeat;
    opacity: .68;
    z-index: 0;
  }

  .route-map::after {
    display: none;
  }

  .route-map__line {
    display: block;
    left: 44px;
    right: 42px;
    top: 76px;
    bottom: 48px;
    z-index: 1;
    background-image: url("../img/route-map-path-v2.svg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: .8;
    filter: none;
  }

  .route-spot {
    z-index: 2;
  }

  .route-spot--station {
    grid-column: 1 / span 3;
    grid-row: 1 / span 3;
    align-self: center;
    justify-self: start;
  }

  .route-spot--reception {
    grid-column: 4 / span 3;
    grid-row: 1 / span 3;
    align-self: start;
    justify-self: center;
  }

  .route-spot--bbq {
    grid-column: 7 / span 3;
    grid-row: 1 / span 3;
    align-self: start;
    justify-self: center;
  }

  .route-spot--sea {
    grid-column: 10 / span 3;
    grid-row: 1 / span 3;
    align-self: center;
    justify-self: end;
  }

  .route-spot--shower {
    grid-column: 3 / span 3;
    grid-row: 4 / span 3;
    align-self: end;
    justify-self: center;
  }

  .route-spot--cleanup {
    grid-column: 6 / span 4;
    grid-row: 4 / span 3;
    align-self: end;
    justify-self: center;
  }
}

@media (max-width: 940px) {
  .section--route-guide {
    padding-top: 48px;
    padding-bottom: 70px;
  }

  .route-guide-head {
    margin-bottom: 20px;
  }

  .route-guide-head .section__title {
    font-size: clamp(1.55rem, 4vw, 1.85rem);
  }

  .route-guide-head p {
    font-size: .84rem;
  }

  .route-map {
    gap: 24px 22px;
    padding: 26px 24px 30px;
  }

  .route-map::before,
  .route-map::after,
  .route-map__line {
    display: none;
  }

  .route-spot figure {
    margin-bottom: 14px;
  }
}

@media (max-width: 640px) {
  .section--route-guide {
    padding-top: 40px;
    padding-bottom: 62px;
  }

  .section--route-guide::before,
  .section--route-guide::after {
    display: none;
  }

  .route-guide-head {
    margin-bottom: 18px;
  }

  .route-guide-head .section__title {
    font-size: 1.48rem;
    line-height: 1.5;
  }

  .route-guide-head p {
    font-size: .82rem;
    line-height: 1.85;
  }

  .route-map {
    gap: 18px;
    padding: 18px 14px 20px;
  }

  .route-map::before {
    display: block;
    left: 72px;
    top: 72px;
    bottom: 76px;
    width: 5px;
    height: auto;
    border: 0;
    border-radius: 999px;
    background: repeating-linear-gradient(
      180deg,
      rgba(134, 185, 223, .62) 0 12px,
      transparent 12px 24px
    );
    opacity: .46;
    z-index: 0;
  }

  .route-spot {
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 12px;
    padding-bottom: 2px;
  }

  .route-spot figure,
  .route-spot--station figure,
  .route-spot--reception figure,
  .route-spot--bbq figure,
  .route-spot--sea figure,
  .route-spot--shower figure,
  .route-spot--cleanup figure {
    width: 108px;
    margin: 0;
  }

  .route-spot--reception figure,
  .route-spot--shower figure {
    width: 98px;
    justify-self: center;
  }

  .route-spot h3 {
    font-size: .94rem;
  }

  .route-spot p {
    font-size: .76rem;
    line-height: 1.68;
  }
}

/* Home detail pass 7: mock-led afterglow transition before lower content. */
.home-afterglow {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 660px;
  padding: 86px 0 44px;
  background: #dfe9ea;
  color: #fff;
}

.home-afterglow::before,
.home-afterglow::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.home-afterglow::before {
  background:
    linear-gradient(180deg, rgba(8, 31, 41, .04) 0%, transparent 38%, rgba(9, 30, 38, .16) 100%);
}

.home-afterglow::after {
  top: auto;
  height: 128px;
  background: #dcf5fc;
  clip-path: polygon(0 30%, 18% 18%, 39% 28%, 62% 12%, 82% 22%, 100% 8%, 100% 100%, 0 100%);
}

.home-afterglow__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
}

.home-afterglow__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.home-afterglow__inner {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  grid-template-rows: auto 1fr auto;
  column-gap: 52px;
  row-gap: 30px;
}

.home-afterglow__copy {
  grid-column: 1;
  grid-row: 1;
  max-width: 560px;
  padding-top: 6px;
  font-family: var(--font-soft);
  text-shadow:
    0 2px 10px rgba(5, 33, 46, .62),
    0 0 26px rgba(5, 33, 46, .46);
}

.home-afterglow__kicker {
  display: block;
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: 900;
}

.home-afterglow__copy h2 {
  margin: 0;
  font-size: 2.36rem;
  line-height: 1.42;
  letter-spacing: 0;
}

.home-afterglow__copy p {
  max-width: 430px;
  margin: 20px 0 0;
  color: rgba(255, 253, 244, .92);
  font-size: .96rem;
  font-weight: 800;
  line-height: 1.96;
}

.home-afterglow__polaroid {
  grid-column: 1;
  grid-row: 3;
  width: min(318px, 80%);
  margin: 0 0 0 18px;
  padding: 10px 10px 34px;
  background: #fff;
  color: #4a3a2d;
  box-shadow:
    0 22px 34px rgba(19, 40, 53, .28),
    0 2px 0 rgba(255, 255, 255, .9) inset;
  transform: translateY(24px) rotate(-4deg);
}

.home-afterglow__polaroid::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -13px;
  width: 58px;
  height: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .44), rgba(211, 179, 126, .34)),
    var(--texture-paper);
  background-size: auto, 180px 180px;
  box-shadow: 0 6px 12px rgba(38, 27, 16, .14);
  transform: translateX(-50%) rotate(-3deg);
}

.home-afterglow__polaroid img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.home-afterglow__polaroid figcaption {
  margin-top: 10px;
  font-family: var(--font-soft);
  font-size: .9rem;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.home-afterglow__note {
  grid-column: 2;
  grid-row: 3;
  justify-self: end;
  align-self: end;
  position: relative;
  max-width: 320px;
  margin: 0;
  padding: 28px 28px 26px;
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(54, 48, 39, .9), rgba(41, 37, 32, .92)),
    var(--texture-paper);
  background-size: auto, 360px 360px;
  color: #fff9ec;
  font-family: var(--font-soft);
  box-shadow:
    0 22px 34px rgba(18, 28, 33, .3),
    0 1px 0 rgba(255, 255, 255, .16) inset;
  transform: translateY(18px) rotate(-3deg);
}

.home-afterglow__note::before {
  content: "";
  position: absolute;
  right: 24px;
  top: -13px;
  width: 64px;
  height: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .42), rgba(209, 176, 122, .32)),
    var(--texture-paper);
  background-size: auto, 180px 180px;
  transform: rotate(4deg);
}

.home-afterglow__note strong {
  display: block;
  font-size: 1rem;
  line-height: 1.65;
}

.home-afterglow__note p {
  margin: 12px 0 0;
  color: rgba(255, 249, 236, .86);
  font-size: .84rem;
  font-weight: 800;
  line-height: 1.85;
}

@media (max-width: 1040px) {
  .home-afterglow {
    min-height: 620px;
    padding: 76px 0 42px;
  }

  .home-afterglow__inner {
    min-height: 500px;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
    column-gap: 34px;
  }

  .home-afterglow__copy h2 {
    font-size: 2.08rem;
  }

  .home-afterglow__polaroid {
    width: 278px;
  }
}

@media (max-width: 840px) {
  .home-afterglow {
    min-height: auto;
    padding: 70px 0 56px;
  }

  .home-afterglow__inner {
    min-height: 430px;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
    grid-template-rows: auto auto;
    row-gap: 44px;
  }

  .home-afterglow__copy {
    grid-column: 1 / -1;
    max-width: 590px;
  }

  .home-afterglow__polaroid {
    grid-column: 1;
    grid-row: 2;
    width: 260px;
    margin-left: 8px;
  }

  .home-afterglow__note {
    grid-column: 2;
    grid-row: 2;
    max-width: 280px;
    padding: 26px 24px 24px;
  }
}

@media (max-width: 640px) {
  .home-afterglow {
    padding: 54px 0 40px;
  }

  .home-afterglow::before {
    background: linear-gradient(180deg, rgba(8, 31, 41, .06) 0%, transparent 42%, rgba(9, 30, 38, .2) 100%);
  }

  .home-afterglow::after {
    height: 118px;
    clip-path: polygon(0 22%, 22% 12%, 50% 20%, 78% 10%, 100% 16%, 100% 100%, 0 100%);
  }

  .home-afterglow__media img {
    object-position: center 52%;
  }

  .home-afterglow__inner {
    display: block;
    min-height: 0;
  }

  .home-afterglow__copy {
    max-width: 100%;
  }

  .home-afterglow__kicker {
    font-size: 1rem;
  }

  .home-afterglow__copy h2 {
    font-size: 1.68rem;
    line-height: 1.48;
  }

  .home-afterglow__copy p {
    max-width: 100%;
    font-size: .88rem;
    line-height: 1.9;
  }

  .home-afterglow__polaroid {
    width: min(300px, 88%);
    margin: 118px auto 0;
    transform: rotate(-2deg);
  }

  .home-afterglow__note {
    max-width: none;
    margin: 26px 0 0;
    padding: 25px 23px 23px;
    transform: rotate(0);
  }
}

@media (max-width: 420px) {
  .home-afterglow {
    padding-top: 46px;
  }

  .home-afterglow__copy h2 {
    font-size: 1.52rem;
  }

  .home-afterglow__polaroid {
    margin-top: 112px;
  }
}

/* Home detail pass 8: lower editorial pages after the route map. */
.page-home .home-story,
.page-home .home-free-space,
.page-home .home-local-board,
.page-home .home-farm-note,
.page-home .home-album-gateway,
.page-home .home-reservation-slip {
  font-family: var(--font-soft);
}

.home-story {
  position: relative;
  overflow: hidden;
  margin-top: -1px;
  padding: 74px 0 86px;
  background:
    linear-gradient(180deg, #dcf5fc 0%, rgba(246, 251, 246, .96) 48%, rgba(246, 237, 216, .98) 100%);
}

.home-story::before,
.home-story::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.home-story::before {
  left: max(22px, calc((100vw - 1120px) / 2));
  top: 54px;
  width: 150px;
  height: 70px;
  border-bottom: 3px solid rgba(122, 184, 220, .46);
  border-left: 3px solid rgba(122, 184, 220, .3);
  border-radius: 0 0 0 58px;
}

.home-story::after {
  content: none;
}

.home-story__sheet {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, .48fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 58px);
  align-items: start;
  min-height: 822px;
  padding: 54px 56px 42px;
  border: 1px solid rgba(138, 106, 69, .16);
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .8), rgba(255, 250, 238, .9)),
    var(--texture-paper) center / 520px auto;
  box-shadow: 0 28px 70px rgba(35, 71, 96, .14);
}

.home-story__sheet::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  width: 98px;
  height: 34px;
  background: rgba(236, 213, 164, .72);
  box-shadow: 0 8px 18px rgba(109, 82, 44, .12);
  transform: translateX(-50%) rotate(4deg);
}

.home-story__copy .section__title {
  margin-top: 12px;
  font-size: clamp(1.78rem, 1.08rem + 1.26vw, 2.18rem);
  line-height: 1.36;
  word-break: keep-all;
}

.home-story__copy {
  position: relative;
  z-index: 8;
  grid-column: 1;
  grid-row: 1;
  max-width: 370px;
  padding-top: 6px;
}

.home-story__copy .section__title span {
  display: block;
}

.home-story__copy > p:not(.home-story__memo) {
  max-width: 32em;
  color: #344f63;
  font-weight: 700;
  line-height: 1.95;
}

.home-story__memo {
  display: inline-block;
  margin: 18px 0 0;
  padding: 12px 15px;
  background: rgba(238, 214, 165, .55);
  color: #6c4e2e;
  font-size: .9rem;
  font-weight: 900;
  line-height: 1.7;
  transform: rotate(-1.2deg);
}

.home-story__essay {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  grid-row: 1;
  min-height: 730px;
  pointer-events: none;
}

.home-story__essay::before {
  content: "";
  position: absolute;
  left: min(390px, 36%);
  top: 250px;
  z-index: 0;
  width: min(520px, 54%);
  height: 420px;
  border-top: 3px dashed rgba(100, 174, 215, .34);
  border-right: 3px dashed rgba(100, 174, 215, .28);
  border-radius: 0 180px 130px 0;
  transform: rotate(2deg);
}

.home-story__essay::after {
  content: "";
  position: absolute;
  left: 26px;
  bottom: 64px;
  z-index: 0;
  width: 250px;
  height: 86px;
  border-bottom: 3px solid rgba(238, 196, 132, .42);
  border-left: 3px solid rgba(238, 196, 132, .28);
  border-radius: 0 0 0 58px;
}

.home-story-photo {
  position: relative;
  margin: 0;
  border: 7px solid rgba(255, 255, 255, .96);
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 22px 44px rgba(33, 67, 88, .18);
}

.home-story-photo::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  z-index: 2;
  width: 68px;
  height: 24px;
  background: rgba(238, 215, 169, .72);
  box-shadow: 0 6px 14px rgba(83, 61, 31, .1);
  transform: translateX(-50%) rotate(3deg);
}

.home-story-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.home-story-photo--main {
  position: absolute;
  top: 2px;
  right: 0;
  z-index: 2;
  width: min(610px, 56%);
  transform: rotate(-1.7deg);
}

.home-story-photo--bbq {
  position: absolute;
  top: 314px;
  right: 42px;
  z-index: 4;
  width: min(255px, 25%);
  transform: rotate(3.4deg);
}

.home-story-photo--sunset {
  position: absolute;
  left: 58px;
  bottom: 82px;
  z-index: 3;
  width: min(340px, 32%);
  transform: rotate(-2.4deg);
}

.home-story-photo--main img {
  aspect-ratio: 16 / 9;
}

.home-story-photo--bbq img {
  aspect-ratio: 4 / 3;
}

.home-story-photo--sunset img {
  aspect-ratio: 16 / 10;
}

.home-story-scene {
  position: relative;
  z-index: 4;
  padding: 18px 19px 17px;
  border-radius: 3px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .84), rgba(255, 249, 236, .94)),
    var(--texture-paper) center / 320px auto;
  color: var(--color-ink);
  box-shadow:
    0 18px 34px rgba(45, 65, 74, .12),
    0 1px 0 rgba(255, 255, 255, .72) inset;
}

.home-story-scene::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 24px;
  width: 54px;
  height: 14px;
  background: rgba(238, 215, 169, .72);
  box-shadow: 0 6px 12px rgba(83, 61, 31, .08);
  transform: rotate(-3deg);
}

.home-story-scene::after {
  position: absolute;
  top: -25px;
  right: 14px;
  color: rgba(44, 130, 189, .55);
  font-family: var(--font-soft);
  font-size: 1.58rem;
  font-weight: 900;
  line-height: 1;
}

.home-story-scene span {
  display: block;
  color: #2c82bd;
  font-size: .98rem;
  font-weight: 900;
  line-height: 1.35;
}

.home-story-scene p {
  margin: 8px 0 0;
  color: #344f63;
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.75;
}

.home-story-scene--sea {
  position: absolute;
  left: min(430px, 42%);
  top: 328px;
  width: min(270px, 29%);
  transform: rotate(-1.4deg);
}

.home-story-scene--sea::after {
  content: "01";
}

.home-story-scene--bbq {
  position: absolute;
  right: 26px;
  top: 468px;
  width: min(300px, 30%);
  transform: rotate(1.2deg);
}

.home-story-scene--bbq::after {
  content: "02";
}

.home-story-scene--evening {
  position: absolute;
  left: min(328px, 31%);
  bottom: 48px;
  width: min(318px, 31%);
  transform: rotate(-.8deg);
}

.home-story-scene--evening::after {
  content: "03";
}

.home-free-space {
  position: relative;
  padding: clamp(68px, 7vw, 96px) 0 clamp(78px, 8vw, 108px);
  background:
    linear-gradient(180deg, #f7fcfb 0%, #fbf7ef 18%, #fbf7ef 82%, #f1fafb 100%);
}

.home-free-space::before {
  content: none;
}

.home-free-space__board {
  position: relative;
  grid-template-columns: minmax(230px, .76fr) minmax(380px, 1.44fr) minmax(240px, .78fr);
  grid-template-areas: "copy visual panel";
  gap: clamp(18px, 2.5vw, 34px);
  align-items: center;
  min-height: clamp(620px, 58vw, 760px);
  padding: clamp(46px, 4.8vw, 74px) clamp(42px, 5vw, 78px);
  overflow: hidden;
  border: 1px solid rgba(83, 58, 31, .2);
  border-radius: 4px;
  background: #efe7d6;
  box-shadow: 0 30px 76px rgba(47, 31, 20, .24);
  isolation: isolate;
}

/* Preserve the three-column composition just above the two-column breakpoint. */
@media (min-width: 941px) and (max-width: 1100px) {
  .home-free-space__board {
    grid-template-columns: minmax(0, .76fr) minmax(0, 1.44fr) minmax(0, .78fr);
    gap: clamp(14px, 1.8vw, 22px);
    padding: clamp(32px, 3.8vw, 50px);
  }
}

.home-free-space__board::before {
  content: none;
  position: absolute;
  z-index: 2;
  top: -13px;
  right: 21%;
  width: 108px;
  height: 34px;
  background: rgba(236, 213, 164, .74);
  box-shadow: 0 8px 18px rgba(82, 58, 30, .14);
  transform: rotate(-2deg);
  pointer-events: none;
}

.home-free-space__art {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-free-space .free-space-kicker {
  min-height: auto;
  margin-bottom: 14px;
  padding: 0 0 8px;
  border-radius: 0;
  border-bottom: 3px solid rgba(155, 211, 236, .9);
  background: transparent;
  color: #fff3d4;
  font-family: var(--font-soft);
  font-size: .94rem;
  letter-spacing: 0;
  text-shadow: 0 2px 10px rgba(20, 45, 56, .42);
}

.home-free-space .free-space-copy {
  position: relative;
  z-index: 1;
  align-content: start;
  align-self: center;
  max-width: 344px;
  padding: 18px 20px 20px;
  border-radius: 3px;
  background:
    linear-gradient(90deg, rgba(25, 60, 72, .42), rgba(25, 60, 72, .2) 74%, transparent);
  text-shadow: 0 2px 12px rgba(18, 38, 47, .42);
}

.home-free-space .free-space-copy .section__title {
  color: #fff8e8;
  font-size: clamp(1.72rem, 1.18rem + 1.2vw, 2.22rem);
  line-height: 1.35;
  word-break: keep-all;
}

.home-free-space .free-space-copy .section__lead {
  color: rgba(255, 250, 235, .94);
  font-weight: 800;
}

.home-free-space__memo {
  margin: 18px 0 0;
  padding: 13px 15px;
  border-left: 4px solid rgba(122, 184, 220, .72);
  background: rgba(255, 255, 255, .56);
  color: #3b5870;
  font-weight: 800;
  line-height: 1.8;
}

.home-free-space .free-space-actions {
  margin-top: 24px;
}

.home-free-space .free-space-visual {
  position: relative;
  z-index: 1;
  grid-area: visual;
  min-height: clamp(380px, 39vw, 520px);
  margin: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  pointer-events: none;
}

.home-free-space .free-space-visual::after {
  content: none;
}

.home-free-space .free-space-panel {
  position: relative;
  z-index: 1;
  align-self: center;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: clamp(18px, 2vw, 24px);
  border-radius: 2px;
  border-color: rgba(138, 106, 69, .2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(255, 249, 234, .86)),
    var(--texture-paper) center / 420px auto;
  box-shadow: 0 16px 34px rgba(83, 58, 31, .1);
}

.home-free-space .free-space-prices {
  grid-template-columns: 1fr;
  gap: 0;
}

.home-free-space .free-space-price,
.home-free-space .free-space-specs {
  border-radius: 2px;
  box-shadow: none;
}

.home-free-space .free-space-price {
  min-height: auto;
  padding: 0 0 14px;
  border: 0;
  border-bottom: 1px solid rgba(138, 106, 69, .18);
  background: transparent;
}

.home-free-space .free-space-price--full {
  margin-top: 14px;
  background: transparent;
}

.home-free-space .free-space-price span {
  min-height: 26px;
  margin-bottom: 8px;
  border-radius: 2px;
  background: rgba(255, 244, 223, .86);
  color: #9a5c19;
}

.home-free-space .free-space-price strong {
  font-size: clamp(1.56rem, 1.2rem + .8vw, 2rem);
}

.home-free-space .free-space-price p {
  margin-top: 8px;
  line-height: 1.5;
}

.home-free-space .free-space-specs {
  border-color: rgba(138, 106, 69, .18);
  background: rgba(255, 255, 255, .54);
}

.home-free-space .free-space-specs div {
  grid-template-columns: 1fr;
  gap: 5px;
  padding: 13px 12px 14px 14px;
  align-items: start;
  border-color: rgba(138, 106, 69, .16);
  background: transparent;
}

.home-free-space .free-space-specs dt {
  color: #9a5c19;
  line-height: 1.45;
}

.home-free-space .free-space-specs dd {
  line-height: 1.68;
  text-align: left;
  overflow-wrap: normal;
}

.home-free-space .free-space-rules span {
  min-height: 34px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .78);
  color: #6c4e2e;
}

.home-local-board {
  position: relative;
  overflow: hidden;
  padding: 78px 0 86px;
  background:
    linear-gradient(180deg, #f7fbfd 0%, #fff9ed 44%, #f0e3c8 100%);
}

.home-local-board__inner {
  position: relative;
  padding: 38px 40px 42px;
  border: 1px solid rgba(138, 106, 69, .16);
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(255, 248, 233, .86)),
    var(--texture-paper) center / 540px auto;
  box-shadow: 0 24px 62px rgba(43, 72, 91, .13);
}

.home-local-board__inner::before,
.home-local-board__inner::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.home-local-board__inner::before {
  top: 24px;
  right: 32px;
  width: 96px;
  height: 96px;
  border: 2px solid rgba(122, 184, 220, .36);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.home-local-board__inner::after {
  left: 28px;
  bottom: 28px;
  width: 116px;
  height: 28px;
  border-bottom: 3px solid rgba(122, 184, 220, .42);
  border-radius: 50%;
}

.home-local-board__title {
  max-width: 760px;
  margin-bottom: 32px;
}

.home-local-board__title .section__title {
  font-size: clamp(1.86rem, 1.28rem + 1.7vw, 2.82rem);
}

.home-local-board__cards {
  gap: 34px;
}

.home-local-card {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(138, 106, 69, .12);
  background: rgba(255, 255, 255, .5);
  box-shadow: 0 16px 34px rgba(53, 76, 91, .1);
}

.home-local-card::before {
  content: "";
  position: absolute;
  top: -11px;
  left: 12%;
  width: 84px;
  height: 28px;
  background: rgba(236, 213, 164, .7);
  box-shadow: 0 7px 14px rgba(82, 58, 30, .1);
  transform: rotate(-3deg);
}

.home-local-card--spot::before {
  left: auto;
  right: 14%;
  transform: rotate(3deg);
}

.home-local-card .section__title {
  font-size: clamp(1.58rem, 1.18rem + 1.18vw, 2.24rem);
}

.home-local-card p {
  color: #3c586a;
  font-weight: 700;
  line-height: 1.86;
}

.home-local-card .button {
  border-radius: 2px;
}

.home-local-card .split__media > img {
  border: 7px solid rgba(255, 255, 255, .96);
  border-radius: 2px;
  box-shadow: 0 18px 36px rgba(31, 64, 82, .16);
  transform: rotate(-2.4deg);
}

.home-local-card--spot .split__media > img {
  aspect-ratio: 5 / 3.5;
  transform: rotate(2.2deg);
}

.home-local-board .local-food-media {
  gap: 14px;
  padding: 0;
}

.home-local-board .local-food-card {
  overflow: visible;
  border: 6px solid rgba(255, 255, 255, .96);
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 16px 32px rgba(29, 59, 76, .16);
}

.home-local-board .local-food-card:nth-child(1) {
  grid-column: 1 / -1;
  aspect-ratio: 2.05 / 1;
  transform: rotate(-2.2deg);
}

.home-local-board .local-food-card:nth-child(2) {
  aspect-ratio: 1.05 / 1;
  transform: rotate(2.4deg);
}

.home-local-board .local-food-card:nth-child(3) {
  aspect-ratio: .95 / 1.1;
  transform: rotate(-1.4deg);
}

.home-local-board .local-food-card:nth-child(4) {
  aspect-ratio: 1.5 / 1;
  transform: rotate(1.8deg);
}

.home-local-board .local-food-card figcaption {
  left: 8px;
  bottom: 8px;
  min-height: 28px;
  border-radius: 0;
  background: rgba(255, 249, 232, .94);
  color: #6b4f2e;
  font-size: .78rem;
}

.home-local-board {
  --memo-coral: #e26d5c;
  --memo-peach: #f4b28c;
  --memo-yellow: #f9d984;
  --memo-sage: #7aa466;
  --memo-sky: #7ab8dc;
  --memo-ink: #24475f;
  padding: 86px 0 96px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .68), rgba(255, 248, 229, .2) 42%, rgba(83, 58, 31, .2)),
    var(--texture-wood) center / 720px auto;
}

.home-local-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .16), transparent 34%, rgba(75, 46, 25, .08)),
    repeating-linear-gradient(90deg, rgba(42, 27, 15, .08) 0 1px, transparent 1px 96px);
  pointer-events: none;
}

.home-local-board__inner {
  overflow: hidden;
  padding: 46px 46px 42px;
  border: 1px solid rgba(104, 76, 47, .18);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(255, 248, 231, .94)),
    var(--texture-paper) center / 560px auto;
  box-shadow: 0 30px 76px rgba(47, 31, 20, .2);
  isolation: isolate;
}

.home-local-board__inner::before {
  content: none;
  z-index: 0;
  top: -12px;
  left: 52%;
  width: 112px;
  height: 32px;
  border: 0;
  border-radius: 0;
  background: rgba(236, 213, 164, .72);
  box-shadow: 0 8px 16px rgba(82, 58, 30, .12);
  transform: rotate(2deg);
}

.home-local-board__inner::after {
  z-index: 0;
  inset: 28px 30px auto auto;
  width: 118px;
  height: 118px;
  border: 2px solid rgba(122, 184, 220, .3);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.home-local-board__notebook {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(440px, 1.34fr) minmax(230px, .66fr);
  grid-template-areas:
    "title route notes"
    "actions route notes";
  gap: 30px 32px;
  align-items: start;
}

.home-local-board__title {
  grid-area: title;
  max-width: none;
  margin: 0;
  padding-top: 12px;
}

.home-local-board .section__eyebrow {
  color: #9a5c19;
}

.home-local-board__title .section__title {
  position: relative;
  margin-bottom: 18px;
  color: var(--memo-ink);
  font-size: 2.45rem;
  line-height: 1.42;
}

.home-local-board__title .section__title::after {
  content: "";
  display: block;
  width: min(220px, 72%);
  height: 4px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--memo-coral), var(--memo-peach));
}

.home-local-board__lead {
  max-width: 29em;
  margin: 0;
  color: #38566c;
  font-weight: 800;
  line-height: 1.9;
}

.local-memo-seascape {
  position: relative;
  margin: 42px 0 0;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, .94);
  border-radius: 3px;
  box-shadow: 0 18px 36px rgba(37, 59, 72, .13);
  transform: rotate(-1.8deg);
}

.local-memo-seascape img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.02) brightness(1.03);
}

.local-memo-seascape figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 8px 10px;
  background: rgba(255, 249, 232, .92);
  color: #6b4f2e;
  font-size: .78rem;
  font-weight: 900;
}

.local-memo-route {
  grid-area: route;
  position: relative;
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.local-memo-route::before {
  content: "";
  position: absolute;
  left: 43px;
  top: 64px;
  bottom: 64px;
  width: 2px;
  background: repeating-linear-gradient(to bottom, rgba(74, 144, 226, .54) 0 10px, transparent 10px 20px);
  pointer-events: none;
}

.local-memo-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  grid-template-areas:
    "head photo"
    "head body";
  gap: 11px 18px;
  align-items: start;
  min-height: auto;
  padding: 14px 16px 16px 0;
  border: 1px solid rgba(138, 106, 69, .13);
  border-radius: 3px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(255, 249, 236, .76)),
    var(--texture-paper) center / 460px auto;
  box-shadow: 0 16px 34px rgba(48, 74, 90, .1);
}

.local-memo-step__head {
  grid-area: head;
  display: grid;
  justify-items: center;
  gap: 5px;
  padding-top: 6px;
  color: var(--step-color, var(--memo-sky));
}

.local-memo-step__number {
  color: currentColor;
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.local-memo-step__icon {
  display: grid;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 20px rgba(35, 58, 72, .1);
}

.local-memo-step__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.local-memo-step__phase {
  color: #6b4f2e;
  font-size: .78rem;
  font-weight: 900;
}

.local-memo-step__photo {
  grid-area: photo;
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, .96);
  border-radius: 3px;
  box-shadow: 0 14px 28px rgba(39, 67, 82, .12);
}

.local-memo-step__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 2.25 / 1;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.03);
}

.local-memo-step:nth-child(1) .local-memo-step__photo {
  transform: rotate(-.6deg);
}

.local-memo-step:nth-child(2) .local-memo-step__photo {
  transform: rotate(.5deg);
}

.local-memo-step:nth-child(3) .local-memo-step__photo {
  transform: rotate(-.4deg);
}

.local-memo-step__body {
  grid-area: body;
  padding: 0 2px;
}

.local-memo-step__body h3 {
  margin: 2px 0 6px;
  color: var(--memo-ink);
  font-size: 1.22rem;
  line-height: 1.5;
}

.local-memo-step__body p {
  margin: 0;
  color: #486173;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.78;
}

.local-memo-step--food {
  --step-color: var(--memo-coral);
}

.local-memo-step--bbq {
  --step-color: var(--memo-sky);
}

.local-memo-step--walk {
  --step-color: var(--memo-sage);
}

.local-memo-notes {
  grid-area: notes;
  display: grid;
  gap: 14px;
}

.local-memo-note {
  position: relative;
  padding: 15px 15px 14px;
  border: 1px solid rgba(138, 106, 69, .16);
  border-radius: 2px;
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 12px 28px rgba(53, 76, 91, .08);
}

.local-memo-note::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 18px;
  width: 76px;
  height: 24px;
  background: rgba(236, 213, 164, .66);
  box-shadow: 0 7px 14px rgba(82, 58, 30, .09);
  transform: rotate(-2deg);
}

.local-memo-note--sea::before {
  left: auto;
  right: 20px;
  transform: rotate(2deg);
}

.local-memo-note__label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 2px;
  background: var(--note-color, var(--memo-coral));
  color: #fff;
  font-family: var(--font-soft);
  font-size: .8rem;
  font-weight: 900;
}

.local-memo-note figure {
  margin: 10px 0 9px;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, .94);
  border-radius: 2px;
  box-shadow: 0 10px 20px rgba(37, 59, 72, .08);
}

.local-memo-note figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.72 / 1;
  object-fit: cover;
}

.local-memo-note p {
  margin: 0;
  color: #486173;
  font-size: .84rem;
  font-weight: 750;
  line-height: 1.68;
}

.local-memo-note ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.local-memo-note li {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 8px;
  border-radius: 2px;
  background: rgba(255, 249, 232, .92);
  color: #6b4f2e;
  font-size: .74rem;
  font-weight: 900;
}

.local-memo-note--food {
  --note-color: var(--memo-coral);
}

.local-memo-note--sea {
  --note-color: #4f94c8;
}

.local-memo-note--spot {
  --note-color: var(--memo-sage);
}

.local-memo-actions {
  grid-area: actions;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-self: end;
}

.local-memo-actions .button {
  min-width: 180px;
  border-radius: 2px;
}



.page-plan .food-source-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  grid-template-rows: repeat(3, minmax(132px, 1fr));
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid rgba(36, 71, 95, .24);
  border-bottom: 1px solid rgba(36, 71, 95, .24);
}

.page-plan .food-source-grid .info-card--photo {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #fff;
}

.page-plan .food-source-grid .info-card--photo:first-child {
  grid-row: 1 / 4;
  grid-template-rows: minmax(330px, 1fr) auto;
  border-right: 1px solid rgba(36, 71, 95, .2);
}

.page-plan .food-source-grid .info-card--photo:not(:first-child) {
  grid-template-columns: 148px minmax(0, 1fr);
  border-bottom: 1px solid rgba(36, 71, 95, .16);
}

.page-plan .food-source-grid .info-card--photo:last-child {
  border-bottom: 0;
}

.page-plan .food-source-grid .info-card__image {
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.page-plan .food-source-grid .info-card--photo:first-child .info-card__image {
  min-height: 330px;
}

.page-plan .food-source-grid .info-card--photo > div {
  display: grid;
  align-content: center;
  padding: 16px 20px;
}

.page-plan .food-source-grid .info-card--photo:first-child > div {
  padding: 18px 22px 20px;
  border-top: 1px solid rgba(36, 71, 95, .12);
}

.page-plan .food-source-grid .info-card--photo h3 {
  margin: 0 0 4px;
  font-size: 1.08rem;
}

.page-plan .food-source-grid .info-card--photo p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.65;
}


.page-plan .section--plan-flow {
  padding-top: 50px;
  padding-bottom: 52px;
}

.page-plan .section--plan-flow .section__header {
  max-width: 900px;
  margin-bottom: 20px;
}

.page-plan .section--plan-flow .timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: none;
  border-top: 2px solid var(--color-ink);
  border-bottom: 1px solid rgba(36, 71, 95, .26);
}

.page-plan .section--plan-flow .timeline__item {
  display: block;
  min-width: 0;
  padding: 20px 20px 22px;
}

.page-plan .section--plan-flow .timeline__item + .timeline__item {
  border-left: 1px solid rgba(36, 71, 95, .18);
}

.page-plan .section--plan-flow .timeline__num {
  width: 34px;
  height: 28px;
  margin-bottom: 12px;
  border-radius: 0;
  background: #0f78a8;
  font-family: var(--font-number);
  font-size: .82rem;
}

.page-plan .section--plan-flow .timeline__item:nth-child(2) .timeline__num {
  background: #5f8f57;
}

.page-plan .section--plan-flow .timeline__item:nth-child(3) .timeline__num {
  background: #e26d5c;
}

.page-plan .section--plan-flow .timeline__item:nth-child(4) .timeline__num {
  background: #8a6a45;
}

.page-plan .section--plan-flow .timeline__item h3 {
  margin: 0 0 6px;
  font-size: 1.08rem;
  line-height: 1.45;
}

.page-plan .section--plan-flow .timeline__item p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.68;
}

.page-plan .section--plan-notes {
  padding-top: 46px;
  padding-bottom: 50px;
  background: #f3ecdd;
}

.page-plan .section--plan-notes .section__header {
  margin-bottom: 18px;
}

.page-plan .section--plan-notes .overview {
  border-color: rgba(36, 71, 95, .24);
}

@media (min-width: 761px) {
  .page-plan .section--plan-notes .overview {
    grid-template-columns: 224px minmax(0, 1fr);
  }
}

.page-plan .section--plan-notes .overview dt,
.page-plan .section--plan-notes .overview dd {
  padding: 11px 16px;
  line-height: 1.7;
}

.page-plan .section--plan-notes .overview dt {
  background: rgba(255, 255, 255, .58);
}

@media (min-width: 761px) and (max-width: 940px) {
  .page-plan .food-source-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  }


  .page-plan .section--plan-flow .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-plan .section--plan-flow .timeline__item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(36, 71, 95, .18);
  }

  .page-plan .section--plan-flow .timeline__item:nth-child(4) {
    border-top: 1px solid rgba(36, 71, 95, .18);
  }
}

@media (max-width: 760px) {
  .page-plan .food-source-intro {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 22px;
  }

  .page-plan .food-source-intro__copy {
    gap: 10px;
  }

  .page-plan .food-source-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    margin-top: 22px;
  }

  .page-plan .food-source-grid .info-card--photo:first-child {
    grid-row: auto;
    grid-template-rows: 230px auto;
    border-right: 0;
    border-bottom: 1px solid rgba(36, 71, 95, .18);
  }

  .page-plan .food-source-grid .info-card--photo:first-child .info-card__image {
    min-height: 230px;
  }

  .page-plan .food-source-grid .info-card--photo:not(:first-child) {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .page-plan .food-source-grid .info-card--photo > div,
  .page-plan .food-source-grid .info-card--photo:first-child > div {
    padding: 14px 15px 15px;
  }






  .page-plan .section--plan-flow .timeline {
    grid-template-columns: 1fr;
  }

  .page-plan .section--plan-flow .timeline__item {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 12px;
    padding: 15px 14px 16px;
  }

  .page-plan .section--plan-flow .timeline__item + .timeline__item {
    border-left: 0;
    border-top: 1px solid rgba(36, 71, 95, .16);
  }

  .page-plan .section--plan-flow .timeline__num {
    grid-row: 1 / 3;
    width: 34px;
    margin: 1px 0 0;
  }

  .page-plan .section--plan-notes .overview dt,
  .page-plan .section--plan-notes .overview dd {
    padding-left: 14px;
    padding-right: 14px;
  }
}
/* Shared reservation and return controls. Header dimensions remain unchanged. */
.header-phone-cta {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-left: 14px;
  padding: 5px 12px;
  border: 1px solid currentColor;
  color: var(--color-deep);
  font-size: .78rem;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
}

.header-phone-cta small { display: block; margin-top: 2px; font-size: .68rem; font-weight: 800; }
.header-phone-cta__compact { display: none; }
.site-header:not(.is-scrolled):not(.is-solid) .header-phone-cta { color: #fff; }
.header-phone-cta:hover { background: var(--color-deep); border-color: var(--color-deep); color: #fff; }
.header-phone-cta:focus-visible,
.mobile-phone-cta:focus-visible,
.scroll-top:focus-visible,
.instagram-banner:focus-visible { outline: 3px solid #f6a21a; outline-offset: 3px; }

.mobile-phone-cta { display: none; }
.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(36, 71, 95, .42);
  border-radius: 50%;
  background: rgba(255, 255, 255, .96);
  color: var(--color-deep);
  cursor: pointer;
  font-size: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, background-color .2s ease;
}
.scroll-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: var(--color-deep); color: #fff; }
.scroll-top__icon {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  line-height: 1;
  transform: translateY(-2px);
}

.condition-banner {
  position: relative;
  grid-template-columns: 1fr;
  min-height: 142px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #123f64;
  color: #fff;
  isolation: isolate;
}
.condition-banner::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(8, 36, 56, .8), rgba(8, 36, 56, .16)); }
.condition-banner img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; opacity: .92; }
.condition-banner span { position: relative; display: grid; align-content: center; min-height: 142px; padding: 20px 24px; }
.condition-banner strong { color: #fff; font-size: clamp(1rem, .9rem + .35vw, 1.18rem); }
.condition-banner small { margin-top: 7px; color: rgba(255,255,255,.94); font-size: .86rem; font-weight: 700; }

.section--instagram-banner { padding-top: 40px; padding-bottom: 44px; }
.instagram-banner { border-radius: 0; background: #fff; border: 1px solid rgba(36, 71, 95, .18); box-shadow: none; }
.instagram-banner__action { display: inline-flex; width: fit-content; margin-top: 16px; padding: 11px 17px; border-radius: 4px; background: linear-gradient(120deg, #7b2dbb, #d62976 52%, #f58529); color: #fff; font-weight: 900; }
.instagram-banner:hover .instagram-banner__action { filter: none; }

@media (max-width: 1080px) and (min-width: 641px) {
  .header-phone-cta__wide { display: none; }
  .header-phone-cta__compact { display: inline; }
  .header-phone-cta { margin-left: 10px; padding: 7px 10px; }
}
@media (max-width: 640px) {
  .header-phone-cta { display: none; }
  .mobile-phone-cta { position: fixed; right: max(16px, env(safe-area-inset-right)); bottom: max(14px, env(safe-area-inset-bottom)); left: max(16px, env(safe-area-inset-left)); z-index: 92; display: flex; width: min(360px, calc(100% - 32px)); min-height: 48px; margin: 0 auto; align-items: center; justify-content: center; border-radius: 4px; background: #e26d3f; color: #fff; box-shadow: 0 10px 24px rgba(38, 32, 23, .24); font-size: clamp(.78rem, 3.7vw, .92rem); font-weight: 900; line-height: 1.2; text-decoration: none; white-space: nowrap; }
  body { padding-bottom: 78px; }
  .scroll-top { right: 16px; bottom: 74px; width: 40px; height: 40px; }
  .condition-banner, .condition-banner span { min-height: 118px; }
  .condition-banner span { padding: 16px 18px; }
}

/* Facility redesign: on-site route and equipment ledger. */
.page-facility {
  font-family: var(--font-body);
}

.page-facility .section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.page-facility .section__title {
  margin: 8px 0;
  font-family: var(--font-display);
  font-size: var(--type-section-title);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0;
}

.page-facility .section__eyebrow {
  font-size: .84rem;
  font-weight: 900;
  line-height: 1.5;
}

.page-facility .section__lead,
.page-facility p,
.page-facility dt,
.page-facility dd {
  font-family: var(--font-body);
}

.page-facility .section__lead {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.78;
}

.page-facility .page-hero--facility {
  min-height: clamp(270px, 31vh, 330px);
  padding: 102px 20px 42px;
  background: url("../img/utility-roofed-bbq-v1.opt.webp") center 46% / cover no-repeat;
  color: var(--color-ink);
  place-items: center stretch;
}

.page-facility .page-hero__heading {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding: 20px 0 22px;
}

.page-facility .page-hero__heading::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 -32px;
  width: min(860px, 78vw);
  background: linear-gradient(90deg, rgba(255, 250, 238, .94) 0%, rgba(255, 250, 238, .82) 52%, rgba(255, 250, 238, 0) 100%);
  pointer-events: none;
}

.page-facility .page-hero__eyebrow {
  display: block;
  margin-bottom: 7px;
  color: rgba(18, 63, 100, .82);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: .76rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .18em;
}

.page-facility .page-hero__title-row {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 32px);
  width: min(820px, 76vw);
}

.page-facility .page-hero__title {
  width: auto;
  flex: 0 0 auto;
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: var(--type-page-title);
  font-weight: 900;
  line-height: 1.36;
  text-align: left;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .68);
}

.page-facility .page-hero__title::after { content: none; }

.page-facility .page-hero__rule {
  display: block;
  flex: 1 1 auto;
  min-width: 48px;
  height: 3px;
  margin-top: .22em;
  background: #e26d5c;
}

.page-facility .facility-primary {
  padding-top: 52px;
  padding-bottom: 58px;
  background: #fff;
}

.page-facility .facility-primary__head {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 2px 28px;
  align-items: end;
  margin-bottom: 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(36, 71, 95, .22);
}

.page-facility .facility-primary__head .section__eyebrow {
  grid-row: 1 / 3;
  align-self: center;
}

.page-facility .facility-primary__head .section__title,
.page-facility .facility-primary__head .section__lead {
  margin: 0;
}

.page-facility .facility-route {
  border-top: 2px solid var(--color-ink);
  border-bottom: 1px solid rgba(36, 71, 95, .24);
}

.page-facility .facility-stop {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  min-height: 410px;
}

.page-facility .facility-stop + .facility-stop {
  border-top: 1px solid rgba(36, 71, 95, .22);
}

.page-facility .facility-stop--reverse .facility-stop__photo { order: 2; }
.page-facility .facility-stop--reverse .facility-stop__copy { order: 1; }

.page-facility .facility-stop__photo {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #e8f0f2;
}

.page-facility .facility-stop__photo img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
}

.page-facility .facility-stop__photo figcaption {
  padding: 9px 16px 10px;
  border-top: 1px solid rgba(36, 71, 95, .14);
  color: #526879;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.55;
}

.page-facility .facility-stop__copy {
  position: relative;
  display: grid;
  align-content: center;
  padding: 34px 38px 36px;
  background: #fff;
}

.page-facility .facility-stop__index {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(15, 95, 143, .18);
  font-family: var(--font-number);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.page-facility .facility-stop--reverse .facility-stop__index {
  right: auto;
  left: 22px;
}

.page-facility .facility-stop__copy .section__eyebrow { margin-bottom: 2px; }
.page-facility .facility-stop__copy .section__title { margin-bottom: 10px; }
.page-facility .facility-stop__copy p { margin: 0; font-size: .95rem; font-weight: 500; line-height: 1.8; }
.page-facility .facility-stop__copy p + p { margin-top: 10px; }

.page-facility .facility-free-space {
  padding-top: 54px;
  padding-bottom: 58px;
}

.page-facility .facility-free-space .free-space-layout { gap: 28px 34px; }
.page-facility .facility-free-space .free-space-copy .section__title { margin-bottom: 8px; }
.page-facility .facility-free-space .free-space-actions { margin-top: 20px; }
.page-facility .facility-free-space .free-space-visual::after { content: none; }
.page-facility .facility-free-space .free-space-panel { padding: 12px; }
.page-facility .facility-free-space .free-space-price { min-height: 0; padding: 18px 20px; }
.page-facility .facility-free-space .free-space-specs div {
  grid-template-columns: 180px minmax(0, 1fr);
  padding-top: 12px;
  padding-bottom: 12px;
}
.page-facility .facility-free-space .free-space-specs dt { white-space: nowrap; }
@media (max-width: 640px) {
  .page-facility .facility-free-space .free-space-specs div { grid-template-columns: 1fr; }
}

.page-facility .facility-amenities {
  padding-top: 52px;
  padding-bottom: 58px;
  background: #f3ecdd;
}

.page-facility .facility-amenities__head {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 2px 28px;
  align-items: end;
  margin-bottom: 22px;
}

.page-facility .facility-amenities__head .section__eyebrow { grid-row: 1 / 3; align-self: center; }
.page-facility .facility-amenities__head .section__title,
.page-facility .facility-amenities__head .section__lead { margin: 0; }

.page-facility .facility-equipment {
  display: grid;
  grid-template-columns: minmax(330px, .78fr) minmax(0, 1.22fr);
  border-top: 2px solid var(--color-ink);
  border-bottom: 1px solid rgba(36, 71, 95, .26);
  background: rgba(255, 255, 255, .72);
}

.page-facility .facility-equipment__photos {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: minmax(330px, 1fr);
  min-width: 0;
  border-right: 1px solid rgba(36, 71, 95, .2);
}

.page-facility .facility-equipment__photo {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.page-facility .facility-equipment__photo + .facility-equipment__photo {
  border-left: 1px solid rgba(36, 71, 95, .16);
}

.page-facility .facility-equipment__photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.page-facility .facility-equipment__photo--shower img {
  filter: brightness(1.24) saturate(1.08) contrast(.98);
}

.page-facility .facility-equipment__photo--shelter img {
  object-position: center 48%;
  filter: brightness(1.12) saturate(1.08) contrast(1.02);
}

.page-facility .facility-equipment__photo figcaption {
  padding: 9px 12px 10px;
  border-top: 1px solid rgba(36, 71, 95, .14);
  color: #526879;
  font-size: .76rem;
  font-weight: 700;
  line-height: 1.55;
}

.page-facility .facility-ledger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-facility .facility-ledger__group + .facility-ledger__group {
  border-left: 1px solid rgba(36, 71, 95, .18);
}

.page-facility .facility-ledger__group header {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(36, 71, 95, .2);
}

.page-facility .facility-ledger__group header span {
  color: #0f78a8;
  font-family: var(--font-number);
  font-size: .72rem;
  font-weight: 900;
}

.page-facility .facility-ledger__group header h3 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.4;
}

.page-facility .facility-ledger__group dl { margin: 0; }
.page-facility .facility-ledger__group dl div { padding: 12px 16px 13px; border-bottom: 1px solid rgba(36, 71, 95, .12); }
.page-facility .facility-ledger__group dl div:last-child { border-bottom: 0; }
.page-facility .facility-ledger__group dt { color: var(--color-ink); font-size: .9rem; font-weight: 900; line-height: 1.5; }
.page-facility .facility-ledger__group dd { margin: 3px 0 0; color: #526879; font-size: .82rem; font-weight: 500; line-height: 1.65; }

.page-facility .facility-overview {
  padding-top: 46px;
  padding-bottom: 50px;
  background: #fff;
}

.page-facility .facility-overview .section__header { margin-bottom: 18px; }
.page-facility .facility-overview .overview { border-color: rgba(36, 71, 95, .22); }
.page-facility .facility-overview .overview dt,
.page-facility .facility-overview .overview dd { padding: 10px 16px; font-size: .92rem; line-height: 1.7; }
.page-facility .facility-overview .overview dt { background: #f3ecdd; }

@media (max-width: 940px) {
  .page-facility .facility-stop { grid-template-columns: 1fr; }
  .page-facility .facility-stop--reverse .facility-stop__photo,
  .page-facility .facility-stop--reverse .facility-stop__copy { order: initial; }
  .page-facility .facility-stop__photo img { min-height: 300px; }
  .page-facility .facility-equipment { grid-template-columns: 1fr; }
  .page-facility .facility-equipment__photos { border-right: 0; border-bottom: 1px solid rgba(36, 71, 95, .2); }
}

@media (max-width: 640px) {
  .page-facility { --type-page-title: 1.8rem; --type-section-title: 1.55rem; }
  .page-facility .section { padding-top: 44px; padding-bottom: 44px; }
  .page-facility .page-hero--facility {
    min-height: 246px;
    padding: 88px 14px 30px;
    background-position: 55% center;
  }
  .page-facility .page-hero__heading { width: var(--container); padding: 17px 0 18px; }
  .page-facility .page-hero__heading::before { inset: 0 auto 0 -18px; width: min(430px, calc(100vw - 14px)); }
  .page-facility .page-hero__eyebrow { margin-bottom: 6px; font-size: .68rem; letter-spacing: .15em; }
  .page-facility .page-hero__title-row { gap: 14px; width: min(430px, 100%); }
  .page-facility .page-hero__rule { min-width: 30px; height: 2px; }
  .page-facility .facility-primary__head,
  .page-facility .facility-amenities__head { display: block; margin-bottom: 18px; padding-bottom: 16px; }
  .page-facility .facility-primary__head .section__eyebrow,
  .page-facility .facility-amenities__head .section__eyebrow { display: inline-flex; margin-bottom: 7px; }
  .page-facility .facility-primary__head .section__lead,
  .page-facility .facility-amenities__head .section__lead { margin-top: 6px; font-size: .92rem; }
  .page-facility .facility-stop__photo img { min-height: 0; aspect-ratio: 16 / 10; }
  .page-facility .facility-stop__copy { padding: 28px 18px 30px; }
  .page-facility .facility-stop__index { top: 14px; right: 16px; font-size: 1.55rem; }
  .page-facility .facility-stop--reverse .facility-stop__index { left: auto; right: 16px; }
  .page-facility .facility-stop__copy p { font-size: .92rem; line-height: 1.78; }
  .page-facility .facility-free-space .free-space-layout { gap: 24px; }
  .page-facility .facility-equipment__photos { grid-template-columns: 1fr 1fr; grid-template-rows: 220px; }
  .page-facility .facility-equipment__photo img { min-height: 170px; }
  .page-facility .facility-ledger { grid-template-columns: 1fr; }
  .page-facility .facility-ledger__group + .facility-ledger__group { border-left: 0; border-top: 1px solid rgba(36, 71, 95, .2); }
  .page-facility .facility-overview .overview dt,
  .page-facility .facility-overview .overview dd { padding-left: 14px; padding-right: 14px; font-size: .88rem; }
}

/* 2026-07-20: arrival information band and reservation controls. */
.header-phone-cta,
.site-header:not(.is-scrolled):not(.is-solid) .header-phone-cta {
  border-color: #e26d3f;
  background: #e26d3f;
  color: #fff;
  box-shadow: 0 7px 16px rgba(104, 42, 28, .22);
}

.header-phone-cta:hover {
  border-color: #c8542d;
  background: #c8542d;
  color: #fff;
}

.condition-strip {
  padding: 28px 0 30px;
  background: #fff;
  border-top: 1px solid rgba(20, 67, 78, .12);
  border-bottom: 1px solid rgba(20, 67, 78, .12);
}

.condition-strip__heading {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 8px 14px;
  align-items: baseline;
  margin: 0 0 14px;
  color: #173d50;
}

.condition-strip__heading > span {
  color: #bd5a38;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.condition-strip__heading h2 { margin: 0; font-size: 1.04rem; line-height: 1.35; }
.condition-strip__heading p { margin: 0; color: #52707a; font-size: .82rem; font-weight: 700; }

.condition-strip__grid { gap: 0; border-top: 1px solid rgba(20, 67, 78, .22); }

.condition-banner {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  min-height: 0;
  padding: 16px 18px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(20, 67, 78, .22);
  background: transparent;
  box-shadow: none;
  color: #173d50;
  isolation: auto;
}

.condition-banner::after { content: none; }
.condition-banner:hover { transform: none; border-color: rgba(20, 67, 78, .48); box-shadow: none; }
.condition-banner__icon { width: 42px; height: 42px; color: #2b7893; }
.condition-banner--weather .condition-banner__icon { color: #c96a33; }
.condition-banner span { display: grid; gap: 2px; min-height: 0; padding: 0; }
.condition-banner small { color: #6d7d73; font-size: .7rem; font-weight: 900; letter-spacing: .08em; }
.condition-banner strong { color: #173d50; font-size: clamp(1rem, .9rem + .3vw, 1.15rem); line-height: 1.3; }
.condition-banner em { color: #52707a; font-size: .78rem; font-style: normal; font-weight: 800; }
.condition-banner em b { margin-left: 4px; color: #bd5a38; font-size: .98rem; }

@media (min-width: 641px) and (max-width: 940px) {
  .site-header__inner { justify-content: flex-start; gap: 10px; }
  .site-header__inner .site-logo { margin-right: auto; }
  .site-header__inner .site-nav { display: none; }
  .site-header__inner .menu-toggle { display: block; flex: 0 0 44px; }
  .header-phone-cta { flex: 0 0 auto; margin-left: 0; padding: 7px 10px; }
}

/* The board changes structure before its desktop columns become too narrow. */
@media (min-width: 821px) and (max-width: 940px) {
  .home-free-space__board {
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    grid-template-areas:
      "copy visual"
      "panel panel";
    min-height: 0;
    padding: clamp(38px, 5vw, 52px);
  }

  .home-free-space .free-space-copy { max-width: none; }
}

@media (max-width: 820px) {
  .home-free-space__board {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "copy"
      "visual"
      "panel";
    min-height: 0;
    gap: 28px;
    padding: clamp(30px, 6vw, 46px);
  }

  .home-free-space .free-space-copy {
    min-width: 0;
    max-width: none;
    grid-template-columns: minmax(0, 1fr);
  }
  .home-free-space .free-space-copy .section__title,
  .home-free-space .free-space-copy .section__lead,
  .home-free-space .home-free-space__memo,
  .home-free-space .free-space-actions {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }
  .home-free-space .free-space-copy .section__title {
    word-break: normal;
    overflow-wrap: anywhere;
  }
  .home-free-space .free-space-visual { min-height: clamp(330px, 58vw, 430px); }
}

@media (max-width: 480px) {
  .home-free-space__board { gap: 22px; padding: 28px 18px 30px; }
  .home-free-space .free-space-copy { padding: 14px; }
  .home-free-space .free-space-actions { display: grid; grid-template-columns: minmax(0, 1fr); }
  .home-free-space .free-space-actions .button { justify-content: center; }
  .home-free-space .free-space-visual { min-height: clamp(272px, 92vw, 360px); }
  .home-free-space .free-space-panel { padding: 16px; }
}

@media (max-width: 760px) {
  .section__title--plan-choice,
  .section__title--winter-bbq { white-space: normal; }
  .condition-strip { padding: 22px 0 24px; }
  .condition-strip__heading { grid-template-columns: 1fr; gap: 4px; margin-bottom: 12px; }
  .condition-strip__heading p { font-size: .78rem; }
  .condition-banner { grid-template-columns: 38px minmax(0, 1fr); gap: 12px; min-height: 0; padding: 14px 4px; }
  .condition-banner__icon { width: 38px; height: 38px; }
  .condition-banner span { min-height: 0; padding: 0; }
}

/* Keep the decorative tape outside each clipped content surface. */
.home-free-space__frame,
.home-local-board__frame {
  position: relative;
  overflow: visible;
}

.home-free-space__tape,
.home-local-board__tape {
  position: absolute;
  z-index: 3;
  display: block;
  pointer-events: none;
}

.home-free-space__tape {
  top: -13px;
  right: 21%;
  width: 108px;
  height: 34px;
  background: rgba(236, 213, 164, .74);
  box-shadow: 0 8px 18px rgba(82, 58, 30, .14);
  transform: rotate(-2deg);
}

.home-local-board__tape {
  top: -12px;
  left: 52%;
  width: 112px;
  height: 32px;
  background: rgba(236, 213, 164, .72);
  box-shadow: 0 8px 16px rgba(82, 58, 30, .12);
  transform: rotate(2deg);
}

/* Keep the document visible while web fonts settle. Component-level entrance
   motion remains available without blanking the complete page. */
html.page-font-loading body.has-page-fade,
body.has-page-fade.is-page-ready {
  opacity: 1;
  animation: none;
}

body.page-plan {
  overflow-x: hidden;
}

/* Bring the plan hero up to the current secondary-page title treatment. */
.page-plan .page-hero--plan {
  min-height: clamp(270px, 31vh, 330px);
  padding: 102px 20px 42px;
  overflow: hidden;
  background: url("../img/page-hero-plan-bbq-wide.jpg") center 54% / cover no-repeat;
  color: var(--color-ink);
  place-items: center stretch;
}

/* Restore the approved connected sign and keep the home price path explicit. */
.page-home .price-board__head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  width: min(760px, 100%);
  margin-bottom: 30px;
  padding-left: 0;
  filter: drop-shadow(0 7px 0 rgba(55, 35, 18, .18));
}

.page-home .price-board__head .plan-kicker {
  position: relative;
  z-index: 1;
  min-width: 230px;
  padding: 13px 28px 14px;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: #0f4775;
  color: #fff;
  box-shadow: none;
  font-family: var(--font-soft);
  font-size: clamp(1.28rem, 1.8vw, 1.58rem);
  letter-spacing: .02em;
  transform: none;
}

.page-home .price-board__head .plan-kicker::before,
.page-home .price-board__head .plan-kicker::after {
  content: none;
}

.page-home .price-board__head p {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 11px 24px 12px;
  background: #ffd23f;
  color: #163e57;
  font-family: var(--font-soft);
  font-size: .98rem;
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: 0;
  text-shadow: none;
}

.price-board__detail-action {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.price-board__detail-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 11px 20px;
  border: 1px solid rgba(15, 71, 117, .34);
  background: #fff9ee;
  color: #0f4775;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 4px 4px 0 rgba(42, 28, 16, .12);
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.price-board__detail-link:hover {
  border-color: rgba(15, 71, 117, .64);
  background: #fff;
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .page-home .price-board__head {
    grid-template-columns: 1fr;
    width: 100%;
    margin-bottom: 26px;
    padding-left: 0;
  }

  .page-home .price-board__head .plan-kicker {
    width: 100%;
    min-width: 0;
    padding: 12px 18px 13px;
    justify-content: flex-start;
    font-size: 1.22rem;
  }

  .page-home .price-board__head p {
    padding: 10px 18px 11px;
    font-size: .88rem;
    line-height: 1.55;
  }

  .price-board__detail-action {
    margin-top: 22px;
  }

  .price-board__detail-link {
    width: 100%;
    justify-content: center;
  }
}

.page-plan .page-hero__heading {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding: 20px 0 22px;
}

.page-plan .page-hero__heading::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 -32px;
  width: min(860px, 78vw);
  background: linear-gradient(90deg, rgba(255, 250, 238, .94) 0%, rgba(255, 250, 238, .82) 52%, rgba(255, 250, 238, 0) 100%);
  pointer-events: none;
}

.page-plan .page-hero__eyebrow {
  display: block;
  margin-bottom: 7px;
  color: rgba(18, 63, 100, .82);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: .76rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .18em;
}

.page-plan .page-hero__title-row {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 32px);
  width: min(820px, 76vw);
}

.page-plan .page-hero__title {
  width: auto;
  flex: 0 0 auto;
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: var(--type-page-title);
  font-weight: 900;
  line-height: 1.36;
  text-align: left;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .68);
}

.page-plan .page-hero__title::after { content: none; }

.page-plan .page-hero__rule {
  display: block;
  flex: 1 1 auto;
  min-width: 48px;
  height: 3px;
  margin-top: .22em;
  background: #e26d5c;
}

@media (max-width: 640px) {
  .page-plan .page-hero--plan {
    min-height: 246px;
    padding: 88px 14px 30px;
    background-position: 55% center;
  }
  .page-plan .page-hero__heading { width: var(--container); padding: 17px 0 18px; }
  .page-plan .page-hero__heading::before { inset: 0 auto 0 -18px; }
  .page-plan .page-hero__eyebrow { margin-bottom: 6px; font-size: .68rem; letter-spacing: .15em; }
  .page-plan .page-hero__title-row { gap: 14px; width: min(430px, 100%); min-width: 0; }
  .page-plan .page-hero__title { min-width: 0; }
  .page-plan .page-hero__rule { min-width: 30px; height: 2px; }
}

@media (prefers-reduced-motion: reduce) {
  body.has-page-fade.is-page-ready {
    opacity: 1;
    animation: none;
  }
}
