:root {
  --blue: #6c8eae;
  --warm: #d4a88c;
  --cream: #f8ede3;
  --brown: #5c4033;
  --ink: #352821;
  --muted: #79675d;
  --white: #fffdf9;
  --pale-blue: #e7f0f6;
  --line: rgba(92, 64, 51, 0.18);
  --blue-line: rgba(108, 142, 174, 0.28);
  --shadow: 0 24px 70px rgba(92, 64, 51, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid rgba(108, 142, 174, 0.2);
  background: rgba(248, 237, 227, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid rgba(212, 168, 140, 0.72);
  border-radius: 50%;
  background: var(--white);
  overflow: hidden;
}

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

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 600;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--brown);
  font-size: 14px;
  font-weight: 750;
}

.main-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover {
  border-color: var(--warm);
}

.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-action,
.button.primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(108, 142, 174, 0.28);
}

.button.secondary {
  color: var(--brown);
  background: var(--white);
  border-color: rgba(92, 64, 51, 0.22);
}

.nav-action:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  gap: clamp(36px, 6vw, 92px);
  align-items: center;
  padding: clamp(82px, 9vw, 130px) clamp(20px, 6vw, 84px) clamp(56px, 7vw, 90px);
  overflow: hidden;
  background: var(--cream);
}

.hero-slides,
.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-slides {
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroFade 18s infinite;
}

.hero-photo-massage {
  object-position: 58% 42%;
}

.hero-photo-tai-chi {
  object-position: 50% 32%;
  animation-delay: 6s;
}

.hero-photo-sound {
  object-position: 50% 50%;
  animation-delay: 12s;
}

@keyframes heroFade {
  0% {
    opacity: 0;
    transform: scale(1.025);
  }
  7%,
  30% {
    opacity: 1;
  }
  38%,
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.62) 0%, rgba(255, 253, 249, 0.36) 30%, rgba(255, 253, 249, 0.08) 54%, rgba(255, 253, 249, 0) 100%),
    linear-gradient(0deg, rgba(108, 142, 174, 0.08), rgba(255, 253, 249, 0.02));
}

.hero-copy,
.hero-panel {
  position: relative;
}

.hero-copy {
  max-width: 520px;
  width: fit-content;
  align-self: end;
  margin-bottom: clamp(46px, 8vw, 90px);
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid rgba(255, 253, 249, 0.48);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.34);
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 54px rgba(92, 64, 51, 0.08);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--brown);
  letter-spacing: 0;
  line-height: 1.04;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 11ch;
  font-size: clamp(58px, 9vw, 108px);
}

h2 {
  max-width: 850px;
  font-size: clamp(34px, 4.6vw, 62px);
}

h3 {
  font-size: 22px;
}

.hero-lead {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.45;
}

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

.hero-panel {
  display: grid;
  gap: 12px;
}

.hero-panel a {
  display: grid;
  gap: 7px;
  min-height: 142px;
  padding: 24px;
  border: 1px solid var(--blue-line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.84);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 42px rgba(92, 64, 51, 0.08);
}

.hero-panel span,
.tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 4px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--brown);
  background: rgba(212, 168, 140, 0.26);
  font-size: 12px;
  font-weight: 900;
}

.hero-panel strong {
  color: var(--brown);
  font-size: 24px;
}

.hero-panel small {
  color: var(--muted);
  font-size: 15px;
}

.hero-rotation-labels {
  position: absolute;
  left: clamp(20px, 6vw, 84px);
  bottom: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-rotation-labels span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 253, 249, 0.44);
  border-radius: 999px;
  color: var(--brown);
  background: rgba(255, 253, 249, 0.52);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 900;
}

[data-href] {
  cursor: pointer;
}

[data-href]:focus-visible {
  outline: 3px solid rgba(108, 142, 174, 0.46);
  outline-offset: 4px;
}

.service-list article[data-href],
.feature-card[data-href],
.shop-grid article[data-href],
.service-detail-grid article[data-href],
.feature-wide-grid article[data-href],
.platform-grid article[data-href],
.about-values-section article[data-href],
.event-list article[data-href] {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-list article[data-href]:hover,
.feature-card[data-href]:hover,
.shop-grid article[data-href]:hover,
.service-detail-grid article[data-href]:hover,
.feature-wide-grid article[data-href]:hover,
.platform-grid article[data-href]:hover,
.about-values-section article[data-href]:hover,
.event-list article[data-href]:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  box-shadow: 0 18px 38px rgba(92, 64, 51, 0.12);
}

.section {
  padding: clamp(66px, 9vw, 118px) clamp(20px, 6vw, 84px);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
  min-height: 72vh;
  padding: clamp(54px, 8vw, 96px) clamp(20px, 6vw, 84px);
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.88), rgba(231, 240, 246, 0.72)),
    var(--cream);
}

.page-hero-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
}

.page-hero-reverse img {
  order: 2;
}

.page-hero img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--blue-line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.about-story-hero img {
  aspect-ratio: 1 / 1;
  object-position: center 38%;
}

.page-hero h1 {
  max-width: 12ch;
  font-size: clamp(48px, 6vw, 82px);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.online-page-hero {
  min-height: 58vh;
}

.service-detail-grid,
.feature-wide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-detail-grid article,
.feature-wide-grid article {
  display: grid;
  gap: 14px;
  min-height: 300px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.88);
}

.service-detail-grid img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
}

.service-detail-grid h2,
.feature-wide-grid h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.service-detail-grid p,
.feature-wide-grid p,
.about-page-section p {
  color: var(--muted);
  font-size: 18px;
}

.service-detail-grid strong {
  color: var(--brown);
}

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

.feature-wide-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-page-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: clamp(28px, 6vw, 74px);
  align-items: start;
  background: var(--white);
}

.story-kicker {
  margin-top: 0;
  color: var(--blue);
  font-weight: 900;
}

.about-values-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  background: var(--cream);
}

.about-values-section article {
  display: grid;
  gap: 14px;
  min-height: 330px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.88);
}

.about-values-section span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.about-values-section h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.about-values-section p {
  color: var(--muted);
  font-size: 18px;
}

.about-original-section {
  background:
    linear-gradient(135deg, rgba(108, 142, 174, 0.14), rgba(212, 168, 140, 0.18)),
    var(--white);
}

.about-original-section article {
  background: rgba(255, 253, 249, 0.94);
}

.about-personal-section {
  background:
    linear-gradient(135deg, rgba(231, 240, 246, 0.72), rgba(248, 237, 227, 0.95)),
    var(--cream);
}

.about-personal-section > div:last-child {
  display: grid;
  gap: 18px;
}

.about-life-album {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.92), rgba(231, 240, 246, 0.64)),
    var(--white);
}

.about-life-album .section-heading {
  margin-bottom: clamp(18px, 3vw, 30px);
}

.life-slideshow {
  position: relative;
  min-height: clamp(300px, 42vw, 560px);
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--blue-line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 0 14px 34px rgba(92, 64, 51, 0.1);
}

.life-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  animation: lifeSlideShow 15s infinite;
}

.life-slide-one {
  animation-delay: 0s;
}

.life-slide-two {
  animation-delay: 5s;
}

.life-slide-three {
  animation-delay: 10s;
}

.life-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background:
    linear-gradient(135deg, rgba(231, 240, 246, 0.74), rgba(248, 237, 227, 0.78)),
    var(--cream);
}

.life-slide-two img,
.life-slide-three img {
  object-fit: cover;
}

.life-slide-two img {
  object-position: center 42%;
}

.life-slide-three img {
  object-position: center 46%;
}

.life-slide figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 4px;
  max-width: 520px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.9);
  backdrop-filter: blur(8px);
}

.life-slide strong {
  color: var(--brown);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 3vw, 38px);
}

.life-slide span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.life-slide-dots {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 7px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.78);
  backdrop-filter: blur(8px);
}

.life-slide-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.5;
  animation: lifeDotShow 15s infinite;
}

.life-slide-dots span:nth-child(2) {
  animation-delay: 5s;
}

.life-slide-dots span:nth-child(3) {
  animation-delay: 10s;
}

@keyframes lifeSlideShow {
  0%,
  28% {
    opacity: 1;
  }

  34%,
  100% {
    opacity: 0;
  }
}

@keyframes lifeDotShow {
  0%,
  28% {
    opacity: 1;
    transform: scale(1.25);
  }

  34%,
  100% {
    opacity: 0.45;
    transform: scale(1);
  }
}

.about-photo-story {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: var(--white);
}

.about-photo-story img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 34%;
  border: 1px solid var(--blue-line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-photo-story h2 {
  max-width: 780px;
  font-size: clamp(32px, 4vw, 56px);
}

.hobby-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 20px;
}

.hobby-tags .tag {
  margin-bottom: 0;
}

.about-photo-story p:not(.eyebrow) {
  max-width: 820px;
  color: var(--muted);
  font-size: 19px;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 930px;
  margin-bottom: clamp(30px, 4vw, 52px);
}

.section-heading p,
.intake-copy p,
.about-section p {
  max-width: 740px;
  color: var(--muted);
  font-size: 18px;
}

.local-section {
  background: var(--white);
}

.local-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 420px);
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
}

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

.service-list article,
.feature-card,
.shop-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.88);
}

.service-list article {
  position: relative;
  min-height: 196px;
  padding: 24px;
  overflow: hidden;
}

.service-list article:first-child {
  background: linear-gradient(135deg, rgba(231, 240, 246, 0.88), rgba(255, 253, 249, 0.94));
}

.service-list p,
.feature-card p,
.shop-grid p,
.event-list p {
  color: var(--muted);
}

.service-icon {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.28;
}

.flyer-preview {
  position: sticky;
  top: 98px;
  overflow: hidden;
  border: 1px solid var(--blue-line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.flyer-preview img {
  width: 100%;
  height: auto;
}

.treatment-gallery {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 14px;
  margin-top: clamp(26px, 4vw, 42px);
}

.treatment-gallery figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--blue-line);
  border-radius: 8px;
  background: var(--cream);
}

.treatment-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.treatment-gallery figure:first-child img {
  object-position: 58% 38%;
}

.treatment-gallery figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--brown);
  background: rgba(255, 253, 249, 0.86);
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.online-section {
  background:
    linear-gradient(180deg, rgba(231, 240, 246, 0.76), rgba(248, 237, 227, 0.88)),
    var(--pale-blue);
}

.listen-section {
  background: var(--white);
}

.movement-section {
  background:
    linear-gradient(180deg, rgba(248, 237, 227, 0.62), rgba(231, 240, 246, 0.82)),
    var(--cream);
}

.online-section,
.movement-section,
.listen-section {
  padding-block: clamp(38px, 5.4vw, 72px);
}

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

.online-section .feature-wide-grid article {
  min-height: 0;
  padding: clamp(16px, 2vw, 22px);
  gap: 8px;
}

.online-section .feature-wide-grid h2 {
  font-size: clamp(21px, 2.1vw, 30px);
}

.online-section .feature-wide-grid p {
  font-size: 15px;
  line-height: 1.45;
}

.movement-section .section-heading,
.listen-section .section-heading {
  margin-bottom: clamp(18px, 2.4vw, 28px);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.compact-disclosure {
  margin-bottom: 18px;
  border: 1px solid var(--blue-line);
  border-radius: 8px;
  background: rgba(248, 237, 227, 0.56);
}

.compact-disclosure summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  color: var(--brown);
  cursor: pointer;
  list-style: none;
}

.compact-disclosure summary::-webkit-details-marker {
  display: none;
}

.compact-disclosure summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
}

.compact-disclosure[open] summary::after {
  content: "-";
}

.compact-disclosure summary span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
}

.compact-disclosure summary small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.compact-disclosure .interactive-video-album {
  padding: 0 18px 18px;
}

.compact-disclosure .event-photo-grid {
  padding: 0 18px 18px;
}

.video-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  margin-bottom: clamp(30px, 4vw, 52px);
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--blue-line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.82);
}

.video-feature video {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 680px;
  border-radius: 8px;
  background: var(--brown);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.video-feature h3 {
  font-size: clamp(30px, 4vw, 52px);
}

.video-feature p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
}

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

.interactive-video-album {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: stretch;
}

.album-player-card {
  display: grid;
  grid-template-columns: minmax(105px, 140px) minmax(0, 1fr);
  gap: clamp(14px, 2vw, 22px);
  align-items: center;
  min-height: 100%;
  padding: clamp(14px, 2vw, 20px);
  border: 1px solid var(--blue-line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 16px 36px rgba(92, 64, 51, 0.11);
}

.album-player {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-width: 140px;
  max-height: 250px;
  justify-self: start;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  background: var(--brown);
}

.album-player-card h3 {
  font-size: clamp(24px, 3vw, 38px);
}

.album-player-card p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
}

.album-card-shelf {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 4px 16px;
  scroll-snap-type: x mandatory;
  perspective: 1200px;
}

.album-choice {
  display: grid;
  gap: 10px;
  flex: 0 0 clamp(78px, 8.5vw, 98px);
  min-width: 78px;
  padding: 8px;
  border: 1px solid rgba(108, 142, 174, 0.28);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.82);
  color: var(--brown);
  text-align: left;
  cursor: pointer;
  scroll-snap-align: start;
  box-shadow: 0 10px 24px rgba(92, 64, 51, 0.08);
  transform-origin: center left;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 220ms ease,
    background 180ms ease;
}

.album-choice-cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border-radius: 7px;
  background: var(--brown);
}

.album-choice-cover::after {
  content: "Preview";
  position: absolute;
  right: 7px;
  bottom: 7px;
  padding: 4px 6px;
  border-radius: 999px;
  background: rgba(248, 237, 227, 0.92);
  color: var(--brown);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.album-choice img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 260ms ease;
}

.album-choice-meta {
  display: grid;
  gap: 4px;
}

.album-choice small {
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.album-choice strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.05;
}

.album-choice:hover,
.album-choice:focus-visible,
.album-choice.is-active {
  border-color: var(--blue);
  background: rgba(248, 237, 227, 0.88);
  box-shadow: 0 16px 32px rgba(92, 64, 51, 0.14);
}

.album-choice:hover,
.album-choice:focus-visible {
  transform: translateY(-7px) rotateY(-7deg);
}

.album-choice:hover img,
.album-choice:focus-visible img,
.album-choice.is-active img {
  transform: scale(1.045);
}

.album-choice.is-active .album-choice-cover::after {
  content: "Selected";
}

.video-card {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 100%;
  padding: clamp(18px, 2.5vw, 26px);
  border: 1px solid var(--blue-line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.86);
}

.video-card video,
.video-card img {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 720px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  background: var(--brown);
  box-shadow: var(--shadow);
}

.video-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.video-card h3 {
  font-size: clamp(24px, 3vw, 38px);
}

.video-card p {
  color: var(--muted);
  font-size: 17px;
}

.platform-grid article {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 0;
  padding: clamp(14px, 1.7vw, 20px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.94), rgba(231, 240, 246, 0.46)),
    var(--white);
}

.platform-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  box-shadow: 0 10px 24px rgba(92, 64, 51, 0.12);
}

.platform-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.platform-grid h3 {
  font-size: clamp(18px, 1.7vw, 24px);
}

.platform-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.listen-section .platform-grid {
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 10px;
}

.listen-section .platform-grid p {
  display: none;
}

.listen-section .platform-grid .button {
  min-height: 0;
  padding: 10px 12px;
  font-size: 12px;
}

.home-social-panel {
  margin-top: 24px;
  padding: clamp(18px, 2.5vw, 24px);
  border: 1px solid var(--blue-line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.78);
}

.social-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-link-row a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 8px 12px 8px 8px;
  border: 1px solid rgba(92, 64, 51, 0.16);
  border-radius: 8px;
  background: var(--white);
  color: var(--brown);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(92, 64, 51, 0.08);
  transition: transform 180ms ease, border-color 180ms ease;
}

.social-link-row a:hover {
  transform: translateY(-2px);
  border-color: var(--warm);
}

.social-link-row img {
  width: 32px;
  height: 32px;
  border-radius: 9px;
}

.social-link-row .is-muted {
  opacity: 0.72;
}

.online-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
}

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

.online-visual-stack {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 14px;
}

.online-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--blue-line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.online-visual img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  object-position: 50% 28%;
}

.online-visual:nth-child(2) img {
  aspect-ratio: 4 / 3;
  object-position: 50% 42%;
}

.online-visual figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--brown);
  background: rgba(255, 253, 249, 0.86);
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.cyber-card {
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--blue-line);
  border-radius: 8px;
  color: var(--cream);
  background:
    radial-gradient(circle at 80% 10%, rgba(212, 168, 140, 0.44), transparent 34%),
    linear-gradient(135deg, var(--blue), var(--brown));
  box-shadow: var(--shadow);
}

.cyber-card span {
  color: rgba(248, 237, 227, 0.76);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cyber-card strong {
  max-width: 10ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.02;
}

.cyber-card p {
  max-width: 280px;
  margin: 0;
  color: rgba(248, 237, 227, 0.8);
}

.feature-card {
  min-height: 310px;
  padding: clamp(24px, 3vw, 34px);
}

.feature-card span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--blue);
  font-weight: 900;
}

.feature-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
}

.shop-section {
  background: var(--cream);
}

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

.shop-grid article {
  min-height: 260px;
  padding: 24px;
}

.product-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  place-items: center;
  border: 1px solid rgba(108, 142, 174, 0.3);
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 23px;
  font-weight: 900;
}

.shop-grid article:nth-child(2) .product-icon,
.shop-grid article:nth-child(4) .product-icon {
  background: var(--warm);
}

.event-section {
  background: var(--white);
}

.event-photo-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 14px;
  margin-bottom: clamp(28px, 5vw, 58px);
}

.event-photo-grid figure {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--blue-line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 0 14px 44px rgba(92, 64, 51, 0.08);
}

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

.event-photo-grid figure:nth-child(2) img {
  object-position: 52% 42%;
}

.event-photo-grid figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--brown);
  background: rgba(255, 253, 249, 0.86);
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

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

.event-list article {
  display: grid;
  grid-template-columns: 126px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 22px;
  border-top: 1px solid var(--line);
}

.event-list time {
  color: var(--blue);
  font-weight: 900;
}

.event-list h3 {
  margin-bottom: 5px;
}

.event-list p {
  margin: 0;
}

.event-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 94px;
  min-height: 42px;
  border: 1px solid var(--blue-line);
  border-radius: 6px;
  color: var(--brown);
  background: var(--cream);
  font-weight: 900;
}

.intake-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(248, 237, 227, 0.95), rgba(231, 240, 246, 0.78)),
    var(--cream);
}

.qr-card {
  overflow: hidden;
  border: 1px solid rgba(92, 64, 51, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.qr-card img {
  width: 100%;
}

.qr-card a {
  display: flex;
  justify-content: center;
  padding: 14px;
  border-top: 1px solid var(--line);
  color: var(--brown);
  background: var(--white);
  font-weight: 900;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
  background: var(--brown);
}

.about-portrait {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(248, 237, 227, 0.24);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.about-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 18%;
}

.about-copy {
  display: grid;
  gap: 22px;
}

.about-section h2,
.about-section .eyebrow {
  color: var(--cream);
}

.about-section p {
  margin: 0;
  color: rgba(248, 237, 227, 0.82);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 28px clamp(20px, 6vw, 84px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--white);
}

.site-footer strong,
.site-footer a {
  color: var(--brown);
}

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

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .page-hero,
  .page-hero-reverse,
  .local-layout,
  .online-layout,
  .intake-section,
  .about-section,
  .about-page-section,
  .about-photo-story {
    grid-template-columns: 1fr;
  }

  .life-slideshow {
    min-height: 360px;
  }

  .page-hero-reverse img {
    order: 0;
  }

  .flyer-preview,
  .online-visual-stack {
    position: static;
    max-width: 520px;
  }

  .online-grid,
  .shop-grid,
  .treatment-gallery,
  .service-detail-grid,
  .feature-wide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .nav-action {
    min-height: 40px;
    padding-inline: 14px;
  }

  .hero {
    min-height: 70vh;
    padding-inline: 18px;
    padding-block: 54px 28px;
  }

  .hero-photo-massage {
    object-position: 58% 35%;
  }

  .hero-photo-tai-chi {
    object-position: 50% 24%;
  }

  .hero-photo-sound {
    object-position: 50% 50%;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(255, 253, 249, 0.34) 0%, rgba(255, 253, 249, 0.18) 42%, rgba(255, 253, 249, 0.04) 100%),
      linear-gradient(90deg, rgba(255, 253, 249, 0.44), rgba(255, 253, 249, 0.04));
  }

  .hero-copy {
    align-self: end;
    margin-bottom: 18px;
    padding: 18px;
    background: rgba(255, 253, 249, 0.36);
    backdrop-filter: blur(6px);
  }

  h1 {
    max-width: 10ch;
    font-size: 54px;
  }

  .section {
    padding-inline: 18px;
  }

  .hero-panel {
    display: none;
  }

  .hero-rotation-labels {
    display: none;
  }

  .service-list,
  .online-grid,
  .shop-grid,
  .treatment-gallery,
  .event-photo-grid,
  .service-detail-grid,
  .feature-wide-grid,
  .platform-grid,
  .video-feature,
  .video-album-grid,
  .interactive-video-album,
  .about-values-section,
  .event-list article {
    grid-template-columns: 1fr;
  }

  .album-card-shelf {
    display: flex;
  }

  .album-player-card {
    grid-template-columns: minmax(100px, 130px) minmax(0, 1fr);
  }

  .video-card-featured {
    grid-row: auto;
  }

  .page-hero {
    min-height: 0;
    padding-top: 42px;
  }

  .page-hero h1 {
    font-size: 46px;
  }

  .treatment-gallery figure {
    min-height: 240px;
  }

  .event-photo-grid figure {
    min-height: 240px;
  }

  .service-list article,
  .feature-card,
  .shop-grid article {
    min-height: 0;
  }

  .event-list article {
    align-items: start;
    gap: 10px;
  }

  .event-list a {
    width: fit-content;
  }
}

@media (max-width: 620px) {
  .album-choice {
    flex-basis: 82px;
  }

  .album-player {
    max-width: 130px;
    max-height: 232px;
  }

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

@media (prefers-reduced-motion: reduce) {
  .album-choice,
  .album-choice img,
  .life-slide,
  .life-slide-dots span {
    transition: none;
    animation: none;
  }

  .album-choice:hover,
  .album-choice:focus-visible {
    transform: none;
  }

  .life-slide-one {
    opacity: 1;
  }
}
