:root {
  --cream: #f7f1e8;
  --cream-2: #eee2d2;
  --white: #fffdf8;
  --ink: #2d2822;
  --muted: rgba(45, 40, 34, 0.62);
  --line: rgba(45, 40, 34, 0.12);
  --gold: #ad8350;
  --gold-soft: #e7d2b5;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-width: 320px;
  background: var(--cream);
  color: var(--ink);
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", system-ui, sans-serif;
}

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

.sample-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 82px;
  padding: 0 clamp(24px, 5vw, 72px);
  color: var(--ink);
  transition: background 360ms ease, border-color 360ms ease, backdrop-filter 360ms ease;
}

.sample-header.is-solid {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
}

.brand {
  display: grid;
  gap: 3px;
  font-size: 18px;
  font-weight: 760;
  letter-spacing: -0.03em;
}

.brand small {
  color: rgba(45, 40, 34, 0.52);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.gnb {
  justify-self: center;
  display: flex;
  gap: clamp(22px, 4vw, 58px);
  font-size: 13px;
  font-weight: 760;
}

.gnb a {
  opacity: 0.72;
  transition: color 220ms ease, opacity 220ms ease;
}

.gnb a:hover {
  color: var(--gold);
  opacity: 1;
}

.menu-toggle {
  justify-self: end;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 7px;
  width: 58px;
  height: 42px;
  border: 1px solid rgba(45, 40, 34, 0.13);
  border-radius: 999px;
  padding: 0 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.18));
  box-shadow:
    0 16px 40px rgba(78, 58, 37, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  cursor: pointer;
  transition:
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.menu-toggle i {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  transform-origin: right center;
  transition:
    width 260ms ease,
    background 260ms ease,
    transform 260ms ease;
}

.menu-toggle i + i {
  width: 13px;
  opacity: 0.72;
}

.menu-toggle:hover {
  border-color: rgba(173, 131, 80, 0.42);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(245, 232, 212, 0.42));
  box-shadow:
    0 20px 48px rgba(78, 58, 37, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transform: translateY(-2px);
}

.menu-toggle:hover i {
  background: var(--gold);
}

.menu-toggle:hover i:first-child {
  width: 14px;
}

.menu-toggle:hover i + i {
  width: 23px;
}

.side-menu {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 120;
  display: grid;
  align-content: center;
  gap: 26px;
  width: min(420px, 88vw);
  padding: 70px;
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(22px);
  transform: translateX(100%);
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.side-menu.is-open {
  transform: translateX(0);
}

.side-menu button {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.side-menu button::before,
.side-menu button::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 1px;
  background: var(--ink);
  content: "";
}

.side-menu button::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.side-menu button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.side-menu a {
  font-size: 30px;
  font-weight: 360;
  letter-spacing: -0.04em;
}

.section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 10%, rgba(255,255,255,0.9), transparent 25%),
    linear-gradient(135deg, var(--white), var(--cream));
}

.section-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1580px;
  margin: 0 auto;
  padding: 118px clamp(24px, 6vw, 96px) 64px;
}

.main01 {
  color: var(--ink);
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #f7f1e8;
  transform: scale(1.08);
  transition: transform 1800ms cubic-bezier(0.22, 1, 0.36, 1), opacity 600ms ease;
}

.hero-video {
  z-index: 1;
}

.main01.on .hero-video {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(247, 241, 232, 0.92) 0%, rgba(247, 241, 232, 0.72) 34%, rgba(247, 241, 232, 0.22) 58%, rgba(247, 241, 232, 0.44) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(231,210,181,0.18));
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(760px, calc(100% - 48px));
  padding: 14vh clamp(24px, 7vw, 112px) 0;
}

.section-label {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.hero-title,
.line-title {
  margin: 26px 0 0;
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", system-ui, sans-serif;
  font-weight: 360;
  line-height: 1.26;
  letter-spacing: -0.06em;
  word-break: keep-all;
}

.hero-title {
  font-size: clamp(36px, 4.2vw, 66px);
}

.line-title {
  font-size: clamp(34px, 3.8vw, 62px);
}

.hero-title span,
.line-title span {
  display: block;
  overflow: hidden;
}

.hero-title b,
.line-title b {
  display: block;
  font-weight: inherit;
  transform: translateY(105%);
  transition: transform 1000ms cubic-bezier(0.22, 1, 0.36, 1);
}

.section.on .hero-title b,
.section.on .line-title b {
  transform: translateY(0);
}

.hero-desc {
  max-width: 540px;
  margin: 32px 0 38px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
  word-break: keep-all;
}

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

.hero-actions a,
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  border: 1px solid rgba(45, 40, 34, 0.22);
  border-radius: 999px;
  padding: 15px 26px;
  background: rgba(255,255,255,0.34);
  font-size: 14px;
  font-weight: 800;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.hero-actions a:hover,
.cta-button:hover {
  border-color: rgba(173, 131, 80, 0.5);
  box-shadow: 0 22px 70px rgba(93, 70, 44, 0.12);
  transform: translateY(-4px);
}

.hero-actions i,
.program-card i,
.cta-button i {
  font-style: normal;
  transition: transform 240ms ease;
}

.hero-actions a:hover i,
.program-card:hover i,
.cta-button:hover i {
  transform: translateX(7px);
}

.reveal-up {
  opacity: 0;
  transform: translateY(90px);
  transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1), transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.section.on .reveal-up {
  opacity: 1;
  transform: translateY(0);
}

.section.on .reveal-up:nth-child(1) { transition-delay: 120ms; }
.section.on .reveal-up:nth-child(3) { transition-delay: 420ms; }
.section.on .reveal-up:nth-child(4) { transition-delay: 620ms; }

.scroll-indicator {
  position: absolute;
  z-index: 3;
  right: clamp(28px, 6vw, 96px);
  bottom: 44px;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: rgba(45,40,34,0.55);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.scroll-indicator i {
  width: 1px;
  height: 52px;
  background: rgba(45,40,34,0.38);
  animation: scrollLine 1600ms ease-in-out infinite;
}

.philosophy-layout,
.texture-layout,
.space-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(40px, 7vw, 112px);
  align-items: center;
  min-height: 100vh;
}

.copy-block p,
.texture-copy p,
.space-copy p {
  max-width: 560px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  word-break: keep-all;
}

.philosophy-visual {
  position: relative;
  min-height: min(610px, 68vh);
}

.philosophy-visual::before {
  position: absolute;
  inset: 8% 4% 4%;
  border: 1px solid rgba(173, 131, 80, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.72), transparent 18%),
    radial-gradient(circle at 28% 36%, rgba(231,210,181,0.5), transparent 18%),
    radial-gradient(circle at 72% 62%, rgba(255,255,255,0.62), transparent 16%);
  content: "";
  opacity: 0;
  transform: scale(0.88) rotate(-8deg);
  transition: opacity 900ms ease 180ms, transform 1100ms cubic-bezier(0.22, 1, 0.36, 1) 180ms;
}

.section.on .philosophy-visual::before {
  opacity: 1;
  transform: scale(1) rotate(-8deg);
}

.soft-card {
  position: absolute;
  width: min(320px, 32vw);
  min-height: 210px;
  overflow: hidden;
  border: 1px solid rgba(45,40,34,0.12);
  border-radius: 24px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.72), rgba(255,253,248,0.34)),
    rgba(255,255,255,0.5);
  box-shadow: 0 30px 100px rgba(105, 77, 47, 0.1);
  backdrop-filter: blur(18px);
  transform: translateY(40px) scale(0.94);
  opacity: 0;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), opacity 900ms ease;
}

.soft-card::before {
  position: absolute;
  inset: 62px 24px auto;
  height: 78px;
  content: "";
}

.soft-card::after {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(173,131,80,0.62), transparent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1) 720ms;
}

.section.on .soft-card::after {
  transform: scaleX(1);
}

.section.on .soft-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.card-01 { left: 2%; top: 8%; transition-delay: 260ms; }
.card-02 { right: 3%; top: 32%; transition-delay: 420ms; }
.card-03 { left: 26%; bottom: 4%; transition-delay: 580ms; }

.card-01::before {
  border-radius: 999px;
  background:
    radial-gradient(circle at 16% 50%, rgba(173,131,80,0.26) 0 7px, transparent 8px),
    radial-gradient(circle at 50% 50%, rgba(173,131,80,0.18) 0 7px, transparent 8px),
    radial-gradient(circle at 84% 50%, rgba(173,131,80,0.22) 0 7px, transparent 8px),
    linear-gradient(90deg, transparent 15%, rgba(173,131,80,0.34) 15% 85%, transparent 85%);
}

.card-02::before {
  border-radius: 18px;
  background:
    linear-gradient(112deg, transparent 0 42%, rgba(255,255,255,0.78) 43% 46%, transparent 47%),
    radial-gradient(circle at 74% 24%, rgba(255,255,255,0.9), transparent 16%),
    linear-gradient(135deg, rgba(231,210,181,0.42), rgba(255,255,255,0.24));
}

.card-03::before {
  border: 1px solid rgba(173,131,80,0.2);
  border-radius: 22px;
  background:
    linear-gradient(rgba(173,131,80,0.18), rgba(173,131,80,0.18)) 22px 24px / 58% 1px no-repeat,
    linear-gradient(rgba(173,131,80,0.18), rgba(173,131,80,0.18)) 22px 42px / 42% 1px no-repeat,
    radial-gradient(circle at 80% 62%, rgba(173,131,80,0.26) 0 13px, transparent 14px);
}

.soft-card span {
  color: var(--gold);
  font-weight: 850;
}

.soft-card b {
  display: block;
  margin-top: 92px;
  font-size: 23px;
  font-weight: 440;
  letter-spacing: -0.04em;
}

.program-head {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 12px;
}

.program-card {
  position: relative;
  min-height: min(440px, 46vh);
  overflow: hidden;
  border-radius: 18px;
  color: #fff;
  background: #111;
  opacity: 0;
  transform: translateY(96px);
  transition: opacity 880ms cubic-bezier(0.22, 1, 0.36, 1), transform 880ms cubic-bezier(0.22, 1, 0.36, 1);
}

.section.on .program-card {
  opacity: 1;
  transform: translateY(0);
}

.section.on .program-card:nth-child(1) { transition-delay: 260ms; }
.section.on .program-card:nth-child(2) { transition-delay: 360ms; }
.section.on .program-card:nth-child(3) { transition-delay: 460ms; }
.section.on .program-card:nth-child(4) { transition-delay: 560ms; }
.section.on .program-card:nth-child(5) { transition-delay: 660ms; }

.card-img,
.journal-img {
  background-size: cover;
  background-position: center;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), filter 360ms ease;
}

.card-img {
  position: absolute;
  inset: 0;
}

.program-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.78));
  content: "";
  transition: opacity 300ms ease;
}

.program-card:hover::after {
  opacity: 0.78;
}

.program-card:hover .card-img {
  transform: scale(1.08);
}

.program-card span,
.program-card h3,
.program-card p,
.program-card i {
  position: absolute;
  z-index: 1;
}

.program-card span {
  top: 24px;
  left: 24px;
  color: var(--gold-soft);
  font-weight: 850;
}

.program-card h3 {
  left: 24px;
  right: 24px;
  bottom: 78px;
  margin: 0;
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 520;
  letter-spacing: -0.04em;
  transition: color 240ms ease, transform 240ms ease;
}

.program-card:hover h3 {
  color: var(--gold-soft);
  transform: translateY(-4px);
}

.program-card p {
  left: 24px;
  right: 54px;
  bottom: 42px;
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
}

.program-card i {
  right: 24px;
  bottom: 40px;
}

.program-01 .card-img { background-image: url("../images/program-laser-toning.png"); }
.program-02 .card-img { background-image: url("../images/program-skin-booster.png"); }
.program-03 .card-img { background-image: url("../images/program-lifting.png"); }
.program-04 .card-img { background-image: url("../images/program-filler-botox.png"); }
.program-05 .card-img { background-image: url("../images/program-acne-scar.png"); }

.program-line {
  height: 2px;
  margin-top: 28px;
  background: rgba(45,40,34,0.1);
}

.program-line i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--ink);
  transition: width 1100ms cubic-bezier(0.22, 1, 0.36, 1) 700ms;
}

.section.on .program-line i {
  width: 42%;
}

.texture-stage {
  position: relative;
  min-height: min(640px, 70vh);
}

.texture-image {
  position: absolute;
  border-radius: 28px;
  box-shadow: 0 30px 110px rgba(105, 77, 47, 0.12);
}

.texture-large {
  inset: 6% 10% 12% 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18), rgba(247,241,232,0.04)),
    url("../images/texture-skin-visual-main.png") center / cover no-repeat;
}

.texture-small {
  right: 0;
  bottom: 4%;
  width: 32%;
  height: 42%;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.12), rgba(247,241,232,0.04)),
    url("../images/texture-skin-visual-sub.png") center / cover no-repeat;
}

.mask-reveal {
  clip-path: inset(0 100% 0 0);
  transform: scale(1.04);
  transition: clip-path 1100ms cubic-bezier(0.22, 1, 0.36, 1), transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.section.on .mask-reveal {
  clip-path: inset(0 0 0 0);
  transform: scale(1);
}

.space-gallery {
  display: grid;
  grid-template-columns: 1.16fr 0.92fr 0.92fr;
  grid-template-rows: repeat(2, minmax(180px, 1fr));
  gap: 14px;
}

.space-item {
  min-height: 240px;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 90px rgba(105, 77, 47, 0.1);
}

.space-item:hover {
  filter: brightness(1.04);
}

.space-01 {
  grid-row: span 2;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent),
    url("../images/clinic-space-01.png");
}

.space-02 {
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent),
    url("../images/clinic-space-02.png");
}

.space-03 {
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent),
    url("../images/clinic-space-03.png");
}

.space-04 {
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent),
    url("../images/clinic-space-04.png");
}

.space-05 {
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent),
    url("../images/clinic-space-05.png");
}

.journal-layout {
  min-height: 100vh;
}

.journal-head {
  margin-bottom: 48px;
}

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

.journal-card {
  display: block;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 850ms cubic-bezier(0.22, 1, 0.36, 1), transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.section.on .journal-card {
  opacity: 1;
  transform: translateY(0);
}

.section.on .journal-card:nth-child(1) { transition-delay: 280ms; }
.section.on .journal-card:nth-child(2) { transition-delay: 420ms; }
.section.on .journal-card:nth-child(3) { transition-delay: 560ms; }

.journal-img {
  height: min(330px, 34vh);
  overflow: hidden;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 70px rgba(111, 88, 60, 0.1);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), filter 520ms ease;
}

.journal-card:hover .journal-img {
  transform: scale(1.05);
  filter: brightness(1.04);
}

.journal-card span {
  display: block;
  margin-top: 22px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.journal-card h3 {
  margin: 10px 0;
  font-size: 24px;
  font-weight: 520;
  letter-spacing: -0.04em;
  transition: transform 260ms ease;
}

.journal-card:hover h3 {
  transform: translateX(7px);
}

.journal-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.journal-01 {
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent),
    url("../images/journal-care-note.png");
}

.journal-02 {
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent),
    url("../images/journal-skin-guide.png");
}

.journal-03 {
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent),
    url("../images/journal-space-story.png");
}

.main07 {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 52%, rgba(255,255,255,0.86), transparent 18%),
    radial-gradient(circle at 22% 20%, rgba(173, 131, 80, 0.18), transparent 26%),
    linear-gradient(135deg, #efe0cf, #fffaf3);
}

.cta-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(76vw, 1080px);
  aspect-ratio: 1 / 0.56;
  border: 1px solid rgba(173,131,80,0.14);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  transition: opacity 900ms ease, transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cta-bg::before,
.cta-bg::after {
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(173, 131, 80, 0.11);
  border-radius: 50%;
  content: "";
}

.cta-bg::after {
  inset: 28%;
}

.section.on .cta-bg {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.cta-layout {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 100vh;
  text-align: center;
  padding-top: 7vh;
  padding-bottom: 7vh;
}

.cta-layout > .section-label,
.cta-layout > .line-title,
.cta-layout > .reservation-box {
  position: relative;
  z-index: 1;
}

.cta-layout > .line-title {
  max-width: 920px;
}

.cta-layout > .line-title span {
  justify-content: center;
}

.reservation-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
  border: 1px solid rgba(45, 40, 34, 0.1);
  border-radius: 999px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 30px 100px rgba(111, 88, 60, 0.13);
  backdrop-filter: blur(18px);
}

.phone-box {
  display: grid;
  align-content: center;
  min-width: 250px;
  min-height: 82px;
  border: 1px solid rgba(45,40,34,0.12);
  border-radius: 999px;
  padding: 16px 30px;
  background: rgba(255,255,255,0.6);
}

.phone-box small {
  color: var(--muted);
}

.phone-box b {
  margin-top: 4px;
  font-size: 20px;
}

.fp-watermark {
  display: none !important;
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
  background: var(--gold);
}

#fp-nav ul li .fp-tooltip {
  color: var(--ink);
  font-family: inherit;
  font-size: 12px;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.45); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

@media (max-width: 1080px) {
  .gnb {
    display: none;
  }

  .philosophy-layout,
  .texture-layout,
  .space-layout,
  .program-head {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  .sample-header {
    min-height: 70px;
    padding-inline: 20px;
  }

  .section-inner {
    padding: 92px 20px 44px;
  }

  .hero-content {
    width: 100%;
    padding: 16vh 24px 0;
  }

  .hero-title {
    font-size: clamp(31px, 8.8vw, 42px);
  }

  .line-title {
    font-size: clamp(30px, 8.5vw, 42px);
  }

  .program-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .program-card {
    min-height: 180px;
  }

  .program-card h3 {
    bottom: 64px;
  }

  .program-card p,
  .program-card i {
    bottom: 30px;
  }

  .texture-stage {
    min-height: 340px;
  }

  .space-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .space-01 {
    grid-row: auto;
  }

  .cta-layout {
    padding-top: 12vh;
    padding-bottom: 8vh;
  }

  .reservation-box {
    width: min(100%, 360px);
    border-radius: 28px;
    padding: 14px;
  }

  .phone-box,
  .reservation-box .cta-button {
    width: 100%;
    min-width: 0;
  }
}
