@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,400&family=Noto+Serif+KR:wght@200;300;400;500;600&family=Noto+Sans+KR:wght@300;400;500&display=swap');

/* ── Variables ─────────────────────────────────────────── */
:root {
  --bg:          #FAFAF9;
  --bg-alt:      #FFFFFF;
  --text:        #292524;
  --text-lt:     #78716C;
  --text-muted:  #A8A29E;
  --berry:       #500724;
  --berry-mid:   #831843;
  --berry-light: #FDF2F8;
  --stone-200:   #E7E5E4;
  --stone-300:   #D6D3D1;
  --stone-700:   #44403C;
  --stone-800:   #292524;
  --stone-900:   #1C1917;
  --font-serif:  'Noto Serif KR', 'Cormorant Garamond', serif;
  --font-eng:    'Cormorant Garamond', serif;
  --font-sans:   'Noto Sans KR', system-ui, sans-serif;
  --max-w:       1280px;
  --header-h:    80px;
  --radius:      4px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
  overflow-wrap: break-word;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Grain ──────────────────────────────────────────────── */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .18;
  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='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .4s, border-color .4s, box-shadow .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: var(--stone-200);
  box-shadow: 0 1px 20px rgba(0,0,0,.05);
}
.header-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-serif);
  color: #fff;
  transition: color .2s;
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.logo-main {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: .1em;
}
.logo-sub {
  font-size: .5rem;
  font-weight: 400;
  letter-spacing: .2em;
  color: #aaa;
  font-family: var(--font-sans);
}
.site-header.scrolled .logo-sub { color: #888; }
.site-header.scrolled .logo { color: var(--berry); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.site-nav a {
  font-family: var(--font-sans);
  font-size: .8125rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  transition: color .2s;
}
.site-header.scrolled .site-nav a { color: var(--stone-700); }
.site-nav a:hover,
.site-header.scrolled .site-nav a:hover { color: var(--berry); }
.nav-cta {
  border: 1px solid rgba(255,255,255,.45) !important;
  padding: .5rem 1.25rem !important;
  border-radius: 100px !important;
  color: rgba(255,255,255,.9) !important;
  transition: all .25s !important;
}
.site-header.scrolled .nav-cta {
  border-color: var(--berry) !important;
  color: var(--berry) !important;
}
.nav-cta:hover,
.site-header.scrolled .nav-cta:hover {
  background: var(--berry) !important;
  border-color: var(--berry) !important;
  color: #fff !important;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: all .3s;
}
.site-header.scrolled .hamburger span { background: var(--text); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0;
  background: #fff;
  z-index: 99;
  flex-direction: column;
  padding: 3rem 2rem;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: .04em;
  border-bottom: 1px solid var(--stone-200);
  padding: 1.25rem 0;
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: #0d0a08;
}

/* Slides */
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2s cubic-bezier(.4,0,.2,1);
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  filter: saturate(1.3) brightness(1.08);
}
/* Ken Burns — 3 variants */
.hero-slide:nth-child(1) img { animation: kb1 9s ease-in-out forwards; }
.hero-slide:nth-child(2) img { animation: kb2 9s ease-in-out forwards; }
.hero-slide:nth-child(3) img { animation: kb3 9s ease-in-out forwards; }

@keyframes kb1 {
  0%   { transform: scale(1.0)  translate(0%,   0%); }
  100% { transform: scale(1.14) translate(-2.5%, -1%); }
}
@keyframes kb2 {
  0%   { transform: scale(1.12) translate(2%,  1%); }
  100% { transform: scale(1.0)  translate(-0.5%, 0%); }
}
@keyframes kb3 {
  0%   { transform: scale(1.06) translate(-1%,  2%); }
  100% { transform: scale(1.16) translate(1%,  -1.5%); }
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: none;
}

/* Vignette frame */
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Content — anchored to bottom-left */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 4rem 5.5rem;
  align-self: flex-end;
}

/* Text entrance */
@keyframes hero-in {
  from { opacity: 0; transform: translateY(32px); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}
.hero-anim {
  opacity: 0;
  animation: hero-in .9s cubic-bezier(.22,1,.36,1) var(--hd, 0s) both;
}

.hero-en {
  font-family: var(--font-eng);
  font-size: .9375rem;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  font-style: italic;
  margin-bottom: 1.75rem;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8.5vw, 8rem);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -.01em;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 32px rgba(0,0,0,.5), 0 1px 4px rgba(0,0,0,.6);
}
.hero-sub {
  font-size: .9375rem;
  font-weight: 300;
  color: rgba(255,255,255,.72);
  letter-spacing: .04em;
  max-width: 460px;
  margin: 0 0 2.5rem;
  line-height: 2;
}
.btn-hero {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.4);
  color: rgba(255,255,255,.9);
  padding: 1rem 3rem;
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: background .3s, border-color .3s, color .3s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.btn-hero:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.85);
  color: #fff;
}

/* Slide indicator dots */
.hero-dots {
  position: absolute;
  bottom: 3rem;
  right: 4rem;
  z-index: 3;
  display: flex;
  gap: .5rem;
  align-items: center;
}
.hero-dot {
  display: block;
  height: 2px;
  width: 20px;
  background: rgba(255,255,255,.28);
  transition: width .5s cubic-bezier(.4,0,.2,1), background .5s;
  border-radius: 2px;
}
.hero-dot.is-active {
  width: 44px;
  background: rgba(255,255,255,.82);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.35);
  font-size: .5625rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.scroll-hint svg { animation: sh-bounce 2.2s ease-in-out infinite; }
@keyframes sh-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ── Image placeholder ──────────────────────────────────── */
.img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--stone-300);
}
.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.5s ease;
}
.img-wrap:hover img { transform: scale(1.04); }
.img-wrap.ph-active {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.img-wrap.ph-active::after {
  content: attr(data-ph);
  position: absolute;
  color: var(--text-muted);
  font-size: .8125rem;
  letter-spacing: .06em;
  font-family: var(--font-sans);
}

/* ── About ──────────────────────────────────────────────── */
.about { padding: 8rem 0; }
.about-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 6rem;
  align-items: center;
}
.section-eyebrow {
  font-family: var(--font-eng);
  font-size: .875rem;
  letter-spacing: .2em;
  color: var(--berry-mid);
  font-style: italic;
  border-left: 2px solid var(--berry-mid);
  padding-left: .875rem;
  margin-bottom: 1.5rem;
}
.about h2,
.section-h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.625rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 1.75rem;
}
.about p {
  font-weight: 300;
  color: var(--stone-700);
  line-height: 1.9;
  font-size: .9375rem;
  margin-bottom: 1.25rem;
}
.tag-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }
.tag {
  border: 1px solid var(--stone-200);
  padding: .375rem .875rem;
  font-size: .8125rem;
  color: var(--stone-700);
  letter-spacing: .03em;
  border-radius: 100px;
}
.about-img {
  aspect-ratio: 3/4;
}


/* ── Spaces ─────────────────────────────────────────────── */
.spaces {
  padding: 6rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--stone-200);
}
.section-header { text-align: center; margin-bottom: 5rem; }
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--stone-900);
  margin-bottom: .625rem;
}
.section-header p {
  font-size: .9375rem;
  font-weight: 300;
  color: var(--text-lt);
  letter-spacing: .05em;
}
.spaces-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem 4rem;
}
.space-item:nth-child(even) { margin-top: 4rem; }
.space-img { aspect-ratio: 1; margin-bottom: 2rem; }
.space-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--stone-200);
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
  gap: 1rem;
}
.space-meta h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--stone-900);
}
.space-en {
  font-family: var(--font-eng);
  font-size: .9375rem;
  color: var(--text-muted);
  font-style: italic;
  flex-shrink: 0;
}
.space-desc {
  font-weight: 300;
  color: var(--stone-700);
  font-size: .9375rem;
  line-height: 1.85;
}
.space-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: .8125rem;
  letter-spacing: .1em;
  color: var(--berry-mid);
  border-bottom: 1px solid currentColor;
  padding-bottom: .125rem;
  transition: color .2s;
}
.space-link:hover { color: var(--berry); }


/* ── Video ──────────────────────────────────────────────── */
.video-section {
  padding: 6rem 0;
  background: var(--bg);
  border-top: 1px solid var(--stone-200);
}
.video-wrap {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(0,0,0,.1);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 480px) {
  .video-section { padding: 3.5rem 0; }
}

/* ── CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  padding: 8rem 2rem;
  background: var(--berry);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .15;
  mix-blend-mode: overlay;
}
.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.55;
  margin-bottom: 2.25rem;
  position: relative;
  z-index: 1;
}
.btn-outline-white {
  position: relative;
  z-index: 1;
  display: inline-block;
  border: 1px solid rgba(255,255,255,.45);
  color: rgba(255,255,255,.9);
  padding: 1rem 3rem;
  font-size: .8125rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 400;
  transition: all .3s;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.9);
}

/* ── Information ─────────────────────────────────────────── */
.info-section { padding: 6rem 0; }
.info-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.info-section .section-h2 { margin-bottom: 3rem; }
.info-group { margin-bottom: 2.5rem; }
.info-label {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--stone-900);
  border-bottom: 1px solid var(--stone-200);
  padding-bottom: .375rem;
  margin-bottom: .875rem;
  display: block;
}
.info-body {
  font-weight: 300;
  color: var(--stone-700);
  font-size: .9375rem;
  line-height: 1.85;
}
.info-note {
  font-size: .8125rem;
  color: var(--text-muted);
  margin-top: .25rem;
}
.map-box {
  aspect-ratio: 4/3;
  background: var(--stone-300);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-box iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-ph {
  text-align: center;
  padding: 2rem;
  z-index: 1;
}
.map-ph svg { width: 2.5rem; height: 2.5rem; margin: 0 auto 1rem; color: var(--berry-mid); }
.map-ph p { font-size: .9375rem; color: var(--stone-700); line-height: 1.65; }
.map-btn {
  display: inline-block;
  margin-top: 1.25rem;
  border: 1px solid var(--stone-300);
  padding: .625rem 1.5rem;
  font-size: .8125rem;
  letter-spacing: .1em;
  transition: all .25s;
  color: var(--stone-700);
}
.map-btn:hover { background: var(--stone-900); color: #fff; border-color: var(--stone-900); }
.map-btn--google { border-color: #4285f4; color: #4285f4; }
.map-btn--google:hover { background: #4285f4; color: #fff; border-color: #4285f4; }
.map-embed-wrap {
  margin-top: 3rem;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--stone-200);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

/* ── Page hero (inner pages) ────────────────────────────── */
.page-hero {
  padding: calc(var(--header-h) + 5rem) 2rem 5rem;
  background: var(--stone-900);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
}
.page-hero-overlay { position: absolute; inset: 0; background: rgba(28,25,23,.5); }
.page-hero-content { position: relative; z-index: 1; }
.page-hero-en {
  font-family: var(--font-eng);
  font-size: .9375rem;
  letter-spacing: .35em;
  color: rgba(255,255,255,.6);
  font-style: italic;
  margin-bottom: 1.25rem;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 300;
  color: #fff;
  letter-spacing: .03em;
  margin-bottom: 1rem;
}
.page-hero .page-hero-sub {
  font-size: .9375rem;
  font-weight: 300;
  color: rgba(255,255,255,.65);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.9;
}

/* ── Inner page content ──────────────────────────────────── */
.inner-section { padding: 6rem 0; }
.inner-section:nth-child(even) { background: var(--bg-alt); }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.two-col-img { aspect-ratio: 4/3; }
@media (min-width: 769px) {
  .two-col--rev > *:first-child { order: 2; }
  .two-col--rev > *:last-child  { order: 1; }
}
.inner-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 400;
  color: var(--stone-900);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
.inner-section p {
  font-weight: 300;
  color: var(--stone-700);
  line-height: 1.9;
  font-size: .9375rem;
  margin-bottom: 1.25rem;
}
.feature-list { margin-top: 1.5rem; }
.feature-list li {
  display: flex;
  gap: .875rem;
  padding: .875rem 0;
  border-bottom: 1px solid var(--stone-200);
  font-size: .9375rem;
  color: var(--stone-700);
  font-weight: 300;
  align-items: baseline;
}
.feature-list li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--berry-mid);
  flex-shrink: 0;
  margin-top: .55rem;
}

/* ── Consultation page ───────────────────────────────────── */
.consult-wrap {
  padding: calc(var(--header-h) + 4rem) 2rem 6rem;
}
.consult-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
}
.consult-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.35;
  margin-bottom: 1.5rem;
}
.consult-desc {
  font-weight: 300;
  color: var(--stone-700);
  line-height: 1.9;
  font-size: .9375rem;
  margin-bottom: 2rem;
}
.contact-list { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item .c-label {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .375rem;
  display: block;
}
.contact-item .c-val {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--stone-900);
}
.contact-item .c-val a {
  color: var(--berry);
  transition: color .2s;
}
.contact-item .c-val a:hover { color: var(--berry-mid); }
.contact-item .c-note {
  font-size: .8125rem;
  color: var(--text-muted);
  margin-top: .25rem;
}
.c-insta-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--berry);
  transition: color .2s;
}
.c-insta-link:hover { color: var(--berry-mid); }
.c-insta-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.hours-item {
  border: 1px solid var(--stone-200);
  padding: 1.5rem;
  border-radius: var(--radius);
}
.hours-item .h-label {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .5rem;
  display: block;
}
.hours-item .h-val {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--stone-800);
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer { background: var(--stone-900); color: #78716C; padding: 4rem 0 2rem; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: .08em;
  margin-bottom: 1rem;
  display: block;
}
.footer-brand p { font-size: .875rem; line-height: 1.8; font-weight: 300; }
.footer-insta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  font-size: .8125rem;
  color: #78716C;
  transition: color .2s;
}
.footer-insta:hover { color: #fff; }
.footer-col-title {
  color: #E7E5E4;
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-list { display: flex; flex-direction: column; gap: .625rem; font-size: .875rem; font-weight: 300; line-height: 1.7; }
.footer-list a { color: #78716C; transition: color .2s; }
.footer-list a:hover { color: #fff; }
.footer-list .lbl {
  display: inline-block;
  min-width: 4.5rem;
  font-size: .75rem;
  color: #57534E;
}
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-copy { font-size: .8125rem; color: #57534E; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .8125rem; color: #78716C; transition: color .2s; }
.footer-legal a:hover { color: #E7E5E4; }

/* ── Legal pages ─────────────────────────────────────────── */
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 4rem) 2rem 6rem;
}
.legal-wrap h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 2.5rem;
}
.legal-wrap h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin: 2.5rem 0 1rem;
  color: var(--stone-900);
}
.legal-wrap p,
.legal-wrap li {
  font-weight: 300;
  color: var(--stone-700);
  line-height: 1.9;
  font-size: .9375rem;
  margin-bottom: .75rem;
}
.legal-wrap ul { padding-left: 1.25rem; list-style: disc; }

/* ── Selective line-break helpers ───────────────────────── */
/* br.pc : 데스크톱에서만 줄바꿈 */
br.pc { display: block; }
@media (max-width: 768px) { br.pc { display: none; } }
/* br.mo : 모바일에서만 줄바꿈 */
br.mo { display: none; }
@media (max-width: 768px) { br.mo { display: block; } }

/* ── Reveal ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s cubic-bezier(.25,.46,.45,.94),
              transform 1.1s cubic-bezier(.25,.46,.45,.94);
}
.reveal.active { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .2s; }
.reveal-d2 { transition-delay: .4s; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-inner { gap: 4rem; }
  .spaces-grid { gap: 3rem 2.5rem; }
  .space-item:nth-child(even) { margin-top: 2.5rem; }
  .info-inner { gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  /* 네비 */
  .site-nav { display: none; }
  .hamburger { display: flex; }

  /* 레이아웃 단일 컬럼 */
  .about-inner        { grid-template-columns: 1fr; gap: 2.5rem; }
  .spaces-grid        { grid-template-columns: 1fr; gap: 3rem; }
  .info-inner         { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col            { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top         { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom      { flex-direction: column; align-items: flex-start; }
  .consult-inner      { grid-template-columns: 1fr; gap: 2.5rem; }
  .hours-grid         { grid-template-columns: 1fr; }

  /* 스페이스 카드 짝수 offset 제거 */
  .space-item:nth-child(even) { margin-top: 0; }

  /* space-meta: 영문 레이블 숨김, flex-wrap 허용 */
  .space-en { display: none; }
  .space-meta { flex-wrap: wrap; }
  .space-meta h3 { font-size: 1.125rem; }

  /* 섹션 헤더 여백 축소 */
  .section-header { margin-bottom: 2.75rem; }

  /* hero — 모바일 중앙 정렬, 하단 앵커 */
  .hero h1 { letter-spacing: 0; }
  .hero-content { text-align: center; padding: 0 1.5rem 5rem; }
  .hero-sub { margin: 0 auto 2.5rem; }
  .hero-dots { right: 1.5rem; bottom: 2rem; }
  .scroll-hint { display: none; }

  /* inner page */
  .inner-section { padding: 4rem 0; }
  .page-hero { padding: calc(var(--header-h) + 3rem) 1.25rem 3rem; }

  /* 푸터 레이블 너비 */
  .footer-list .lbl { min-width: 4rem; }

  /* 상담 페이지 */
  .consult-wrap { padding: calc(var(--header-h) + 2.5rem) 1.25rem 4rem; }
  .contact-item .c-val { font-size: 1.375rem; }

  /* 리빌 딜레이 제거 — 세로 스크롤에서 동시 노출이 자연스러움 */
  .reveal-d1,
  .reveal-d2 { transition-delay: 0s; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }

  /* 섹션 패딩 */
  .about        { padding: 4rem 0; }
  .spaces       { padding: 3.5rem 0; }
  .cta-banner   { padding: 4rem 1.25rem; }
  .info-section { padding: 3.5rem 0; }
  .inner-section { padding: 3rem 0; }

  /* 헤딩 폰트 */
  .space-meta h3 { font-size: 1rem; }
  .section-h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .cta-banner h2 { font-size: clamp(1.375rem, 5.5vw, 2rem); line-height: 1.6; }

  /* 버튼 터치 영역 */
  .btn-hero { padding: .875rem 2rem; font-size: .75rem; }
  .btn-outline-white { padding: .875rem 2rem; font-size: .75rem; }
  .map-btn { padding: .75rem 1.25rem; }

  /* 섹션 헤더 */
  .section-header { margin-bottom: 2rem; }
  .section-header p { font-size: .875rem; }

  /* 푸터 */
  .footer-top { gap: 1.75rem; padding-bottom: 2.5rem; }
  .footer-list { font-size: .8125rem; }
  .footer-list .lbl { min-width: 3.75rem; font-size: .6875rem; }
  .footer-copy { font-size: .75rem; }

  .hero-content { padding: 0 1.25rem 4.5rem; }
}


/* ── Berry grid (farm page) ─────────────────────────────── */
.berry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.berry-card { text-align: center; }
.berry-card-img {
  aspect-ratio: 1;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  overflow: hidden;
}
.berry-card h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--stone-900);
  margin-bottom: .5rem;
}
.berry-card p {
  font-size: .875rem;
  color: var(--stone-700);
  font-weight: 300;
  line-height: 1.7;
}

/* ── Photo grid (gallery) ───────────────────────────────── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.photo-grid-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--stone-200);
}
.photo-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  display: block;
}
.photo-grid-item:hover img { transform: scale(1.04); }

/* ── Program grid (experience page) ────────────────────── */
.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.program-card {
  border: 1px solid var(--stone-200);
  padding: 2.5rem;
  background: var(--bg-alt);
  transition: border-color .25s, box-shadow .25s;
}
.program-card:hover {
  border-color: var(--berry-mid);
  box-shadow: 0 4px 24px rgba(80,7,36,.07);
}
.program-num {
  font-family: var(--font-eng);
  font-size: 2.5rem;
  color: var(--stone-200);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1rem;
}
.program-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--stone-900);
  margin-bottom: 1rem;
}
.program-card p {
  font-size: .9rem;
  font-weight: 300;
  color: var(--stone-700);
  line-height: 1.85;
}
.program-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .375rem;
  margin-top: 1.25rem;
}
.program-tag {
  font-size: .75rem;
  padding: .25rem .75rem;
  background: var(--berry-light);
  color: var(--berry-mid);
  border-radius: 100px;
}

@media (max-width: 768px) {
  .berry-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .program-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 480px) {
  .berry-grid { gap: 1.25rem; }
  .photo-grid { gap: .5rem; }
  .program-card { padding: 1.75rem 1.5rem; }
}

/* ── Trust bar ──────────────────────────────────────────── */
.trust-bar { background: var(--stone-900); overflow: hidden; }
.trust-list {
  display: flex;
  align-items: stretch;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
}
.trust-list::-webkit-scrollbar { display: none; }
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .2rem;
  padding: 1.375rem 2.25rem;
  border-right: 1px solid rgba(255,255,255,.07);
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-item:last-child { border-right: none; }
.trust-n {
  font-family: var(--font-eng);
  font-size: 1.625rem;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  font-style: italic;
}
.trust-n sup { font-size: .65em; vertical-align: super; }
.trust-lbl {
  font-size: .6875rem;
  letter-spacing: .12em;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
}
.trust-item--check .trust-lbl {
  font-size: .8rem;
  letter-spacing: .04em;
  color: rgba(255,255,255,.6);
  text-transform: none;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.trust-item--check .trust-lbl::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--berry-mid);
  flex-shrink: 0;
}

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb-nav {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--stone-200);
  padding: .875rem 0;
}
.breadcrumb {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .375rem;
  font-size: .8rem;
  color: var(--text-muted);
}
.breadcrumb li { display: flex; align-items: center; gap: .375rem; }
.breadcrumb li + li::before { content: '›'; color: var(--stone-300); }
.breadcrumb a { color: var(--text-muted); transition: color .15s; }
.breadcrumb a:hover { color: var(--berry-mid); }
.breadcrumb [aria-current="page"] { color: var(--stone-700); }

/* ── Greeting / E-E-A-T 섹션 ────────────────────────────── */
.greeting-section {
  padding: 7rem 0;
  background: var(--stone-900);
  color: #fff;
}
.greeting-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}
.greeting-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 300;
  line-height: 1.65;
  color: #fff;
  margin-bottom: 1.75rem;
  font-style: italic;
  border-left: 2px solid var(--berry-mid);
  padding-left: 1.5rem;
}
.greeting-body {
  font-size: .9375rem;
  font-weight: 300;
  color: rgba(255,255,255,.65);
  line-height: 1.95;
  margin-bottom: 2.5rem;
}
.greeting-sig {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.greeting-sig span {
  font-size: .6875rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.greeting-sig strong {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: .08em;
}
.cert-heading {
  font-size: .6875rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 2rem;
  display: block;
}
.cert-list { list-style: none; }
.cert-list li {
  display: flex;
  gap: 1.125rem;
  padding: 1.375rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  align-items: flex-start;
}
.cert-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--berry-mid);
  flex-shrink: 0;
  margin-top: .5rem;
}
.cert-list strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 400;
  color: rgba(255,255,255,.9);
  margin-bottom: .3rem;
  line-height: 1.4;
}
.cert-list p {
  font-size: .8125rem;
  color: rgba(255,255,255,.38);
  font-weight: 300;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .greeting-section { padding: 4.5rem 0; }
  .greeting-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .trust-item { padding: 1.125rem 1.5rem; }
}
@media (max-width: 480px) {
  .trust-item { padding: 1rem 1.25rem; }
  .trust-n { font-size: 1.375rem; }
}

/* ════════════════════════════════════════════════════════
   RICH ANIMATION LAYER
   ════════════════════════════════════════════════════════ */

/* ── Read progress bar ─────────────────────────────────── */
#read-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--berry) 0%, #be185d 60%, var(--berry-mid) 100%);
  z-index: 10000;
  pointer-events: none;
  transition: width .08s linear;
}

/* ── Directional reveal variants ───────────────────────── */
.reveal-left {
  opacity: 0;
  transform: translateX(-44px);
  transition: opacity 1s cubic-bezier(.25,.46,.45,.94),
              transform 1s cubic-bezier(.25,.46,.45,.94);
}
.reveal-right {
  opacity: 0;
  transform: translateX(44px);
  transition: opacity 1s cubic-bezier(.25,.46,.45,.94),
              transform 1s cubic-bezier(.25,.46,.45,.94);
}
.reveal-left.active,
.reveal-right.active { opacity: 1; transform: none; }

/* after reveal completes, hover lift works with fast transition */
.reveal-left.space-item.active,
.reveal-right.space-item.active {
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
}
.reveal-left.space-item.active:hover,
.reveal-right.space-item.active:hover { transform: translateY(-6px); }

/* ── Word-split animation ──────────────────────────────── */
.wsw {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: .1em;
  margin-bottom: -.1em;
}
.wsi {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform .85s cubic-bezier(.22,1,.36,1),
              opacity   .55s ease;
}
.wsi.active { transform: translateY(0); opacity: 1; }

/* ── Tag entrance ──────────────────────────────────────── */
.tag {
  opacity: 0;
  transform: translateY(8px) scale(.95);
  transition: opacity .45s ease, transform .45s ease,
              border-color .2s, background .2s, color .2s;
}
.tag.tag-visible { opacity: 1; transform: none; }
.tag:hover {
  border-color: var(--berry-mid);
  color: var(--berry-mid);
  background: var(--berry-light);
}

/* ── Section header decorative line ───────────────────── */
.section-header h2::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: var(--stone-300);
  margin: 1.25rem auto 0;
  transition: width 1.2s cubic-bezier(.25,.46,.45,.94) .4s;
}
.section-header.active h2::after { width: 72px; }

/* ── Eyebrow slide-in ──────────────────────────────────── */
.reveal.active .section-eyebrow,
.reveal-left.active .section-eyebrow,
.reveal-right.active .section-eyebrow {
  animation: eyebrow-in .55s cubic-bezier(.22,1,.36,1) both;
}
@keyframes eyebrow-in {
  from { opacity: 0; transform: translateX(-10px); }
  to   { opacity: 1; transform: none; }
}

/* ── Info groups stagger ───────────────────────────────── */
.reveal.active .info-group:nth-child(1) { animation: fade-up .7s ease .08s both; }
.reveal.active .info-group:nth-child(2) { animation: fade-up .7s ease .22s both; }
.reveal.active .info-group:nth-child(3) { animation: fade-up .7s ease .38s both; }
@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

/* ── CTA banner ambient orbs ───────────────────────────── */
.cta-banner::before,
.cta-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 65%);
}
.cta-banner::before {
  width: 520px; height: 520px;
  top: -160px; left: -130px;
  animation: orb-drift 14s ease-in-out infinite;
}
.cta-banner::after {
  width: 640px; height: 640px;
  bottom: -220px; right: -160px;
  animation: orb-drift 18s ease-in-out infinite reverse;
}
@keyframes orb-drift {
  0%, 100% { transform: translate(0,    0)    scale(1);    }
  33%       { transform: translate(38px,-22px) scale(1.06); }
  66%       { transform: translate(-24px,16px) scale(.95);  }
}
.cta-banner h2,
.cta-banner a { position: relative; z-index: 1; }

/* ── Parallax clip ─────────────────────────────────────── */
.cta-banner-bg { will-change: transform; }

/* ── Space link shimmer ────────────────────────────────── */
.space-link {
  position: relative;
  border-bottom: none;
  overflow: hidden;
}
.space-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--berry);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.space-link:hover::after { transform: scaleX(1); }

/* ── Reduced motion ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  #read-progress,
  .wsi, .tag, .cta-banner::before, .cta-banner::after {
    transition: none !important;
    animation: none !important;
  }
  .reveal-left, .reveal-right { opacity: 1; transform: none; }
  .wsi  { opacity: 1; transform: none; }
  .tag  { opacity: 1; transform: none; }
}

/* ── Mobile tweaks ─────────────────────────────────────── */
@media (max-width: 768px) {
  .reveal-left  { transform: translateX(-20px); }
  .reveal-right { transform: translateX(20px); }
  .wsi { transition-duration: .65s; }
  .cta-banner::before,
  .cta-banner::after { display: none; }
}

/* ── Reviews ─────────────────────────────────────────────── */
.review-section { padding: 6rem 0; background: var(--bg); }
.review-summary {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .5rem;
  margin: 1.25rem 0 1rem;
}
.review-score {
  font-family: var(--font-eng);
  font-size: 3.25rem;
  font-weight: 300;
  color: var(--berry);
  line-height: 1;
}
.review-divider { font-size: 1.5rem; color: var(--stone-300); line-height: 1; }
.review-max {
  font-family: var(--font-eng);
  font-size: 1.375rem;
  font-weight: 300;
  color: var(--stone-300);
  line-height: 1;
}
.review-count { font-size: .875rem; color: var(--text-muted); font-weight: 300; }
.review-keywords {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin: .75rem auto 3rem;
  max-width: 640px;
}
.review-kw {
  font-size: .75rem;
  padding: .3rem .875rem;
  border: 1px solid var(--stone-200);
  color: var(--stone-700);
  border-radius: 100px;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  border: 1px solid var(--stone-200);
  padding: 1.75rem 2rem;
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
}
.review-text {
  font-size: .9375rem;
  color: var(--stone-700);
  line-height: 1.85;
  font-weight: 300;
  flex: 1;
  margin-bottom: 1.25rem;
}
.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.125rem;
  border-top: 1px solid var(--stone-200);
  margin-bottom: .75rem;
}
.review-author { font-size: .875rem; font-weight: 400; color: var(--stone-900); }
.review-date { font-size: .8125rem; color: var(--text-muted); }
.review-tags { display: flex; flex-wrap: wrap; gap: .375rem; }
.review-tags span {
  font-size: .6875rem;
  padding: .2rem .625rem;
  background: var(--berry-light);
  color: var(--berry-mid);
  border-radius: 100px;
}
.review-more { text-align: center; margin-top: 3rem; }
.btn-outline-berry {
  display: inline-block;
  border: 1px solid var(--berry-mid);
  color: var(--berry-mid);
  padding: .875rem 2.5rem;
  font-size: .8125rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 400;
  transition: all .3s;
}
.btn-outline-berry:hover { background: var(--berry); color: #fff; border-color: var(--berry); }
@media (max-width: 1024px) { .review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .review-grid { grid-template-columns: 1fr; }
  .review-section { padding: 4rem 0; }
  .review-card:nth-child(n+4) { display: none; }
}
