:root {
  --bg: #fbfdf8;
  --paper: #ffffff;
  --surface: #f3f8ef;
  --surface-strong: #e6f0df;
  --text: #24302a;
  --muted: #647267;
  --line: #d9e3d2;
  --green: #3c7a43;
  --green-dark: #285a30;
  --green-soft: #dcebd4;
  --gold: #a18442;
  --shadow: 0 22px 54px rgba(36, 48, 42, 0.13);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
  line-height: 1.8;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(20px, 4vw, 56px);
  background: rgba(251, 253, 248, 0.86);
  border-bottom: 1px solid rgba(217, 227, 210, 0.76);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 253, 248, 0.96);
  box-shadow: 0 12px 34px rgba(36, 48, 42, 0.08);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.brand-mark span {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--green);
  border-radius: 12px 12px 2px 12px;
}

.brand-mark span:nth-child(1) {
  left: 1px;
  top: 1px;
}

.brand-mark span:nth-child(2) {
  right: 1px;
  top: 1px;
  transform: rotate(90deg);
}

.brand-mark span:nth-child(3) {
  left: 1px;
  bottom: 1px;
  transform: rotate(-90deg);
}

.brand-mark span:nth-child(4) {
  right: 1px;
  bottom: 1px;
  transform: rotate(180deg);
}

.brand-text {
  display: grid;
  gap: 1px;
  line-height: 1.2;
  letter-spacing: 0;
}

.brand-text span {
  color: var(--muted);
  font-size: 11px;
}

.brand-text strong {
  color: var(--text);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  font-size: 18px;
  font-weight: 600;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  color: var(--text);
  font-size: 14px;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.button,
.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  font-weight: 700;
  line-height: 1.2;
}

.header-cta {
  justify-self: end;
  min-height: 46px;
  padding: 0 18px;
  color: #fff;
  background: var(--green-dark);
  box-shadow: 0 14px 24px rgba(40, 90, 48, 0.2);
}

.header-cta svg,
.button svg,
.map-link svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: min(700px, calc(100svh - 120px));
  padding-top: 76px;
  overflow: hidden;
  background: var(--paper);
}

.hero-media {
  position: absolute;
  inset: 76px 0 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.hero-layer {
  position: absolute;
  inset: 76px 0 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(251, 253, 248, 0.98) 0%, rgba(251, 253, 248, 0.92) 34%, rgba(251, 253, 248, 0.42) 56%, rgba(251, 253, 248, 0.06) 78%),
    linear-gradient(0deg, rgba(251, 253, 248, 0.82) 0%, rgba(251, 253, 248, 0) 26%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: min(624px, calc(100svh - 196px));
  display: flex;
  align-items: center;
  padding: 58px 0 76px;
}

.hero-copy {
  width: min(690px, 58vw);
}

.hero h1,
.section-heading h2,
.closing-section h2 {
  margin: 0;
  color: var(--text);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  font-weight: 500;
  line-height: 1.32;
}

.hero h1 {
  font-size: clamp(42px, 4.5vw, 64px);
}

.hero h1 span {
  display: block;
}

.nowrap {
  white-space: nowrap;
}

.hero p {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 18px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.map-link:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--green-dark);
  box-shadow: 0 18px 30px rgba(40, 90, 48, 0.22);
}

.button-line {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(60, 122, 67, 0.34);
  box-shadow: 0 14px 28px rgba(36, 48, 42, 0.09);
}

.line-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 24px;
  color: #fff;
  background: #06c755;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 800;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(650px, 100%);
  margin: 34px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: 0 16px 34px rgba(36, 48, 42, 0.08);
}

.hero-facts div {
  min-width: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.84);
}

.hero-facts dt {
  margin: 0 0 4px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
}

.hero-facts dd {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
}

.feature-section,
.menu-section,
.first-section,
.access-section {
  padding: clamp(78px, 9vw, 124px) 0;
}

.feature-section {
  padding-top: clamp(54px, 6vw, 84px);
  background: var(--bg);
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(42px, 7vw, 86px);
  align-items: start;
}

.section-heading {
  max-width: 660px;
}

.section-heading.centered {
  margin: 0 auto 42px;
  text-align: center;
}

.section-label {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.section-heading h2 {
  font-size: clamp(30px, 3.5vw, 48px);
}

.section-heading > p:not(.section-label) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
}

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

.feature-item {
  min-height: 280px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(36, 48, 42, 0.06);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: var(--green-dark);
  background: var(--surface);
  border-radius: 50%;
}

.feature-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-item h3,
.spa-card h3,
.reservation-panel h3 {
  margin: 24px 0 10px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.45;
}

.feature-item p,
.spa-card p,
.reservation-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.menu-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(220, 235, 212, 0.8), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f7fbf4 100%);
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.spa-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 440px;
  padding: clamp(30px, 5vw, 48px);
  color: #fff;
  background:
    linear-gradient(140deg, rgba(40, 90, 48, 0.96), rgba(60, 122, 67, 0.9)),
    url("assets/head-spa-hero.png") center / cover;
  background-blend-mode: multiply;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.spa-card h3 {
  color: #fff;
  font-size: clamp(28px, 3.2vw, 42px);
}

.spa-card p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
}

.spa-card strong {
  display: block;
  margin-top: 52px;
  color: #fff;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 500;
  line-height: 1;
}

.menu-kind {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

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

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.price-row span {
  color: var(--text);
  font-weight: 700;
}

.price-row strong {
  color: var(--green-dark);
  font-size: 18px;
}

.first-section {
  background: var(--bg);
}

.first-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}

.comfort-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.comfort-list div {
  min-height: 120px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.comfort-list span {
  display: block;
  width: 14px;
  height: 14px;
  margin-bottom: 16px;
  background: var(--gold);
  border-radius: 50%;
}

.comfort-list p {
  margin: 0;
  color: var(--text);
  font-weight: 800;
}

.reservation-panel {
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.reservation-panel h3 {
  margin-top: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  font-size: 28px;
  font-weight: 500;
}

.reservation-panel .button {
  width: 100%;
  margin-top: 16px;
}

.access-section {
  background: #fff;
}

.access-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.access-card {
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.access-card dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.access-card div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(60, 122, 67, 0.16);
}

.access-card dt {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.access-card dd {
  margin: 0;
  color: var(--text);
}

.map-link {
  width: 100%;
  min-height: 54px;
  margin-top: 28px;
  color: var(--green-dark);
  background: var(--paper);
  border: 1px solid rgba(60, 122, 67, 0.28);
}

.closing-section {
  padding: clamp(78px, 9vw, 116px) 0;
  background:
    linear-gradient(90deg, rgba(251, 253, 248, 0.96), rgba(251, 253, 248, 0.86)),
    url("assets/head-spa-hero.png") right 35% / cover;
}

.closing-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
}

.closing-section h2 {
  max-width: 700px;
  font-size: clamp(30px, 3.3vw, 46px);
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  padding: 26px 24px;
  color: var(--muted);
  background: var(--text);
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: grid;
    gap: 0;
    padding: 14px 24px 22px;
    background: rgba(251, 253, 248, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(36, 48, 42, 0.08);
    transform: translateY(-130%);
    transition: transform 180ms ease;
  }

  body.nav-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(217, 227, 210, 0.8);
  }

  .nav-toggle {
    justify-self: end;
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 11px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.72);
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    background: var(--text);
    border-radius: 999px;
  }

  .feature-layout,
  .menu-layout,
  .first-layout,
  .access-layout,
  .closing-inner {
    grid-template-columns: 1fr;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .feature-item {
    min-height: 0;
  }

  .closing-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .section-inner {
    width: min(100% - 32px, var(--max));
  }

  .site-header {
    height: 68px;
    grid-template-columns: 1fr auto;
    padding: 0 16px;
    gap: 10px;
  }

  .brand-text strong {
    font-size: 15px;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    inset: 68px 0 auto;
  }

  .hero {
    min-height: auto;
    padding-top: 68px;
  }

  .hero-media {
    position: relative;
    inset: auto;
    height: 42svh;
    min-height: 300px;
  }

  .hero-media img {
    object-position: 70% center;
  }

  .hero-layer {
    inset: 68px 0 0;
    background: linear-gradient(180deg, rgba(251, 253, 248, 0) 0%, rgba(251, 253, 248, 0.96) 31%, var(--bg) 100%);
  }

  .hero-inner {
    min-height: auto;
    margin-top: -78px;
    padding: 0 0 56px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(31px, 8.6vw, 36px);
  }

  .hero-actions,
  .closing-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .section-heading.centered {
    text-align: left;
  }

  .feature-section,
  .menu-section,
  .first-section,
  .access-section,
  .closing-section {
    padding: 64px 0;
  }

  .spa-card {
    min-height: 370px;
  }

  .comfort-list {
    grid-template-columns: 1fr;
  }

  .access-card {
    padding: 24px;
  }

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