:root {
  --ink: #08233a;
  --muted: #5b6975;
  --line: #d8e0e6;
  --paper: #fffdf8;
  --mist: #edf7fb;
  --ocean: #003f5c;
  --blue: #006a96;
  --orange: #ef6b17;
  --gold: #c29a46;
  --lime: #9acb1f;
  --forest: #3f6d36;
  --radius: 8px;
  --shadow: 0 20px 50px rgba(8, 35, 58, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  line-height: 1.65;
}

/* 見出しの改行位置：意味のかたまりの途中で折り返さない */
.nw {
  display: inline-block;
}

h1,
h2,
h3 {
  word-break: auto-phrase;
}

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

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

.site-shell {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(237, 247, 251, .72), rgba(255, 253, 248, 0) 420px),
    var(--paper);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 12px clamp(18px, 5vw, 64px);
  color: white;
  background: rgba(0, 63, 92, .92);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 3px solid #e5c576;
  border-radius: 999px;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, .75);
}

.brand span:last-child {
  display: block;
  font-size: 18px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  opacity: .9;
}

.icon-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 26px;
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover,
.icon-button:hover {
  transform: translateY(-1px);
}

.button.primary {
  min-height: 64px;
  padding: 0 40px;
  color: white;
  background: linear-gradient(135deg, #f47a19, #e8491f);
  box-shadow: 0 14px 34px rgba(232, 73, 31, .34);
  font-size: 19px;
  letter-spacing: .02em;
}

.button.primary i {
  width: 22px;
  height: 22px;
}

.booking-bar .button.primary {
  min-height: 58px;
  font-size: 18px;
}

.button.secondary {
  color: white;
  border-color: rgba(255, 255, 255, .58);
  background: rgba(0, 35, 56, .22);
}

.button.gold {
  color: white;
  background: linear-gradient(135deg, #d2ad5c, #b3842e);
  box-shadow: 0 12px 30px rgba(151, 107, 38, .24);
}

.button.lime {
  color: #10340b;
  background: linear-gradient(135deg, #b9db38, #86bd16);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  min-height: 620px;
  overflow: hidden;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--hero-image) center / cover no-repeat;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 30, 48, .86), rgba(0, 50, 72, .42) 48%, rgba(0, 0, 0, .08)),
    linear-gradient(0deg, rgba(0, 33, 52, .88), rgba(0, 33, 52, 0) 54%);
}

.hero-inner {
  width: min(1140px, calc(100% - 36px));
  margin: 0 auto;
  padding: 84px 0 58px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #d6ebf5;
  font-size: 14px;
  font-weight: 800;
}

.hero h1,
.split-title h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero p {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
}

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

.price-line {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .94);
  font-weight: 800;
}

.price-line strong {
  font-size: 22px;
}

.section {
  padding: 54px clamp(18px, 5vw, 64px);
}

.section.narrow {
  width: min(1140px, 100%);
  margin: 0 auto;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.2;
  letter-spacing: 0;
}

.section-title p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.value-card {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.value-card .icon {
  width: 38px;
  height: 38px;
  color: var(--blue);
}

.value-card h3 {
  margin: 10px 0 8px;
  font-size: 24px;
  letter-spacing: 0;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-auto-rows: 168px;
  gap: 10px;
}

.media-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d9e7ef;
}

.media-tile.large {
  grid-row: span 2;
}

.media-tile span {
  position: absolute;
  left: 12px;
  bottom: 10px;
  padding: 6px 10px;
  border-radius: 6px;
  color: white;
  background: rgba(0, 36, 56, .78);
  font-size: 13px;
  font-weight: 800;
}

.chips {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border: 1px solid #c7d8e2;
  border-radius: var(--radius);
  color: #0c5277;
  background: #f4fbff;
  font-size: 13px;
  font-weight: 800;
}

.split-feature {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 30px;
  align-items: center;
}

.split-feature .photo {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-feature h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.18;
}

.split-feature p {
  margin: 0 0 16px;
  color: var(--muted);
  font-weight: 700;
}

.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mini-list li {
  padding: 7px 10px;
  border: 1px solid #c9dbe4;
  border-radius: 6px;
  color: #0b5277;
  background: #f6fbfd;
  font-size: 12px;
  font-weight: 800;
}

.booking-bar {
  position: sticky;
  bottom: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px clamp(18px, 5vw, 64px);
  color: white;
  background: rgba(0, 63, 92, .96);
  box-shadow: 0 -12px 28px rgba(0, 25, 40, .22);
}

.booking-bar p {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
}

.booking-bar strong {
  font-size: 22px;
}

.calm .topbar,
.calm .booking-bar {
  background: rgba(35, 54, 65, .94);
}

.calm .hero {
  min-height: 600px;
  align-items: center;
  text-align: center;
}

.calm .hero::after {
  background:
    linear-gradient(0deg, rgba(253, 250, 243, .96), rgba(253, 250, 243, 0) 34%),
    linear-gradient(90deg, rgba(255, 253, 248, .68), rgba(255, 253, 248, .16), rgba(255, 253, 248, .68));
}

.calm .hero-inner {
  padding-top: 118px;
}

.calm .eyebrow,
.calm .hero,
.calm .hero p {
  color: var(--ink);
}

.calm .hero h1 {
  margin-inline: auto;
  color: #0b2d44;
}

.calm .hero p {
  margin-inline: auto;
}

.triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #d2c4a9;
  border-bottom: 1px solid #d2c4a9;
}

.triptych > div {
  padding: 28px 22px;
  text-align: center;
  border-right: 1px solid #d2c4a9;
}

.triptych > div:last-child {
  border-right: 0;
}

.triptych h3 {
  margin: 0 0 8px;
  font-size: 26px;
}

.gallery-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gallery-row .photo {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
}

.dark-band {
  color: white;
  background: linear-gradient(135deg, #003f5c, #00293f 70%, #193f39);
}

.dark-band .section-title p,
.dark-band .split-feature p {
  color: rgba(255, 255, 255, .78);
}

.dark-band .mini-list li {
  color: white;
  border-color: rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .08);
}

.hybrid .split-hero {
  min-height: 640px;
  color: white;
  background: #003f5c;
}

.hero-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 210px;
}

.hero-collage figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.hero-collage figcaption {
  position: absolute;
  left: 22px;
  bottom: 18px;
  font-size: 32px;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .55);
}

.split-title {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 24px 0 108px;
  text-align: center;
}

.hybrid .split-title h1 {
  font-size: clamp(38px, 4.6vw, 58px);
}

.split-title h1 {
  margin-inline: auto;
}

.split-title h1 span {
  color: var(--lime);
}

.split-title p {
  max-width: 720px;
  margin: 16px auto 0;
  font-size: 16px;
  font-weight: 800;
}

.hybrid .split-title .price-line {
  display: none;
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #d6e5ab;
  border-bottom: 1px solid #d6e5ab;
  background: #f8fce9;
}

.benefit-strip div {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 92px;
  padding: 12px 8px;
  text-align: center;
  border-right: 1px solid #d6e5ab;
  color: #254513;
  font-size: 13px;
  font-weight: 900;
}

.benefit-strip div:last-child {
  border-right: 0;
}

.benefit-strip svg {
  width: 27px;
  height: 27px;
}

.rooms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.room-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.room-card .photo {
  aspect-ratio: 4 / 3;
}

.room-card div:last-child {
  padding: 16px;
}

.room-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.room-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.index-page {
  min-height: 100vh;
  padding: clamp(24px, 6vw, 72px);
  background:
    linear-gradient(180deg, #eaf6fa 0, #fffdf8 44%),
    var(--paper);
}

.index-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 30px;
}

.index-head h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.08;
}

.index-head p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.proposal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}

.proposal-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 15px 36px rgba(8, 35, 58, .1);
}

.proposal-card .thumb {
  aspect-ratio: 4 / 5.35;
  background: #dce8ef;
}

.proposal-card .body {
  padding: 18px;
}

.proposal-card h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.proposal-card p {
  min-height: 72px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.full-site {
  --ink: #073047;
  --ocean: #08475c;
  --blue: #0e6e8c;
  --green: #5c9a3e;
  --orange: #f2a03d;
  background: #fff;
}

.full-site .topbar {
  background: rgba(8, 71, 92, .94);
}

.full-site .hero {
  align-items: center;
  min-height: 720px;
}

.full-site .hero .hero-inner {
  padding: 40px 0 64px;
}

.mobile-only {
  display: none;
}

.full-site .hero::after {
  background:
    linear-gradient(90deg, rgba(8, 71, 92, .9), rgba(8, 71, 92, .48) 48%, rgba(8, 71, 92, .06)),
    linear-gradient(0deg, rgba(8, 71, 92, .9), rgba(8, 71, 92, 0) 58%);
}

.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--ocean);
  background: rgba(255, 255, 255, .92);
  font-size: 13px;
  font-weight: 900;
}

.concept-strip {
  padding: 18px;
  color: #173506;
  background: var(--lime);
  text-align: center;
  font-size: clamp(18px, 2.4vw, 30px);
  font-weight: 900;
}

.number-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 28px;
  border-radius: var(--radius);
}

.number-card:nth-child(1) {
  background: #e7f3f7;
}

.number-card:nth-child(2) {
  background: #eff6e9;
}

.number-card:nth-child(3) {
  background: #fbf2e4;
}

.number-card::after {
  content: attr(data-number);
  position: absolute;
  right: 18px;
  top: 8px;
  color: rgba(8, 71, 92, .09);
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
}

.number-card h3,
.full-card h3,
.timeline-card h3,
.course-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.25;
}

.number-card p,
.full-card p,
.timeline-card p,
.course-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.label {
  display: inline-block;
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.onsen-gallery {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 12px;
}

.onsen-gallery .photo {
  overflow: hidden;
  border-radius: var(--radius);
  background: #e3eef4;
}

.onsen-gallery .photo:first-child {
  grid-row: span 2;
}

.full-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.full-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 28px rgba(8, 71, 92, .1);
}

.full-card .photo {
  aspect-ratio: 4 / 3;
}

.full-card .body {
  padding: 18px;
}

.card-badge {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  color: white;
  background: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.food-stack {
  display: grid;
  gap: 12px;
}

.food-stack .photo {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
}

.price-panel {
  overflow: hidden;
  border-radius: var(--radius);
  color: white;
  background: var(--ocean);
}

.price-panel-inner {
  padding: clamp(24px, 5vw, 52px);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.price-box {
  min-height: 128px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: var(--radius);
}

.price-box span {
  display: block;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 800;
}

.price-box strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
}

.free-band {
  padding: 18px;
  color: white;
  background: var(--orange);
  text-align: center;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 900;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.timeline-card {
  position: relative;
  min-height: 190px;
  padding: 18px;
  border: 1px solid #c7d8e2;
  border-radius: var(--radius);
  background: white;
}

.timeline-card time {
  display: block;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

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

.course-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.course-card .photo {
  aspect-ratio: 16 / 10;
}

.course-card .body {
  padding: 18px;
}

.group-band {
  color: white;
  background: var(--ocean);
}

.group-band .section-title p,
.group-band .split-feature p,
.group-band .label {
  color: rgba(255, 255, 255, .82);
}

.group-band .photo {
  box-shadow: none;
}

.access-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
}

.map-panel {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(14, 110, 140, .26), rgba(92, 154, 62, .18)),
    #e7f3f7;
}

.map-panel::before {
  content: "";
  position: absolute;
  inset: 40px -40px auto;
  height: 180px;
  border: 3px solid rgba(14, 110, 140, .35);
  border-left: 0;
  border-radius: 0 999px 999px 0;
  transform: rotate(-12deg);
}

.map-dot {
  position: absolute;
  left: 42%;
  top: 46%;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  color: white;
  background: var(--orange);
  font-weight: 900;
  box-shadow: 0 12px 32px rgba(242, 160, 61, .34);
}

.access-list {
  display: grid;
  gap: 10px;
}

.access-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.access-row strong {
  color: var(--blue);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.faq-list summary {
  padding: 18px;
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-weight: 700;
}

.final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(78px, 12vw, 140px) 18px;
  color: white;
  text-align: center;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/exterior.png") center / cover no-repeat;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(8, 71, 92, .72);
}

.final-cta h2 {
  margin: 0 0 20px;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.1;
}

.final-cta p {
  margin: 18px 0 0;
  font-size: 18px;
  font-weight: 800;
}

.section.alt-blue {
  background: #f1f7f9;
}

.section.alt-cream {
  background: #fbf7ef;
}

.section.alt-gray {
  background: #f4f6f6;
}

.full-site-b {
  --ink: #122732;
  --ocean: #1d3a4a;
  --blue: #1d3a4a;
  --gold: #c4a971;
  --paper: #fcfbf9;
  color: #122732;
  background: #fcfbf9;
}

.full-site-b .topbar,
.full-site-b .booking-bar {
  background: rgba(18, 39, 50, .96);
}

.full-site-b .hero {
  min-height: 700px;
  align-items: center;
  text-align: center;
}

.full-site-b .hero::after {
  background: rgba(18, 39, 50, .52);
}

.full-site-b .hero h1,
.full-site-b .section-title h2,
.full-site-b .split-feature h2,
.full-site-b .final-cta h2 {
  font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 600;
}

.full-site-b .hero h1 {
  max-width: min(900px, 100%);
  margin-inline: auto;
  letter-spacing: .03em;
}

.full-site-b .hero p {
  margin-inline: auto;
  font-weight: 500;
}

.full-site-b .hero-actions {
  justify-content: center;
}

.full-site-b .button.primary {
  border-radius: 0;
  background: #c4a971;
  box-shadow: none;
}

.full-site-b .button.secondary {
  border-radius: 0;
}

.full-site-b .label {
  color: #a98c55;
  letter-spacing: .08em;
}

.full-site-b .section-title {
  display: block;
  text-align: center;
}

.full-site-b .section-title p {
  margin: 14px auto 0;
}

.quiet-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  padding: 36px 0;
  border-top: 1px solid #d8ccba;
  border-bottom: 1px solid #d8ccba;
  text-align: center;
}

.quiet-values h3 {
  margin: 0;
  font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 34px;
  font-weight: 600;
}

.quiet-values p {
  margin: 10px 0 0;
  color: #596269;
}

.wide-photo {
  overflow: hidden;
  height: min(52vw, 520px);
  min-height: 300px;
  border-radius: 0;
}

.serene-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.serene-grid .photo {
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.full-site-b .full-card,
.full-site-b .course-card,
.full-site-b .faq-list details {
  border-radius: 0;
  box-shadow: none;
}

.b-stay-grid {
  grid-template-columns: repeat(2, 1fr);
}

.full-site-b .price-panel {
  color: #122732;
  background: #f3ede1;
  border-radius: 0;
}

.full-site-b .price-box {
  color: #122732;
  border-color: #c4a971;
  border-radius: 0;
}

.full-site-b .price-box span {
  color: #5d5f5f;
}

.full-site-b .free-band {
  color: #122732;
  background: transparent;
  border-top: 1px solid #c4a971;
}

.full-site-c {
  --ink: #101b21;
  --ocean: #101b21;
  --blue: #1b7a94;
  --lime: #8cc63f;
  --orange: #e8622a;
  color: #101b21;
  background: white;
}

.full-site-c .topbar,
.full-site-c .booking-bar {
  background: rgba(16, 27, 33, .96);
}

.full-site-c .split-hero {
  min-height: 700px;
}

.full-site-c .hero-collage {
  height: min(48vw, 430px);
  min-height: 260px;
}

.full-site-c .split-title {
  padding: 44px 0 132px;
}

.full-site-c .split-title h1 {
  font-size: clamp(44px, 6vw, 82px);
}

.full-site-c .button.primary {
  background: linear-gradient(135deg, #e8622a, #cb4f1c);
}

.full-site-c .label {
  color: #1b7a94;
}

.full-site-c .split-title .eyebrow {
  color: #1b7a94;
  font-size: 15px;
}

.icon-tile-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.icon-tile {
  display: grid;
  place-items: center;
  min-height: 100px;
  padding: 12px;
  border: 1px solid #dce3e5;
  border-radius: 10px;
  background: white;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
}

.icon-tile svg {
  width: 28px;
  height: 28px;
  margin-bottom: 8px;
  color: #1b7a94;
}

.free-block {
  min-height: 100%;
  padding: 34px;
  border-radius: 14px;
  color: white;
  background: #e8622a;
}

.free-block strong {
  display: block;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.18;
}

.full-site-c .timeline-card time {
  color: #101b21;
  font-size: 36px;
}

.lime-note {
  margin-top: 18px;
  padding: 18px;
  border-radius: 10px;
  color: #163006;
  background: #8cc63f;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .hero {
    min-height: 560px;
  }

  .section-title,
  .split-feature,
  .index-head {
    display: block;
  }

  .section-title p,
  .index-head p {
    margin-top: 10px;
  }

  .values,
  .rooms,
  .proposal-grid,
  .triptych,
  .full-cards,
  .timeline,
  .around-grid,
  .access-grid,
  .price-grid,
  .onsen-gallery,
  .quiet-values,
  .serene-grid,
  .icon-tile-grid {
    grid-template-columns: 1fr;
  }

  .b-stay-grid {
    grid-template-columns: 1fr;
  }

  .triptych > div {
    border-right: 0;
    border-bottom: 1px solid #d2c4a9;
  }

  .triptych > div:last-child {
    border-bottom: 0;
  }

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

  .media-tile.large {
    grid-column: 1 / -1;
    grid-row: span 1;
  }

  .chips,
  .benefit-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-bar {
    grid-template-columns: 1fr;
  }

  .booking-bar .button {
    width: 100%;
  }

  .full-site .hero {
    min-height: 640px;
  }

  .access-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 620px) {
  .topbar {
    min-height: 58px;
  }

  .brand span:last-child {
    font-size: 16px;
  }

  .hero h1,
  .split-title h1 {
    font-size: 42px;
  }

  .mobile-only {
    display: block;
  }

  .full-site .hero h1 {
    font-size: 40px;
    word-break: keep-all;
  }

  .full-site .hero .price-line {
    display: none;
  }

  .full-site-c .split-title .hero-actions {
    display: none;
  }

  .full-site-c .hero-collage {
    height: 260px;
  }

  .full-site-c .split-title {
    padding: 34px 0 96px;
  }

  .hero-actions,
  .price-line {
    display: grid;
  }

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

  .media-grid,
  .gallery-row,
  .hero-collage {
    grid-template-columns: 1fr;
  }

  .hero-collage {
    height: 430px;
  }

  .chips,
  .benefit-strip {
    grid-template-columns: 1fr;
  }

  .benefit-strip div {
    border-right: 0;
    border-bottom: 1px solid #d6e5ab;
  }

  .proposal-card p {
    min-height: 0;
  }
}
