:root {
  --paper: #f6f2ea;
  --ink: #181713;
  --muted: #6f695f;
  --line: rgba(24, 23, 19, 0.48);
  --sage: #6f7f63;
  --amber: #b07a32;
  --white: #fffdf8;
  --section-paper: #fbf8f0;
  --serif: "Gowun Batang", "Times New Roman", serif;
  --sans: "Noto Sans KR", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--section-paper);
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: 0;
}

body.is-sidebar-open {
  overflow: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--amber));
  transform-origin: left center;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.32;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 0 4.1vw;
  background: rgba(246, 242, 234, 0.48);
  border-bottom: 1px solid rgba(24, 23, 19, 0.12);
  transform: translateY(0);
  transition: transform 320ms ease, background 220ms ease;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.brand {
  display: flex;
  gap: 24px;
  font-family: var(--serif);
  align-items: center;
}

.brand img {
  width: auto;
  height: 32px;
}

.brand span {
  font-size: clamp(1.55rem, 2.1vw, 2.45rem);
  line-height: 1;
}

.brand small,
.sidebar-nav a {
  font-family: var(--sans);
  font-weight: 300;
}

.nav-links {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: min(420px, 86vw);
  height: 100svh;
  padding: 104px clamp(28px, 4vw, 52px) 34px;
  background: rgba(255, 253, 248, 0.96);
  border-left: 1px solid rgba(24, 23, 19, 0.18);
  box-shadow: -24px 0 60px rgba(24, 23, 19, 0.12);
  transform: translateX(100%);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.site-header.is-open .nav-links {
  transform: translateX(0);
}

.sidebar-nav {
  display: grid;
  gap: 0;
}

.sidebar-nav a {
  padding: 22px 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3vw, 3.2rem);
  line-height: 1.1;
  border-bottom: 1px solid rgba(24, 23, 19, 0.18);
}

.sidebar-nav a:hover {
  color: var(--sage);
}

.menu-toggle {
  position: relative;
  z-index: 100;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  background: rgba(255, 253, 248, 0.54);
  border: 1px solid rgba(24, 23, 19, 0.2);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 1px;
  background: var(--ink);
  transition: transform 220ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.site-header.is-open .menu-toggle span:first-child {
  transform: rotate(45deg);
}

.site-header.is-open .menu-toggle span:last-child {
  transform: rotate(-45deg);
}

.sidebar-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 28px;
}

.sidebar-social a {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  overflow: hidden;
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
  background: #fffdf8;
  border: 1px solid rgba(24, 23, 19, 0.14);
  border-radius: 50%;
}

.sidebar-social img {
  width: 62%;
  height: 62%;
  object-fit: contain;
}

.sidebar-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  opacity: 0;
  background: rgba(24, 23, 19, 0.24);
  border: 0;
  transition: opacity 260ms ease;
}

body.is-sidebar-open .sidebar-backdrop {
  pointer-events: auto;
  opacity: 1;
}

.section-shell,
.grid-band,
.bottom-cta {
  width: 100%;
  margin: 0 auto;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(64px);
  transition: opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1), transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.hero {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(120px, 15vw, 220px) max(24px, 4vw);
  overflow: hidden;
  isolation: isolate;
  background: #18120d;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  /* background:
    radial-gradient(circle at 50% 48%, rgba(255, 238, 210, 0.18), transparent 25rem),
    linear-gradient(180deg, rgba(10, 8, 6, 0.28), rgba(10, 8, 6, 0.36)); */
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(86vw, 760px);
  color: rgba(255, 250, 242, 0.92);
  text-align: center;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.26);
}

.hero-copy small {
  margin-bottom: clamp(26px, 4vw, 58px);
  color: rgba(255, 250, 242, 0.66);
  font-size: clamp(0.66rem, 0.78vw, 0.84rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.24);
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 0.98;
  word-break: keep-all;
}

.short-line {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin: clamp(28px, 4vw, 54px) 0 0;
  border: 1px solid rgba(255, 250, 242, 0.5);
  border-radius: 50%;
  background: transparent;
}

.short-line::before {
  width: 8px;
  height: 8px;
  content: "";
  border: 1px solid rgba(255, 250, 242, 0.72);
  border-radius: 50%;
    background: transparent;
}

.hero p {
  max-width: 620px;
  margin: clamp(16px, 2vw, 24px) 0 0;
  color: rgba(255, 250, 242, 0.72);
  font-size: clamp(0.92rem, 1.05vw, 1.08rem);
  line-height: 1.82;
  word-break: keep-all;
}

.hero p + p {
  margin-top: 4px;
}

.hero-media {
  position: absolute;
  inset: -8vh 0;
  z-index: -2;
  height: auto;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  transform: translateY(calc(var(--hero-shift, 0) * 1px));
}

.hero-video {
  width: 100%;
  height: 116%;
  min-height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.practice-video-section {
  position: relative;
  min-height: 130svh;
  overflow: hidden;
  isolation: isolate;
  background: #20251d;
}

.practice-video-section::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(10, 8, 6, 0.1), rgba(10, 8, 6, 0.34));
}

.practice-video-media {
  inset: 0;
  z-index: -2;
  transform: translateY(calc(var(--landing-video-shift, 0) * 1px));
}

.practice-video-media .hero-video {
  height: 100%;
  transform: none;
}

.grid-band {
  display: grid;
  grid-template-columns: 280px minmax(310px, 1fr) minmax(520px, 1.65fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: clamp(680px, 92svh, 980px);
  margin-top: clamp(110px, 15vw, 230px);
}

.intro {
  grid-template-columns: minmax(0, 1fr) clamp(320px, 28vw, 460px);
  align-items: stretch;
  min-height: clamp(720px, 94svh, 980px);
  background:
    radial-gradient(circle at 78% 26%, rgba(255, 255, 255, 0.62), transparent 26rem),
    linear-gradient(180deg, rgba(255, 253, 248, 0.42), rgba(246, 242, 234, 0.36));
}

.portrait,
.intro-text,
.cycle-panel {
  margin: 0;
  padding: clamp(18px, 2.2vw, 32px);
}

.portrait {
  min-height: 310px;
  padding: 200px 0 0 0;
  overflow: hidden;
  background: rgba(24, 23, 19, 0.04);
}

.portrait img {
  object-position: center top;
  filter: grayscale(1);
}

.intro-text,
.cycle-panel {
  border-left: 1px solid var(--line);
}

.intro .intro-text {
  border-left: 0;
}

.intro .portrait {
  border-left: 1px solid var(--line);
}

.intro-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 140px) clamp(34px, 7vw, 120px);
}

.section-title {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 18px;
}

.section-title h2 {
  flex: 0 0 auto;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2vw, 2.35rem);
  font-weight: 400;
}

.section-title span {
  width: 100%;
  height: 1px;
  background: var(--line);
}

.intro .section-title h2 {
  font-size: clamp(2rem, 3vw, 4.15rem);
  line-height: 1.12;
  word-break: keep-all;
}

.intro .section-title {
  max-width: 900px;
}

.intro .section-title span {
  width: min(100%, 120px);
}

.name-line {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 4px;
}

.intro-text p,
.practice-detail p,
.bottom-cta p,
.quote-band span {
  font-size: 0.98rem;
  line-height: 1.9;
  word-break: keep-all;
}

.intro-text p {
  max-width: 720px;
  margin: 24px 0 0;
  color: #3f3a32;
}

.intro .intro-text p strong {
  font-family: var(--sans) !important;
}

strong {
  font-weight: 500;
}

.cycle-panel h2 {
  margin: 0 0 34px;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(1.95rem, 3vw, 3.25rem);
  font-weight: 400;
}

.cycle-panel h2 span {
  color: var(--sage);
}

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

.cycle-items div {
  min-height: 170px;
  padding: 0 28px;
  text-align: center;
  border-left: 1px solid var(--line);
}

.cycle-items div:first-child {
  border-left: 0;
}

.cycle-items small {
  display: block;
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: 1rem;
}

.cycle-items strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 700;
}

.cycle-items p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.practice {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(48px, 6vw, 92px);
  align-items: start;
  width: calc(var(--practice-reveal-width, 88) * 1vw);
  min-height: 100svh;
  margin-top: clamp(-220px, -13vw, -120px);
  padding: clamp(140px, 16vw, 260px) clamp(28px, 4.2vw, 72px) clamp(110px, 14vw, 230px);
  overflow: hidden;
  border-radius: 20px;
  background: var(--section-paper);
  transform: translateY(calc(var(--practice-reveal-y, 90) * 1px));
  transform-origin: bottom center;
  will-change: width, transform;
}

.wide-image {
  position: sticky;
  top: 104px;
  height: clamp(440px, 48vw, 720px);
  margin: 0;
  overflow: hidden;
  background: rgba(24, 23, 19, 0.06);
  isolation: isolate;
}

.wide-image::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  box-shadow: inset 0 0 0 1px rgba(24, 23, 19, 0.12);
}

.practice-image {
  height: 116%;
  transform: translateY(calc(var(--practice-shift, 0) * 1px)) scale(1.035);
  transform-origin: center;
  transition:
    opacity 280ms ease,
    filter 520ms ease;
  will-change: transform, opacity;
}

.practice-image.is-changing {
  opacity: 0;
  filter: blur(10px);
}

.practice-list {
  padding: 24px 0 clamp(70px, 9vw, 150px);
}

.practice-row {
  display: grid;
  grid-template-columns: 70px minmax(170px, 0.52fr) minmax(220px, 1fr);
  align-items: baseline;
  width: 100%;
  padding: 24px 0 23px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.practice-row:last-of-type {
  border-bottom: 1px solid var(--line);
}

.practice-row .num {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.3vw, 2.6rem);
}

.practice-row .label {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.45rem);
}

.practice-row .summary {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.practice-row:hover .label,
.practice-row.is-open .label {
  color: var(--sage);
}

.practice-detail {
  display: grid;
  grid-template-rows: 0fr;
  padding-bottom: 0;
  opacity: 0;
  transition:
    grid-template-rows 520ms cubic-bezier(0.22, 1, 0.36, 1),
    padding-bottom 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 360ms ease;
}

.practice-detail p {
  overflow: hidden;
  max-width: 790px;
  margin: 0;
  padding-right: 20px;
  color: #474238;
  transform: translateY(-10px);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.practice-row.is-open + .practice-detail {
  grid-template-rows: 1fr;
  opacity: 1;
  padding-bottom: 34px;
}

.practice-row.is-open + .practice-detail p {
  transform: translateY(0);
}

.featured-projects {
  width: 100%;
  padding: clamp(54px, 8vw, 92px) clamp(18px, 3.6vw, 34px) clamp(58px, 8vw, 100px);
  overflow: hidden;
  background: var(--section-paper);
}

.featured-topline,
.featured-bottomline {
  height: 2px;
  background: rgba(24, 23, 19, 0.84);
}

.featured-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(76px, 9vw, 128px) 0 clamp(74px, 8vw, 120px);
}

.featured-header h2,
.featured-header a,
.featured-card h3,
.featured-meta {
  font-family: var(--sans);
  letter-spacing: 0;
}

.featured-header h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(0.8rem, 2.05vw, 1rem);
  font-weight: 400;
  line-height: 1;
}

.featured-header sup {
  top: -0.52em;
  position: relative;
  font-size: 0.62em;
}

.featured-header a {
  color: var(--ink);
  font-size: clamp(0.8rem, 2.05vw, 1rem);
  font-weight: 400;
  line-height: 1;
  border-bottom: 2px solid currentColor;
}

.featured-track {
  display: grid;
  grid-auto-columns: minmax(420px, 41vw);
  grid-auto-flow: column;
  gap: clamp(44px, 4.2vw, 84px);
  overflow-x: auto;
  padding: 0 0 clamp(72px, 8vw, 120px);
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.featured-track::-webkit-scrollbar {
  display: none;
}

.featured-card a {
  display: block;
  color: var(--ink);
}

.featured-card figure {
  aspect-ratio: 1.5 / 1;
  margin: 0 0 clamp(28px, 3vw, 48px);
  overflow: hidden;
  background: rgba(24, 23, 19, 0.06);
}

.featured-card img {
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), filter 520ms ease;
}

.featured-card a:hover img {
  transform: scale(1.035);
  filter: saturate(1.05);
}

.featured-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(0.8rem, 2.05vw, 1rem);
  line-height: 1.15;
}

.featured-card h3 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(0.8rem, 2.05vw, 1rem);
  font-weight: 400;
  line-height: 1.28;
  word-break: keep-all;
}

.featured-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 0 clamp(76px, 8vw, 118px);
}

.featured-controls button {
  min-width: 136px;
  padding: 0 clamp(22px, 2vw, 36px);
  color: var(--ink);
  font: inherit;
  font-size: clamp(0.8rem, 2.05vw, 1rem);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.featured-controls button + button {
  border-left: 1px solid var(--ink);
}

.scroll-story {
  position: relative;
  min-height: 320svh;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(235, 230, 218, 0.68), rgba(235, 230, 218, 0.68)),
    url("assets/scroll-story-bg-desktop.png") center / cover fixed no-repeat;
}

.scroll-story::before {
  display: none;
  content: "";
}

.scroll-story::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at 50% 42%, rgba(255, 253, 248, 0.34), transparent 30rem);
}

.story-step {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  width: 100%;
  padding: clamp(90px, 12vw, 150px) clamp(22px, 5vw, 80px);
  text-align: center;
  opacity: 0;
  transform: translateY(78px);
  transition: opacity 900ms ease, transform 1000ms cubic-bezier(0.22, 1, 0.36, 1);
}

.story-step:nth-child(n + 2) {
  display: flex;
}

.story-step h2 {
  margin: 0;
  color: #4b3433;
  font-family: var(--sans);
  word-break: keep-all;
  text-shadow: none;
}

.story-title,
.story-subtitle {
  display: block;
}

.story-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.4vw, 4.6rem);
  font-weight: 700;
  line-height: 0.86;
}

.story-subtitle {
  font-family: var(--serif);
  margin-top: clamp(8px, 1vw, 18px);
  font-size: clamp(1rem, 2.7vw, 3rem);
  font-weight: 200;
  line-height: 1.08;
}

.story-step p {
  font-family: var(--serif);
  max-width: 720px;
  margin: clamp(72px, 8vw, 128px) 0 0;
  color: #4b3433;
  font-size: 20px;
  font-weight: 200;
  line-height: 1.28;
  word-break: keep-all;
}

.story-step::before {
  display: none;
  content: "";
}

.story-step.is-active {
  opacity: 1;
  transform: translateY(0);
}

.quote-band {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(360px, 0.95fr);
  gap: 0;
  align-items: stretch;
  min-height: clamp(720px, 100svh, 1040px);
  padding: 0;
  overflow: hidden;
  background: #fbf2ea;
}

.quote-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: inherit;
  padding: clamp(58px, 9vw, 150px) clamp(34px, 8vw, 140px);
}

.quote-content small {
  margin-bottom: clamp(46px, 8vw, 112px);
  color: var(--muted);
  font-size: clamp(0.68rem, 0.78vw, 0.84rem);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.quote-band p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.15rem, 4vw, 5.1rem);
  font-weight: 400;
  line-height: 1.12;
  word-break: keep-all;
}

.quote-band span {
  max-width: 560px;
  margin-top: clamp(66px, 8vw, 118px);
  color: var(--muted);
}

.quote-content a {
  align-self: flex-start;
  margin-top: 28px;
  padding: 9px 14px 10px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid rgba(24, 23, 19, 0.34);
}

.quote-image {
  min-height: inherit;
  margin: 0;
  overflow: hidden;
}

.quote-image img {
  object-position: center;
}

.bottom-cta {
  display: grid;
  grid-template-columns: minmax(420px, 1.5fr) minmax(260px, 0.72fr) minmax(360px, 1fr);
  border-bottom: 1px solid var(--line);
  min-height: clamp(420px, 64svh, 680px);
  align-items: center;
  margin-top: clamp(120px, 16vw, 250px);
  margin-bottom: clamp(130px, 16vw, 260px);
}

.bottom-cta article {
  position: relative;
  min-height: 190px;
  padding: 34px 54px 34px 0;
  border-left: 1px solid var(--line);
}

.bottom-cta article:first-child {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  column-gap: 28px;
  border-left: 0;
}

.bottom-cta h2 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2vw, 2.55rem);
  font-weight: 400;
}

.bottom-cta p {
  margin: 0;
  color: var(--muted);
}

.bottom-cta a {
  align-self: end;
  justify-self: end;
  white-space: nowrap;
  border-bottom: 1px solid currentColor;
}

.bottom-cta .phone {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 4rem);
  border-bottom: 0;
}

.botanical-mark {
  grid-row: 1 / 3;
  color: var(--sage);
  font-family: var(--serif);
  font-size: 4.5rem;
  line-height: 1;
  transform: rotate(16deg);
}

.diy-section,
.contact-section,
.map-section,
.site-footer {
  width: 100%;
}

.diy-section {
  padding: clamp(64px, 8vw, 120px) clamp(24px, 5vw, 90px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(24, 23, 19, 0.2);
  background: rgba(255, 253, 248, 0.26);
}

.diy-content {
  display: grid;
  grid-template-columns: 54px minmax(180px, 0.34fr) minmax(300px, 0.86fr);
  gap: clamp(26px, 4vw, 72px);
  align-items: center;
  max-width: 1280px;
  min-height: clamp(170px, 24svh, 260px);
  margin: 0 auto;
}

.diy-content h2,
.contact-section h2,
.map-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.8vw, 3.45rem);
  font-weight: 400;
  line-height: 1.16;
  word-break: keep-all;
}

.diy-content p,
.contact-section p,
.map-copy p,
.map-fallback p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.9;
  word-break: keep-all;
}

.diy-content a,
.contact-section a,
.map-fallback a {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-top: 24px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
  min-height: clamp(360px, 54svh, 560px);
  border-bottom: 1px solid var(--line);
}

.contact-section article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 8vw, 120px) clamp(26px, 7vw, 120px);
}

.contact-section article + article {
  border-left: 1px solid var(--line);
}

.contact-section span,
.map-copy span {
  margin-bottom: 20px;
  color: var(--sage);
  font-family: var(--serif);
  font-size: 1rem;
}

.contact-section .phone {
  display: block;
  margin-top: 28px;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 1.5rem);
  font-weight: 400;
  line-height: 0.98;
  border-bottom: 0;
}

.contact-section .phone + p {
  margin-top: 30px;
}

.map-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(480px, 1fr);
  gap: clamp(34px, 5vw, 92px);
  align-items: stretch;
  padding: clamp(88px, 12vw, 170px) clamp(24px, 5vw, 90px);
  border-bottom: 1px solid rgba(24, 23, 19, 0.2);
}

.map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-copy p {
  margin-top: 26px;
}

.naver-map {
  position: relative;
  min-height: clamp(360px, 56svh, 640px);
  overflow: hidden;
  border: 1px solid rgba(24, 23, 19, 0.2);
  border-radius: 20px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.76), transparent 18rem),
    rgba(246, 242, 234, 0.72);
}

.map-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 18px;
  padding: 28px;
  text-align: center;
}

.map-fallback a {
  justify-self: center;
  margin-top: 0;
}

.site-footer {
  position: relative;
  min-height: 560px;
  padding: clamp(54px, 7vw, 88px) clamp(24px, 10vw, 210px) clamp(44px, 6vw, 74px);
  color: rgba(255, 253, 248, 0.9);
  background: #232321;
}

.footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.72fr) 1fr;
  gap: clamp(40px, 6vw, 110px);
  max-width: 1640px;
  margin: 0 auto;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: clamp(56px, 7vw, 120px);
}

.footer-links h2 {
  margin: 0 0 34px;
  font-size: clamp(1.25rem, 1.45vw, 1.75rem);
  font-weight: 100;
}

.footer-links a {
  display: block;
  width: max-content;
  margin-top: 13px;
  color: rgba(255, 253, 248, 0.88);
  font-size: clamp(0.96rem, 1vw, 1.12rem);
  font-weight: 500;
}

.footer-links a:hover,
.footer-info a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  align-items: start;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  overflow: hidden;
  color: #fffdf8;
  font-size: 1.65rem;
  font-weight: 100;
  line-height: 1;
  background: rgba(255, 253, 248, 0.94);
  border-radius: 50%;
}

.footer-social img {
  width: 62%;
  height: 62%;
  object-fit: contain;
}

.footer-social a:nth-child(5) img {
  width: 52%;
}

.footer-info {
  grid-column: 1 / -1;
  margin-top: clamp(48px, 7vw, 84px);
  padding-top: clamp(38px, 4vw, 58px);
  border-top: 1px solid rgba(255, 253, 248, 0.76);
}

.footer-info p {
  margin: 0 0 20px;
  color: rgba(255, 253, 248, 0.82);
  font-size: clamp(0.86rem, 0.9vw, 1rem);
  font-weight: 500;
  line-height: 1.75;
  word-break: keep-all;
}

.footer-info strong {
  color: #fffdf8;
  font-weight: 100;
}

.footer-info a {
  color: inherit;
}

.footer-actions {
  position: absolute;
  right: clamp(24px, 4vw, 44px);
  bottom: clamp(24px, 4vw, 44px);
  display: grid;
  gap: 24px;
}

.footer-actions a {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 253, 248, 0.9);
  border-radius: 50%;
  color: #fffdf8;
  font-size: 2rem;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.footer-actions a:last-child {
  font-size: 1.55rem;
}

.kakao-floating {
  position: fixed;
  right: 24px;
  bottom: max(26px, calc(env(safe-area-inset-bottom) + 26px));
  z-index: 95;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  overflow: hidden;
  background: #fee500;
  border: 1px solid rgba(24, 23, 19, 0.08);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(24, 23, 19, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.kakao-floating:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(24, 23, 19, 0.24);
}

.kakao-floating img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.floating-social {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 25;
  display: grid;
  gap: 10px;
}

.floating-social a {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #111;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 100;
  line-height: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow: 0 10px 24px rgba(24, 23, 19, 0.13);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-social a:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(24, 23, 19, 0.18);
}

.floating-social img {
  width: 64%;
  height: 64%;
  object-fit: contain;
  
}

.floating-social span {
  display: block;
}

.floating-social .kakao {
  background: #fee500;
}

.floating-social .blog {
  background: #fff;
}

.floating-social .insta {
  color: #fff;
  font-size: 1.7rem;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.floating-social .shopping {
  color: var(--ink);
  background: #fffdf8;
}

.floating-social .youtube {
  background: #fff;
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 0;
  }

  .hero,
  .practice,
  .quote-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 84px;
  }

  .hero p {
    margin-left: 0;
  }

  .grid-band {
    /* grid-template-columns: 260px 1fr; */
  }

  .cycle-panel {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .bottom-cta {
    grid-template-columns: 1fr;
  }

  .bottom-cta article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .story-step,
  .story-step:nth-child(even) {
    font-family: var(--serif);
    grid-template-columns: 90px 1fr;
    margin-left: 0;
  }

  .story-step h2 {
    font-family: var(--serif);
  }
  
  .story-step p {
    font-family: var(--serif);
    margin-top: 40px;
  }

  .quote-content {
    min-height: 58vh;
  }

  .quote-image {
    min-height: 52vh;
  }

  .wide-image {
    position: relative;
    top: auto;
  }

  .practice-image {
    height: 106%;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 62px;
    padding: 0 22px;
  }

  .brand {
    gap: 12px;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    background: rgba(255, 253, 248, 0.54);
    border: 1px solid rgba(24, 23, 19, 0.2);
  }

  .menu-toggle span {
    height: 1px;
    background: var(--ink);
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    display: flex;
    width: min(360px, 88vw);
    height: 100svh;
    padding: 92px 26px 28px;
    background: rgba(255, 253, 248, 0.97);
    border-bottom: 0;
    transform: translateX(100%);
  }

  .site-header.is-open .nav-links {
    transform: translateX(0);
  }

  .sidebar-nav a {
    padding: 18px 0;
    font-size: clamp(1.55rem, 8vw, 2.45rem);
  }

  .sidebar-social a {
    width: 42px;
    height: 42px;
  }

  .section-shell,
  .grid-band,
  .bottom-cta {
    width: 100%;
  }

  .hero {
    gap: 30px;
    min-height: 100vh;
    min-height: 100svh;
    padding: 92px 24px 96px;
  }

  .hero h1 {
    font-size: 20px;
    line-height: 1.04;
  }

  .hero-media {
    inset: -4vh 0;
    height: auto;
    min-height: 0;
  }

  .practice-video-section {
    min-height: 96svh;
  }

  .hero p {
    margin-left: 0;
    font-size: 0.92rem;
  }

  .grid-band {
    margin-top: 54px;
    min-height: auto;
  }

  .intro {
    grid-template-columns: 1fr;
    background:
      radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.58), transparent 18rem),
      linear-gradient(180deg, rgba(255, 253, 248, 0.42), rgba(246, 242, 234, 0.36));
  }

  .grid-band,
  .cycle-items,
  .bottom-cta article:first-child {
    grid-template-columns: 1fr;
  }

  .portrait,
  .intro-text,
  .cycle-panel {
    padding: 22px 0;
    border-left: 0;
  }

  .intro-text {
    padding: 52px 24px 72px;
    overflow: hidden;
  }

  .intro .section-title {
    display: grid;
    gap: 18px;
    max-width: 100%;
    margin-bottom: 28px;
  }

  .intro .section-title h2 {
    min-width: 0;
    max-width: 100%;
    font-size: 25px;
    line-height: 1.14;
    overflow-wrap: anywhere;
    word-break: keep-all;
  }

  .intro .section-title span {
    width: 72px;
  }

  .portrait {
    order: 1;
    min-height: auto;
    display: flex;
    justify-content: center;
    padding: 30px 24px 0;
  }

  .intro-text {
    order: 2;
  }

  .portrait img {
    width: min(54vw, 280px);
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }

  .intro-text,
  .cycle-panel {
    border-top: 0;
  }

  .intro .intro-text p strong {
    font-family: var(--sans) !important;
  }

  .intro .portrait {
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .cycle-panel h2 {
    text-align: left;
  }

  .cycle-items div {
    min-height: 0;
    padding: 22px 0;
    text-align: left;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .practice-row {
    grid-template-columns: 52px 1fr;
    row-gap: 4px;
  }

  .practice-row .summary {
    grid-column: 2;
  }

  .quote-band {
    min-height: 0;
    padding: 0;
  }

  .quote-content {
    min-height: 0;
    padding: 72px 24px 68px;
  }

  .quote-content small {
    margin-bottom: 54px;
    font-size: 0.66rem;
  }

  .quote-band span {
    margin-top: 54px;
  }

  .quote-image {
    min-height: 440px;
  }

  .scroll-story {
    min-height: 2000px;
    padding: 0;
    background:
      url("assets/scroll-story-bg-mobile.png") center / cover scroll no-repeat;
  }

  .story-step,
  .story-step:nth-child(even) {
    min-height: 100svh;
    padding: 88px 22px;
  }

  .story-title {
    font-size: 35px;
    font-family: var(--serif);
  }

  .story-subtitle {
    font-size: 20px;
    font-family: var(--serif);
  }

  .story-step p {
    margin-top: 72px;
    font-size: 15px;
        font-family: var(--serif);

  }

  .practice {
    width: 100%;
    min-height: auto;
    padding: 74px 0 40px;
    transform: none;
  }

  .practice-list {
    padding: 0 30px 44px 30px;
  }

  .featured-projects {
    padding: 34px 16px 52px;
  }

  .featured-header {
    gap: 28px;
    padding: 56px 0 48px;
  }

  .featured-header a {
    justify-self: start;
  }

  .featured-track {
    grid-auto-columns: minmax(280px, 84vw);
    gap: 24px;
    padding-bottom: 54px;
  }

  .featured-card figure {
    margin-bottom: 24px;
  }

  .featured-meta {
    font-size: 1.05rem;
  }

  .featured-controls {
    justify-content: flex-end;
    margin-bottom: 56px;
  }

  .featured-controls button {
    min-width: 112px;
    padding: 0 20px;
  }

  .bottom-cta article {
    min-height: 0;
    padding: 28px 0;
  }

  .bottom-cta {
    min-height: 0;
  }

  .diy-section {
    padding: 52px 24px;
  }

  .diy-content {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: 0;
  }

  .diy-content .botanical-mark {
    display: none;
  }

  .contact-section,
  .map-section {
    grid-template-columns: 1fr;
  }

  .contact-section {
    min-height: 0;
  }

  .contact-section article {
    padding: 54px 24px;
  }

  .contact-section article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .contact-section .phone {
    font-size: clamp(1.5rem, 2.6vw, 1.5rem);
  }

  .map-section {
    padding: 64px 24px;
  }

  .naver-map {
    min-height: 420px;
    border-radius: 16px;
  }

  .site-footer {
    min-height: 0;
    padding: 54px 24px 130px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-links h2 {
    margin-bottom: 22px;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-social img {
    border-radius: 100px;
  }

  .footer-info {
    margin-top: 10px;
    padding-top: 32px;
  }

  .footer-actions {
    right: 22px;
    bottom: 22px;
    gap: 14px;
  }

  .footer-actions a {
    width: 48px;
    height: 48px;
    font-size: 1.65rem;
  }

  .kakao-floating {
    right: 16px;
    bottom: max(26px, calc(env(safe-area-inset-bottom) + 26px));
    width: 50px;
    height: 50px;
  }

  .botanical-mark {
    display: none;
  }

  .bottom-cta a {
    justify-self: start;
    margin-top: 22px;
  }

  .floating-social {
    right: 14px;
    bottom: 14px;
    gap: 8px;
  }

  .floating-social a {
    width: 44px;
    height: 44px;
    font-size: 0.58rem;
  }

  .floating-social .insta {
    font-size: 1.35rem;
  }
}

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

  .practice-image {
    transform: none;
    transition: none;
  }

  .reveal-on-scroll,
  .reveal-on-scroll.is-visible,
  .hero-media,
  .practice {
    transition: none;
    transform: none;
    width: 100%;
  }
}
