:root {
  --ink: #3b342e;
  --navy: #20384b;
  --blue: #587384;
  --sage: #8a9681;
  --sage-dark: #64725f;
  --amber: #b98a43;
  --paper: #fbf8f3;
  --mist: #f2ebe2;
  --line: #ddd3c7;
  --muted: #786f67;
  --white: #fffdfa;
  --mocha: #a6856d;
  --mocha-deep: #6f5848;
  --shadow: 0 22px 60px rgba(91, 70, 53, 0.1);
  --radius: 16px;
  --header-h: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Yu Gothic", "YuGothic", "Hiragino Sans", "Meiryo", system-ui, sans-serif;
  line-height: 1.8;
}

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

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

.nowrap {
  white-space: nowrap;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 36px;
  background: rgba(251, 248, 243, 0.92);
  border-bottom: 1px solid rgba(221, 211, 199, 0.82);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(251, 248, 243, 0.97);
  box-shadow: 0 10px 34px rgba(91, 70, 53, 0.08);
}

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

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  border-radius: 6px;
}

.brand strong {
  display: block;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.1;
}

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

.site-nav a {
  color: #34454d;
}

.site-nav a:hover {
  color: var(--blue);
}

.site-nav a.is-current {
  color: var(--blue);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.nav-cta {
  min-height: 40px;
  background: var(--navy);
  color: var(--white) !important;
}

.button.primary {
  background: var(--mocha-deep);
  color: var(--white);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 7px auto;
  background: var(--ink);
  transition: transform 0.24s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.hero {
  position: relative;
  height: clamp(520px, calc(100svh - var(--header-h)), 760px);
  overflow: hidden;
  isolation: isolate;
  background: #f3ede4;
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.015);
  transition: opacity 1.15s ease, transform 7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.045);
}

.hero-slide-light {
  background-image: url("./assets/liena-hero.png");
  background-size: contain;
  background-color: #f3ede4;
}

.hero-slide-navy {
  background-image: url("./assets/liena-hero-navy.jpg");
  background-size: contain;
  background-color: #172230;
}

.hero-slide-care {
  background-image: url("./assets/representative-conditioning.jpg");
  background-size: cover;
  background-position: 48% center;
  background-color: #172230;
}

.hero-slide-treatment {
  background-image: url("./assets/indoor-conditioning.jpg");
  background-size: cover;
  background-position: 58% center;
  background-color: #e8e1d8;
}

.hero-slide-light.is-active,
.hero-slide-navy.is-active {
  transform: scale(1);
}

.hero-pagination {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100% - 1120px) / 2));
  bottom: 28px;
  display: flex;
  gap: 10px;
  padding: 9px 12px;
  background: rgba(255, 253, 250, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.hero-dot {
  width: 30px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(32, 56, 75, 0.28);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.hero-dot.is-active {
  width: 48px;
  background: var(--amber);
}

.hero::after {
  content: none;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.intro-band {
  padding: 64px 0 70px;
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.intro-grid h1,
.intro-grid h2,
.section h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.35;
  letter-spacing: 0;
}

.intro-grid p:last-child,
.section-copy p,
.section-heading p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.intro-message {
  display: grid;
  gap: 20px;
}

.intro-message .intro-lead {
  margin: 0;
  color: var(--mocha-deep);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  line-height: 1.55;
}

.proof-strip {
  padding: 34px 0;
  background: var(--navy);
  border-top: 6px solid var(--amber);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.proof-grid > div {
  min-height: 128px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.proof-grid > div:first-child {
  border-left: 0;
}

.proof-grid span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
}

.proof-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.65;
}

.proof-grid strong {
  color: var(--white);
  font-size: 15px;
}

.section {
  padding: 92px 0;
}

.page-hero {
  padding: 110px 0 84px;
  border-bottom: 6px solid #dfc5a4;
  background:
    radial-gradient(circle at 78% 24%, rgba(185, 138, 67, 0.13), transparent 32%),
    linear-gradient(135deg, #fffdfa 0%, #f1e8dd 100%);
  color: var(--ink);
}

.page-hero h1,
.page-contact h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.22;
  letter-spacing: 0;
}

.page-hero p:last-child {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.page-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(91, 70, 53, 0.08);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.page-card:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 96, 127, 0.45);
}

.page-card span {
  color: var(--sage);
  font-weight: 800;
}

.page-card h3 {
  margin: 30px 0 12px;
  font-size: 22px;
}

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

.page-contact {
  min-height: calc(100svh - var(--header-h));
  padding: 112px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.section-copy h2,
.section-heading h2,
.contact-copy h2 {
  margin-bottom: 22px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 44px;
}

.check-list {
  display: grid;
  gap: 14px;
}

.check-list div {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(91, 70, 53, 0.06);
  font-weight: 700;
}

.check-list span {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  background: var(--sage);
  border-radius: 50%;
}

.target {
  background: var(--mist);
  border-top: 8px solid #e7ddd1;
}

.field-experience {
  overflow: hidden;
  background: var(--navy);
  border-top: 8px solid var(--amber);
  color: var(--white);
}

.field-experience-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: 64px;
  align-items: center;
}

.field-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.3;
}

.field-copy > p:not(.section-kicker) {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.field-copy .text-link {
  display: inline-block;
  margin-top: 26px;
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

.field-gallery {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: repeat(2, 190px);
  gap: 10px;
}

.field-photo {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #101b24;
  border-radius: 4px;
}

.field-photo-main {
  grid-row: 1 / 3;
}

.field-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.field-photo-main img {
  object-position: 42% center;
}

.field-photo:hover img {
  transform: scale(1.025);
}

.field-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 18px 16px;
  background: linear-gradient(180deg, transparent, rgba(14, 25, 34, 0.82));
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.target-grid,
.day-layout {
  display: grid;
  gap: 16px;
}

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

.target-grid article,
.day-timeline div,
.capacity-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(91, 70, 53, 0.08);
}

.target-grid article {
  min-height: 230px;
  padding: 26px;
}

.target-grid span,
.day-timeline span,
.capacity-card span {
  color: var(--sage);
  font-size: 13px;
  font-weight: 800;
}

.target-grid h3 {
  margin: 34px 0 12px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.35;
}

.target-grid p,
.day-timeline p,
.capacity-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.vision-highlight {
  background: var(--white);
  border-top: 8px solid #eee5da;
}

.problem {
  background: var(--mist);
  border-top: 8px solid #c8b29d;
}

.section.service.home-sitemap {
  background: #eee4d8;
  border-top: 8px solid #d7c2aa;
  color: var(--ink);
}

.home-sitemap .section-heading p:last-child {
  color: var(--muted);
}

.home-sitemap .page-card {
  box-shadow: none;
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  color: var(--sage-dark);
  font-weight: 800;
}

.text-link::after {
  content: "";
  width: 28px;
  height: 1px;
  margin-left: 12px;
  background: currentColor;
}

.vision-board,
.vision-grid,
.principle-grid {
  display: grid;
  gap: 16px;
}

.vision-board {
  grid-template-columns: 1fr;
}

.vision-board div,
.vision-card,
.principle-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(31, 52, 71, 0.08);
}

.vision-board div {
  padding: 24px;
}

.vision-board span,
.vision-card span,
.principle-grid span {
  color: var(--sage);
  font-size: 13px;
  font-weight: 800;
}

.vision-board strong {
  display: block;
  margin-top: 12px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.35;
}

.vision-board p,
.vision-card p,
.principle-grid p,
.vision-statement p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.vision-page {
  background: var(--paper);
}

.vision-statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 46px;
  align-items: end;
  margin-bottom: 42px;
}

.vision-statement {
  max-width: 680px;
}

.vision-statement h2 {
  margin-bottom: 18px;
}

.vision-scene {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
}

.vision-scene img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: center 58%;
}

.vision-scene figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 48px 22px 18px;
  background: linear-gradient(180deg, transparent, rgba(16, 28, 38, 0.9));
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

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

.vision-card {
  min-height: 300px;
  padding: 30px;
}

.vision-card.accent {
  background: #e8dccf;
  color: var(--ink);
}

.vision-card.accent p {
  color: var(--muted);
}

.vision-card h2 {
  margin-top: 26px;
  font-size: 26px;
}

.principles {
  background: var(--mist);
}

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

.principle-grid article {
  min-height: 230px;
  padding: 26px;
}

.principle-grid h3 {
  margin: 34px 0 12px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.35;
}

.service {
  background: var(--mist);
}

.service-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 20px;
}

.service-panel {
  min-height: 310px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.main-panel {
  background: var(--navy);
  color: var(--white);
  border-radius: 6px;
  border-top: 5px solid var(--amber);
}

.panel-label {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
}

.service-panel h3,
.reason-item h3 {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.35;
}

.service-panel ul {
  margin: 0;
  padding-left: 1.2em;
  color: inherit;
}

.service-panel li + li {
  margin-top: 10px;
}

.service-scene {
  background: var(--paper);
  border-top: 8px solid var(--navy);
}

.service-scene-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 56px;
  align-items: center;
}

.service-scene-main,
.service-scene-sub {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
  border-radius: 4px;
}

.service-scene-main {
  min-height: 560px;
}

.service-scene-main img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: 58% center;
}

.service-scene-main figcaption,
.service-scene-sub figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 48px 20px 18px;
  background: linear-gradient(180deg, transparent, rgba(16, 28, 38, 0.9));
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.service-scene-copy h2 {
  margin: 0 0 22px;
}

.service-scene-copy > p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
}

.service-scene-sub {
  min-height: 220px;
  margin-top: 34px;
}

.service-scene-sub img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center 44%;
}

.workday {
  background: var(--paper);
}

.day-layout {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
}

.day-timeline {
  display: grid;
  gap: 14px;
}

.day-timeline div {
  min-height: 138px;
  padding: 24px;
}

.day-timeline strong {
  display: block;
  margin: 12px 0 8px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.35;
}

.capacity-card {
  padding: 28px;
}

.capacity-card dl {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}

.capacity-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.capacity-card dt,
.capacity-card dd {
  margin: 0;
}

.capacity-card dt {
  color: var(--navy);
  font-weight: 800;
}

.capacity-card dd {
  color: var(--sage-dark);
  font-weight: 800;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.reason-item {
  min-height: 260px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.reason-item span {
  display: block;
  margin-bottom: 42px;
  color: var(--sage);
  font-weight: 800;
}

.reason-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.merits {
  background: var(--mist);
}

.merit-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.merit-board div {
  min-height: 136px;
  display: grid;
  place-items: center;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  font-size: 19px;
  font-weight: 800;
  text-align: center;
}

.profile {
  background: var(--paper);
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 58px;
  align-items: start;
}

.profile-content {
  min-width: 0;
}

.profile-origin {
  margin-top: 14px;
  color: var(--ink);
  font-weight: 700;
}

.profile-card {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--white);
}

.profile-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: 43% center;
}

.profile-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 5px;
  padding: 58px 24px 22px;
  background: linear-gradient(180deg, transparent, rgba(16, 28, 38, 0.92));
}

.profile-card figcaption span {
  color: #e5bd78;
  font-size: 11px;
  font-weight: 800;
}

.profile-card figcaption strong {
  font-size: 17px;
}

.reason-hero {
  background:
    linear-gradient(90deg, rgba(31, 52, 71, 0.95) 0%, rgba(31, 52, 71, 0.78) 48%, rgba(31, 52, 71, 0.28) 100%),
    url("./assets/field-care-sky.jpg");
  background-size: cover;
  background-position: center 56%;
  border-bottom-color: var(--amber);
  color: var(--white);
}

.reason-hero p:last-child {
  color: rgba(255, 255, 255, 0.84);
}

.experience-scenes {
  background: var(--navy);
  border-top: 8px solid var(--amber);
  color: var(--white);
}

.experience-scenes .section-heading p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.experience-filmstrip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 10px;
}

.experience-filmstrip figure {
  position: relative;
  min-width: 0;
  min-height: 350px;
  margin: 0;
  overflow: hidden;
  background: #101b24;
  border-radius: 4px;
}

.experience-filmstrip img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.experience-filmstrip figure:first-child img {
  object-position: 44% center;
}

.experience-filmstrip figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 46px 18px 16px;
  background: linear-gradient(180deg, transparent, rgba(14, 25, 34, 0.88));
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

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

.profile-list span {
  padding: 10px 13px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.flow-overview {
  margin-bottom: 76px;
}

.flow-overview-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.flow-overview-heading h2,
.flow-detail-heading h2 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.4;
}

.flow-overview-heading > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
}

.flow-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.flow-phases article {
  position: relative;
  min-height: 330px;
  padding: 34px 30px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 6px solid var(--mocha);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.flow-phases article:nth-child(2) {
  border-top-color: var(--amber);
}

.flow-phases article:nth-child(3) {
  border-top-color: var(--navy);
}

.flow-phases article:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 2;
  top: 46%;
  right: -24px;
  width: 20px;
  color: var(--amber);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.flow-phases article > span {
  display: block;
  margin-top: 22px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.flow-phases h3 {
  margin: 8px 0 12px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.4;
}

.flow-phases p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.flow-phase-icon {
  position: relative;
  width: 94px;
  height: 94px;
  margin: 0 auto;
  background: #eee4d8;
  border-radius: 50%;
}

.flow-phase-icon-hearing::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 18px;
  width: 46px;
  height: 30px;
  border: 4px solid var(--mocha-deep);
  border-radius: 16px;
}

.flow-phase-icon-hearing::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 22px;
  width: 32px;
  height: 22px;
  background: var(--white);
  border: 3px solid var(--amber);
  border-radius: 12px;
}

.flow-phase-icon-hearing span {
  position: absolute;
  top: 57px;
  left: 28px;
  width: 10px;
  height: 10px;
  border-left: 4px solid var(--mocha-deep);
  transform: skew(-28deg);
}

.flow-phase-icon-plan::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 27px;
  width: 40px;
  height: 52px;
  background: var(--white);
  border: 4px solid var(--mocha-deep);
  border-radius: 5px;
}

.flow-phase-icon-plan::after {
  content: "";
  position: absolute;
  top: 42px;
  left: 37px;
  width: 20px;
  height: 3px;
  background: var(--amber);
  box-shadow: 0 10px 0 var(--amber), 0 20px 0 var(--amber);
}

.flow-phase-icon-plan span {
  position: absolute;
  z-index: 1;
  top: 17px;
  left: 38px;
  width: 20px;
  height: 11px;
  background: var(--navy);
  border-radius: 4px 4px 2px 2px;
}

.flow-phase-icon-visit::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 15px;
  width: 62px;
  height: 32px;
  background: var(--navy);
  border-radius: 7px 12px 5px 5px;
}

.flow-phase-icon-visit::after {
  content: "";
  position: absolute;
  top: 60px;
  left: 27px;
  width: 13px;
  height: 13px;
  background: var(--amber);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 30px 0 0 -3px var(--amber), 30px 0 0 0 var(--white);
}

.flow-phase-icon-visit span {
  position: absolute;
  z-index: 1;
  top: 40px;
  right: 23px;
  width: 18px;
  height: 12px;
  background: #f2ebe2;
  border-radius: 2px 7px 2px 2px;
}

.flow-detail-heading {
  margin: 0 0 36px;
  text-align: center;
}

.flow-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 68px;
  padding: 36px 40px;
  background: #eee4d8;
  border: 1px solid var(--line);
  border-left: 6px solid var(--amber);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.flow-intro h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.4;
}

.flow-intro > div:last-child > p {
  margin: 0;
  color: var(--muted);
}

.flow-intro .button {
  margin-top: 22px;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list-four {
  grid-template-columns: repeat(4, 1fr);
}

.flow-list-seven {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 940px;
  margin: 0 auto;
}

.flow-list-seven::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 50%;
  width: 3px;
  background: linear-gradient(var(--amber), #dec3a8);
  transform: translateX(-50%);
}

.flow-list-seven li {
  position: relative;
  width: calc(50% - 46px);
  min-height: 0;
  padding: 26px 30px;
  box-shadow: 0 14px 40px rgba(91, 70, 53, 0.08);
}

.flow-list-seven li:nth-child(even) {
  margin-left: auto;
}

.flow-list-seven li::before {
  content: "";
  position: absolute;
  top: 38px;
  width: 46px;
  height: 2px;
  background: #d4b28f;
}

.flow-list-seven li:nth-child(odd)::before {
  right: -47px;
}

.flow-list-seven li:nth-child(even)::before {
  left: -47px;
}

.flow-list-seven li::after {
  content: "";
  position: absolute;
  top: 30px;
  width: 15px;
  height: 15px;
  background: var(--navy);
  border: 4px solid var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--paper);
}

.flow-list-seven li:nth-child(odd)::after {
  right: -57px;
}

.flow-list-seven li:nth-child(even)::after {
  left: -57px;
}

.flow-list-seven span {
  display: inline-grid;
  min-width: 40px;
  height: 28px;
  place-items: center;
  padding: 0 10px;
  background: var(--navy);
  border-radius: 4px;
  color: var(--white);
  font-size: 12px;
}

.flow-list li {
  min-height: 220px;
  padding: 24px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.flow-list span {
  color: var(--sage);
  font-weight: 800;
}

.flow-list strong {
  display: block;
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.4;
}

.flow-list-seven strong {
  margin-top: 14px;
}

.flow-list p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.price {
  background: var(--mist);
}

.price-board {
  max-width: 1040px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.entry-fee {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 0.66fr);
  margin-bottom: 20px;
  border: 1px solid rgba(197, 143, 57, 0.65);
  background: var(--white);
}

.entry-fee > div {
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 22px 26px;
  background: var(--amber);
  color: var(--white);
}

.entry-fee > div span {
  font-size: 11px;
  font-weight: 800;
}

.entry-fee > div strong {
  font-size: 20px;
}

.entry-fee > p {
  display: grid;
  align-content: center;
  gap: 4px;
  margin: 0;
  padding: 22px 26px;
}

.entry-fee > p strong {
  color: var(--navy);
  font-size: 20px;
}

.entry-fee > p small {
  color: var(--muted);
  font-size: 13px;
}

.single-plan {
  display: grid;
  grid-template-columns: 0.75fr 1.5fr 1.25fr 1.35fr 1fr;
  border: 1px solid var(--line);
}

.single-plan > div {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 16px 18px;
  border-left: 1px solid var(--line);
}

.single-plan > div:first-child {
  border-left: 0;
}

.plan-label {
  place-items: center;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
}

.single-plan span,
.menu-price-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.single-plan strong,
.menu-price-row strong {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.55;
}

.price-columns {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(380px, 1.35fr);
  gap: 24px;
  margin-top: 28px;
}

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

.price-table-card h2 {
  margin: 0;
  padding: 18px 20px;
  background: var(--navy);
  color: var(--white);
  font-size: 18px;
  line-height: 1.35;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 20px;
  border-top: 1px solid var(--line);
}

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

.profile-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.profile-facts section {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--amber);
  border-radius: 8px;
}

.profile-fact-label {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.profile-facts ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile-facts li {
  position: relative;
  padding-left: 17px;
  color: var(--body);
  line-height: 1.7;
}

.profile-facts li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
}

.profile-facts li strong,
.profile-facts li span {
  display: block;
}

.profile-facts li span {
  color: var(--muted);
  font-size: 13px;
}

.profile-story {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.profile-story p {
  margin: 0;
  color: var(--body);
  line-height: 2;
}

.profile-story .profile-closing {
  padding: 20px 22px;
  background: #f5eee5;
  border-left: 4px solid var(--amber);
  color: var(--ink);
  font-weight: 800;
}

.staff-introduction {
  background: var(--mist);
  border-top: 1px solid var(--line);
}

.staff-introduction-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 60px;
  align-items: start;
}

.staff-note {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.staff-note p {
  margin: 0;
  color: var(--body);
  line-height: 1.9;
}

.staff-note p + p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.price-row strong {
  color: var(--navy);
  white-space: nowrap;
}

.menu-price-row {
  display: grid;
  grid-template-columns: 130px 1fr 105px;
  min-height: 112px;
  border-top: 1px solid var(--line);
}

.menu-price-row span {
  display: grid;
  place-items: center;
  padding: 18px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
}

.menu-price-row p,
.menu-price-row strong {
  display: grid;
  align-content: center;
  padding: 18px;
  border-left: 1px solid var(--line);
}

.price-notes {
  display: grid;
  gap: 8px;
  margin: 28px 0 0;
  padding-left: 1.2em;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

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

.safety-list p {
  margin: 0;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--sage);
  border-radius: var(--radius);
  font-weight: 800;
}

.faq {
  background: var(--mist);
}

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

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

summary {
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 26px 24px;
  color: var(--muted);
}

.faq-contact-link {
  display: inline-flex;
  margin: 0 26px 24px;
  color: var(--mocha-deep);
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.contact {
  background: #eee4d8;
  color: var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

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

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: rgba(255, 253, 250, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--sage-dark);
  font-size: 14px;
}

.site-footer {
  padding: 28px 0;
  background: #142330;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
}

.reveal {
  opacity: 1;
  transform: none;
}

body.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

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

@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;
  }

  .reveal,
  body.reveal-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    padding: 0 20px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: calc(var(--header-h) + 10px);
    display: grid;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 12px;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .intro-grid,
  .split,
  .split.reverse,
  .contact-grid,
  .field-experience-grid,
  .service-scene-grid,
  .vision-statement-grid,
  .profile-layout,
  .staff-introduction-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .profile-card {
    max-width: 680px;
  }

  .vision-statement {
    max-width: none;
  }

  .experience-filmstrip {
    grid-template-columns: 1fr 1fr;
  }

  .experience-filmstrip figure:first-child {
    grid-column: 1 / -1;
  }

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

  .proof-grid > div:nth-child(3) {
    border-left: 0;
  }

  .proof-grid > div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .service-layout,
  .target-grid,
  .day-layout,
  .vision-grid,
  .principle-grid,
  .price-columns,
  .page-card-grid {
    grid-template-columns: 1fr;
  }

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

  .single-plan .plan-label {
    grid-column: 1 / -1;
  }

  .menu-price-row {
    grid-template-columns: 120px 1fr 96px;
  }

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

  .flow-list,
  .flow-list-four,
  .flow-list-seven {
    grid-template-columns: 1fr;
  }

  .flow-list li {
    min-height: auto;
  }

  .flow-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px;
  }

  .flow-phases {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .flow-phases article {
    min-height: 0;
  }

  .flow-phases article:not(:last-child)::after {
    content: "↓";
    top: auto;
    right: 50%;
    bottom: -35px;
    transform: translateX(50%);
  }

  .flow-list-seven::before {
    left: 12px;
    transform: none;
  }

  .flow-list-seven li,
  .flow-list-seven li:nth-child(even) {
    width: calc(100% - 48px);
    margin-left: 48px;
  }

  .flow-list-seven li::before,
  .flow-list-seven li:nth-child(odd)::before,
  .flow-list-seven li:nth-child(even)::before {
    left: -36px;
    width: 36px;
  }

  .flow-list-seven li::after,
  .flow-list-seven li:nth-child(odd)::after,
  .flow-list-seven li:nth-child(even)::after {
    right: auto;
    left: -47px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 66px;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    height: min(82svh, 620px);
    min-height: 500px;
  }

  .hero-slide-light {
    background-image: url("./assets/liena-hero-mobile.png");
    background-position: center;
    background-size: contain;
  }

  .hero-slide-navy {
    background-position: center;
    background-size: auto 74%;
  }

  .hero-slide-care {
    background-position: 46% center;
  }

  .hero-slide-treatment {
    background-position: 57% center;
  }

  .hero-slide {
    transform: scale(1);
  }

  .hero-slide.is-active {
    transform: scale(1);
  }

  .hero-pagination {
    right: 50%;
    bottom: 18px;
    transform: translateX(50%);
  }

  .intro-band {
    padding: 52px 0 58px;
  }

  .intro-grid {
    gap: 28px;
  }

  .intro-grid h1 {
    font-size: 32px;
    line-height: 1.38;
  }

  .intro-message {
    gap: 18px;
  }

  .intro-message .intro-lead {
    font-size: 21px;
    line-height: 1.55;
  }

  .intro-message p:last-child {
    font-size: 15px;
    line-height: 1.95;
  }

  .proof-strip {
    padding-bottom: 34px;
  }

  .proof-grid > div {
    min-height: 112px;
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 16px 14px;
  }

  .proof-grid p {
    font-size: 12px;
  }

  .proof-grid strong {
    font-size: 13px;
  }

  .field-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 132px;
  }

  .field-photo-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .field-photo figcaption {
    font-size: 11px;
  }

  .service-scene-main,
  .service-scene-main img {
    min-height: 430px;
    height: 430px;
  }

  .vision-scene,
  .vision-scene img {
    min-height: 260px;
    height: 260px;
  }

  .experience-filmstrip {
    grid-template-columns: 1fr;
  }

  .experience-filmstrip figure:first-child {
    grid-column: auto;
  }

  .experience-filmstrip figure,
  .experience-filmstrip img {
    min-height: 260px;
    height: 260px;
  }

  .profile-card,
  .profile-card img {
    min-height: 360px;
  }

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

  .staff-note {
    padding: 22px;
  }

  .section {
    padding: 70px 0;
  }

  .page-hero {
    padding: 82px 0 64px;
  }

  .page-hero h1,
  .page-contact h1 {
    font-size: 34px;
  }

  .page-card {
    min-height: 190px;
  }

  .page-contact {
    padding: 76px 0;
  }

  .price-board {
    padding: 18px;
  }

  .entry-fee {
    grid-template-columns: 1fr;
  }

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

  .single-plan > div {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .single-plan > div:first-child {
    border-top: 0;
  }

  .price-row {
    display: block;
  }

  .price-row strong {
    display: block;
    margin-top: 8px;
    white-space: normal;
  }

  .menu-price-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .menu-price-row p,
  .menu-price-row strong {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .reason-grid,
  .merit-board,
  .safety-list {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    display: grid;
  }
}
