﻿:root {
  --ink: #16211f;
  --text: #25322f;
  --muted: #64736f;
  --forest: #214f3f;
  --leaf: #7ea48b;
  --terra: #3f7558;
  --sky: #6f8f83;
  --paper: #f6f8f3;
  --mist: #eef5ee;
  --white: #ffffff;
  --line: #d8e0da;
  --shadow: 0 16px 40px rgba(22, 33, 31, 0.12);
  --radius: 8px;
  --max: 1120px;
}
.theme-move {
  --ink: #111111;
  --text: #1f1f1f;
  --muted: #666666;
  --forest: #111111;
  --leaf: #2a2a2a;
  --terra: #111111;
  --sky: #8a8a8a;
  --paper: #f7f7f5;
  --mist: #eeeeec;
  --line: #d8d8d2;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.16);
}

.theme-headspa {
  --paper: #e3f1e4;
  --mist: #cfe6d1;
  --line: #b4cfb8;
  background: #e3f1e4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN",
    "Hiragino Sans", "Yu Gothic", Meiryo, serif;
  line-height: 1.8;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
}

.skip-link:focus {
  top: 16px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(216, 224, 218, 0.72);
  background: rgba(246, 247, 242, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand-name {
  font-size: 20px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--terra);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--forest);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--forest);
  text-decoration: none;
  font-weight: 700;
  line-height: 1.25;
}

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

.button--light {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  background: var(--white);
}

.button--rest {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

.button--rest:hover {
  border-color: var(--terra);
  background: var(--terra);
}

.button--outline {
  color: var(--forest);
  background: transparent;
}

.button--terra {
  border-color: var(--terra);
  background: var(--terra);
}
.button--move {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

.button--move:hover {
  border-color: #2a2a2a;
  background: #2a2a2a;
}
.button--line {
  border-color: #06c755;
  background: #06c755;
  color: #ffffff;
}

.button--line:hover {
  border-color: #05b34c;
  background: #05b34c;
}

.hero {
  position: relative;
  min-height: 44vh;
  max-height: 500px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      90deg,
      rgba(11, 21, 18, 0.78),
      rgba(11, 21, 18, 0.38),
      rgba(11, 21, 18, 0.18)
    ),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}


.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 961px) {
  .home-hero .hero__video {
    object-position: center 35%;
  }
}
.hero--video::before {
  z-index: 1;
  background-image: linear-gradient(
    90deg,
    rgba(11, 21, 18, 0.78),
    rgba(11, 21, 18, 0.42),
    rgba(11, 21, 18, 0.22)
  );
}

.hero--menu::before {
  background-image: linear-gradient(90deg, rgba(11, 21, 18, 0.66), rgba(11, 21, 18, 0.34), rgba(11, 21, 18, 0.18)), var(--hero-image);
  background-position: center 44%;
}

@media (max-width: 680px) {
  .hero--menu::before {
    background-position: center 42%;
  }
}
.hero--video .hero__content {
  z-index: 2;
}

.hero--video .hero__content > * {
  max-width: 560px;
}

.hero.hero--video h1 {
  font-size: 52px;
  line-height: 1.12;
}

.hero--video .lead {
  max-width: 560px;
  font-size: 18px;
}
.hero--center::before {
  background-image: linear-gradient(rgba(11, 21, 18, 0.58), rgba(11, 21, 18, 0.34)),
    var(--hero-image);
}

.hero__content {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 34px;
}

.hero__content > * {
  max-width: 760px;
}

.mobile-title-break {
  white-space: nowrap;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--terra);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #b8d8be;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.3;
}

.hero h1 {
  color: var(--white);
  font-size: 64px;
  line-height: 1.12;
}

h2 {
  font-size: 34px;
}

h3 {
  font-size: 21px;
}

p {
  margin: 0;
}

.lead {
  margin-top: 22px;
  font-size: 19px;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.9);
}

.home-path-actions {
  background: var(--paper);
  border-bottom: 1px solid rgba(38, 68, 59, 0.12);
  padding: 24px 0;
}

.home-path-actions__inner {
  display: grid;
  gap: 16px;
}

.home-path-actions__lead {
  max-width: 840px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.home-path-actions__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}


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

.section {
  padding: 86px 0;
}

.section--tight {
  padding: 58px 0;
}

.section--muted {
  background: var(--mist);
}


.theme-headspa .hero.hero--video::before {
  background-image: linear-gradient(90deg, rgba(11, 21, 18, 0.78), rgba(11, 21, 18, 0.42), rgba(11, 21, 18, 0.18));
}

.theme-headspa .hero .eyebrow {
  color: #ffffff;
}

.theme-headspa .hero .button--light {
  border-color: #ffffff;
  background: #ffffff;
  color: #14382d;
}

.theme-headspa .hero .button--terra {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.theme-headspa .section:not(.section--dark):not(.section--muted) {
  background:
    linear-gradient(115deg, rgba(177, 207, 181, 0.68), rgba(227, 241, 228, 0.94) 42%, rgba(207, 230, 209, 0.62));
}

.theme-headspa .section--muted {
  background:
    linear-gradient(115deg, rgba(164, 198, 170, 0.72), rgba(207, 230, 209, 0.98) 48%, rgba(227, 241, 228, 0.82));
}

.theme-headspa .card {
  border-color: rgba(33, 79, 63, 0.18);
  background: #fbfff8;
}

.theme-headspa .section--dark .card--dark {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.theme-headspa .section--dark .card--dark h3 {
  color: var(--white);
}

.theme-headspa .section--dark .card--dark .muted {
  color: rgba(255, 255, 255, 0.78);
}

.theme-headspa .cta-band {
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(135deg, #14382d, #2f684f);
}

.theme-headspa .cta-band .eyebrow {
  color: #d7eadb;
}

.theme-headspa .cta-band p {
  color: rgba(255, 255, 255, 0.86);
}

.theme-headspa .cta-band .button--light {
  border-color: #ffffff;
  background: #ffffff;
  color: #14382d;
}

.theme-headspa .cta-band .button--outline {
  border-color: rgba(255, 255, 255, 0.78);
  background: transparent;
  color: #ffffff;
}

.theme-headspa .cta-band .button--outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.section--dark {
  color: rgba(255, 255, 255, 0.86);
  background: var(--forest);
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

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

.section__head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 38px;
}

.section__head p {
  color: var(--muted);
}

.section--dark .section__head p,
.section--dark .muted {
  color: rgba(255, 255, 255, 0.78);
}

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

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

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

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

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

.card__body {
  padding: 24px;
}

.service-logo {
  width: auto;
  max-width: 210px;
  height: 54px;
  margin: 0 0 18px;
  object-fit: contain;
  object-position: left center;
}

.service-logo--coconeru-access {
  max-width: 260px;
  height: 68px;
}

.service-logo--mark {
  height: 70px;
}

.move-logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 14px 18px;
  margin: 0 0 34px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.move-logo-strip img {
  width: auto;
  max-width: min(260px, 100%);
  height: 72px;
  object-fit: contain;
  object-position: left center;
}

.move-logo-strip p {
  flex-basis: 100%;
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.theme-move .site-header {
  background: rgba(248, 248, 246, 0.96);
  border-bottom-color: #d6d6d0;
}

.theme-move .brand-mark {
  border-color: rgba(17, 17, 17, 0.18);
  background: #ffffff;
}

.theme-move .site-nav a:hover,
.theme-move .site-nav a[aria-current="page"] {
  color: #000000;
}

.theme-move .button {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

.theme-move .button--light {
  border-color: #ffffff;
  background: #ffffff;
  color: #111111;
}

.theme-move .button--outline {
  background: transparent;
  color: #111111;
}


.theme-move .hero.hero--video::before {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.18));
}

.theme-move .hero::before {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.16)), var(--hero-image);
}

.theme-move .hero--center::before {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.36)), var(--hero-image);
}

.theme-move .hero .eyebrow {
  color: #ffffff;
}

.theme-move .section--dark,
.theme-move .cta-band {
  background: #111111;
}

.theme-move .card--dark {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
}

.theme-move .section--dark .step-label {
  background: #ffffff;
  color: #111111;
}

.theme-move .move-logo-strip {
  border-color: #d8d8d2;
  background: #ffffff;
}

.theme-headspa .headspa-logo-strip {
  border-color: rgba(33, 79, 63, 0.18);
  background: rgba(251, 255, 248, 0.88);
}

.theme-headspa .headspa-logo-strip img {
  height: 76px;
}

.theme-move .kicker,
.theme-move .eyebrow {
  color: #111111;
}

.theme-move .hero .eyebrow {
  color: #ffffff;
}

.card--headspa-access {
  border-color: #111111;
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.16);
}

.card--headspa-access > img {
  border-bottom: 1px solid #1f1f1f;
}
.card--move {
  border-color: #1f1f1f;
}

.card--move .kicker {
  color: #111111;
}

.card > img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}
.home-service-card--headspa > img {
  aspect-ratio: 5 / 2;
  object-position: center 42%;
}
.home-service-card--move > img {
  object-position: center 72%;
}


.access-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #111111;
}

.access-photo img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 6;
  object-fit: cover;
  object-position: 84% center;
}

.access-photo figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 2px;
  max-width: calc(100% - 28px);
  padding: 10px 12px;
  border-radius: 6px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.82);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.access-photo figcaption span {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.access-photo figcaption small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.35;
}

.access-photo--move {
  border-bottom: 1px solid #1f1f1f;
}
.access-page .access-photo--move img {
  aspect-ratio: 1329 / 420;
  object-fit: contain;
  object-position: center center;
  background: #111111;
}
.access-page .access-photo--move.gallery-frame {
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 6;
  border-bottom: 0;
  border-radius: var(--radius);
}

.access-page .access-photo--move.gallery-frame img {
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 84% center;
}

.card--dark {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.card--dark h3 {
  color: var(--white);
}

.card--dark .muted {
  color: rgba(255, 255, 255, 0.72);
}

.muted {
  color: var(--muted);
}

.kicker {
  color: var(--terra);
  font-size: 13px;
  font-weight: 700;
}

.step-label {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--forest);
  font-weight: 700;
}

.interaction-note {
  margin-top: 20px;
  padding: 18px 20px;
  border-left: 4px solid var(--terra);
  background: rgba(63, 117, 88, 0.1);
}

.section--dark .step-label {
  background: var(--terra);
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
}

.feature-row + .feature-row {
  margin-top: 70px;
}

.move-feature-cards {
  margin-top: 30px;
}

.feature-row img,
.image-panel img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.image-panel--wide img {
  aspect-ratio: 2 / 1;
}
.image-panel--home-interaction img {
  object-position: center 72%;
}
.image-panel--move-studio img,
.gallery-image--move-studio {
  object-position: center 72%;
}
.gallery-frame {
  min-height: 150px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111111;
}

.gallery-frame img {
  width: 100%;
  height: 100%;
  display: block;
}

.gallery-frame--move-building img {
  object-fit: contain;
  object-position: 84% center;
}

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

.list-clean li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.section--dark .list-clean li {
  border-color: rgba(255, 255, 255, 0.18);
}



.mobile-address-break {
  display: inline;
}

.home-access-section .card__body {
  padding: 18px 20px;
}

.home-access-section .info-list {
  gap: 0;
  margin-top: 12px;
}

.home-access-section .info-list div {
  grid-template-columns: 86px 1fr;
  gap: 10px;
  padding: 7px 0;
}

.home-access-section .info-list dt,
.home-access-section .info-list dd {
  line-height: 1.45;
}

.access-page .info-list {
  gap: 2px;
  margin-top: 10px;
}

.access-page .info-list div {
  grid-template-columns: 76px 1fr;
  gap: 8px;
  padding: 5px 0;
}

.access-page .card__body {
  padding: 16px;
}
.info-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.info-list dt {
  color: var(--muted);
  font-weight: 700;
}

.info-list dd {
  margin: 0;
}
.section--dark .info-list div {
  border-top-color: rgba(255, 255, 255, 0.22);
}

.section--dark .info-list dt {
  color: rgba(255, 255, 255, 0.88);
}

.section--dark .info-list dd,
.section--dark .info-list a {
  color: #ffffff;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.price-table th,
.price-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.price-table th {
  color: var(--ink);
  background: var(--mist);
}

.price-table tr:last-child th,
.price-table tr:last-child td {
  border-bottom: 0;
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 16px;
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  border-radius: var(--radius);
  object-fit: cover;
}

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

.quote {
  padding: 28px;
  border-left: 4px solid var(--terra);
  background: var(--white);
}

.stars {
  color: var(--terra);
  font-size: 18px;
}

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

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

.faq-list summary {
  cursor: pointer;
  padding: 18px 22px;
  color: var(--ink);
  font-weight: 700;
}

.faq-list details > div {
  padding: 0 22px 22px;
  color: var(--muted);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 32px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
}

.cta-band h2 {
  color: var(--white);
  font-size: 28px;
}

.breadcrumb {
  margin: 22px 0;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb a {
  color: var(--forest);
}




.booking-hero {
  padding: 56px 0 28px;
  background: linear-gradient(180deg, var(--mist), var(--paper));
}

.booking-hero__inner {
  max-width: 760px;
}

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

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

.booking-card img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.booking-card__body {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.booking-card__body h2,
.booking-card__body p {
  margin: 0;
}

.booking-card__body .button {
  width: 100%;
  min-height: 52px;
}

.booking-card--move {
  border-color: #1f1f1f;
}

.booking-card--move .kicker {
  color: #111111;
}


.policy-layout {
  max-width: 880px;
}

.policy-note,
.policy-section {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.policy-note p,
.policy-section p,
.policy-section li {
  font-size: 15px;
  line-height: 1.9;
}

.policy-note p,
.policy-section p {
  margin: 0;
}

.policy-note p + p,
.policy-section p + p,
.policy-section p + .list-clean,
.policy-section .list-clean + p {
  margin-top: 12px;
}

.policy-section h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.policy-contact {
  margin-top: 14px;
}

.site-footer {
  padding: 58px 0 34px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(140px, 1fr));
  gap: 34px;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}


.footer-social-groups {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.footer-social-group {
  display: grid;
  gap: 7px;
}

.footer-social-title {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.social-link--instagram::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='20' height='20' x='2' y='2' rx='5' ry='5'/%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'/%3E%3Cline x1='17.5' x2='17.51' y1='6.5' y2='6.5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='20' height='20' x='2' y='2' rx='5' ry='5'/%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'/%3E%3Cline x1='17.5' x2='17.51' y1='6.5' y2='6.5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.social-link--line::before {
  content: "LINE";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 17px;
  border-radius: 4px;
  color: #111111;
  background: #ffffff;
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
}

.footer-links {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}


.footer-legal {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
}

.footer-legal:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
}


@media (min-width: 1024px) {
  .card > img,
  .booking-card img,
  .business-menu-grid .card > img {
    height: clamp(220px, 18vw, 300px);
    aspect-ratio: auto;
    object-fit: cover;
  }

  .home-service-card--headspa > img {
    height: clamp(260px, 22vw, 340px);
  }

  .feature-row img,
  .image-panel img {
    height: clamp(260px, 24vw, 360px);
    aspect-ratio: auto;
    object-fit: cover;
  }

  .gallery img,
  .gallery-frame {
    height: clamp(220px, 20vw, 320px);
    min-height: 0;
    aspect-ratio: auto;
  }

  .product-card > img {
    height: 250px;
    aspect-ratio: auto;
  }

  .access-page .grid--2 > .card > img,
  .access-page .access-photo--move.gallery-frame {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 960px) {
  /* Mobile header action order: brand / reserve / menu. */
  .header-inner {
    justify-content: flex-start;
    gap: 10px;
  }

  .brand {
    margin-right: auto;
  }

  .header-actions {
    order: 2;
  }

  .nav-toggle {
    order: 3;
    flex: 0 0 auto;
  }

  .site-header.is-open .site-nav {
    order: 4;
  }
  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

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

  .site-header.is-open .header-inner {
    min-height: 0;
    padding: 18px 0;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .site-header.is-open .site-nav {
    flex-basis: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .hero {
    min-height: 42vh;
  }
  .hero h1 {
    font-size: 42px;
  }

  .hero.hero--video h1 {
    font-size: 38px;
  }

  .hero__content {
    padding: 48px 0 30px;
  }

  h2 {
    font-size: 28px;
  }

  .section__head,
  .feature-row,
  .cta-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .hero {
    min-height: 38vh;
  }
  .policy-note,
  .policy-section {
    padding: 18px;
  }

  .policy-section h2 {
    font-size: 21px;
  }
  .access-photo img {
    aspect-ratio: 16 / 9;
    object-position: center center;
  }

  .access-page .access-photo--move img {
    aspect-ratio: 1329 / 420;
  }

  .access-page .access-photo--move.gallery-frame {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .access-photo figcaption {
    right: 10px;
    bottom: 10px;
    padding: 8px 10px;
  }

  .mobile-address-break {
    display: block;
  }
  .move-logo-strip {
    gap: 10px;
    margin-bottom: 28px;
    padding: 16px;
  }

  .move-logo-strip img {
    max-width: 100%;
    height: 54px;
  }

  .move-logo-strip p {
    font-size: 14px;
  }
  .header-actions .button {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .booking-hero {
    padding: 38px 0 18px;
  }

  .booking-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .booking-card__body {
    padding: 18px;
  }

  .booking-card__body .button {
    min-height: 54px;
  }

  .header-inner,
  .container,
  .hero__content {
    width: min(100% - 28px, var(--max));
  }

  .hero__content {
    padding: 34px 0 24px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero.hero--video h1 {
    font-size: 30px;
  }

  .hero--video .lead {
    font-size: 15px;
  }

  .mobile-title-break {
    display: block;
  }
  .lead {
    font-size: 17px;
  }

  .home-path-actions {
    padding: 20px 0;
  }

  .home-path-actions__lead {
    font-size: 15px;
    line-height: 1.75;
  }

  .home-path-actions__buttons .button {
    width: 100%;
  }
  .card > img,
  .booking-card img,
  .feature-row img,
  .image-panel img,
  .gallery img,
  .gallery-frame {
    height: clamp(240px, 64vw, 320px);
    min-height: 0;
    aspect-ratio: auto;
  }

  .gallery img {
    object-fit: cover;
  }

  .home-service-card--headspa > img {
    object-position: center 45%;
  }

  .section {
    padding: 62px 0;
  }

  .grid--2,
  .grid--3,
  .grid--4,
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img:first-child {
    grid-row: auto;
  }

  .info-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .home-access-section .info-list {
    margin-top: 8px;
  }

  .home-access-section .info-list div {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 5px 0;
  }


  .price-table,
  .price-table tbody,
  .price-table tr,
  .price-table th,
  .price-table td {
    display: block;
    width: 100%;
  }

  .price-table th {
    border-bottom: 0;
  }
}
.product-card > img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 22px;
  background: linear-gradient(180deg, rgba(229, 243, 232, 0.9), rgba(248, 252, 247, 0.96));
}

.product-card .button {
  margin-top: 16px;
}

.business-menu-grid .card > img {
  aspect-ratio: 4 / 3;
}

@media (max-width: 680px) {
  .product-card > img {
    height: auto;
    aspect-ratio: 1 / 1;
    padding: 18px;
  }
}
.business-page .hero--business::before {
  background-image: linear-gradient(90deg, rgba(11, 21, 18, 0.78), rgba(11, 21, 18, 0.42), rgba(11, 21, 18, 0.18)), url('../img/business-hero-chatgpt.png');
  background-position: center 38%;
}

@media (max-width: 680px) {
  .business-page .hero--business::before {
    background-position: center 34%;
  }
}
.business-intro {
  max-width: 820px;
}
.cta-social-link {
  width: 44px;
  height: 44px;
  border-color: rgba(255, 255, 255, 0.78);
  background: #06c755;
  color: #ffffff;
}

.cta-social-link:hover {
  background: #05b34c;
}
.store-page .hero--store::before {
  background-image: linear-gradient(rgba(11, 21, 18, 0.46), rgba(11, 21, 18, 0.24)), url('../img/store-forest-hero.jpg');
  background-position: center 42%;
}

@media (max-width: 680px) {
  .store-page .hero--store::before {
    background-position: center 40%;
  }
}
.access-page .hero--access::before {
  background-image: linear-gradient(90deg, rgba(11, 21, 18, 0.58), rgba(11, 21, 18, 0.30), rgba(11, 21, 18, 0.12)), url('../img/access-hero-logo.png');
  background-size: 100% auto;
  background-position: center center;
}

@media (max-width: 680px) {
  .access-page .hero--access::before {
    background-size: auto 118%;
    background-position: center center;
  }
}

@media (min-width: 681px) {
  .access-page .hero--access {
    min-height: 360px;
    max-height: 420px;
  }

  .access-page .grid--2 > .card > img,
  .access-page .access-photo--move.gallery-frame {
    aspect-ratio: 4 / 3;
  }

  .access-page .grid--2 > .card > img {
    height: auto;
    object-position: center center;
  }

  .access-page .access-photo--move.gallery-frame img {
    object-fit: cover;
    object-position: 82% center;
  }
}
.access-page .hero--access .hero__content {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}
.faq-page .hero--faq::before,
.review-page .hero--review::before {
  background-image: linear-gradient(rgba(11, 21, 18, 0.54), rgba(11, 21, 18, 0.30)), url('../img/headspa-lounge.jpg');
  background-position: center 44%;
}

@media (max-width: 680px) {
  .faq-page .hero--faq::before,
  .review-page .hero--review::before {
    background-position: center 42%;
  }
}
.privacy-page .policy-note,
.privacy-page .policy-section {
  margin-top: 14px;
  padding: 16px 18px;
}

.privacy-page .policy-section h2 {
  margin-bottom: 8px;
  font-size: 21px;
}

.privacy-page .policy-note p,
.privacy-page .policy-section p,
.privacy-page .policy-section li {
  font-size: 14px;
  line-height: 1.65;
}

.privacy-page .policy-section p + p,
.privacy-page .policy-section p + .list-clean,
.privacy-page .policy-section .list-clean + p {
  margin-top: 8px;
}

.privacy-page .list-clean {
  margin-top: 8px;
}

.privacy-page .list-clean li {
  padding: 6px 0;
}

.privacy-page .policy-contact {
  gap: 6px;
  margin-top: 8px;
}

.privacy-page .policy-contact div {
  padding: 8px 0;
}

@media (max-width: 680px) {
  .privacy-page .policy-note,
  .privacy-page .policy-section {
    padding: 14px;
  }
}

















