/* ============================================
   Zionsberg — Design System
   Waabi-inspired: cinematic, bold, generous
   ============================================ */

/* ---------- Custom Properties ---------- */
:root {
  /* Core palette - Waabi inspired */
  --c-dark:      #000000;
  --c-dark-2:    #111111;
  --c-dark-3:    #222222;
  --c-bg:        #ffffff;
  --c-surface:   #F9F9F9;
  --c-surface-2: #EEEEEE;

  /* Brand */
  --c-primary:   #FF3366;   /* Waabi pink/magenta */
  --c-primary-d: #E62E5C;
  --c-accent:    #000000;
  --c-accent-d:  #111111;

  /* Text */
  --c-text:      #000000;
  --c-text-inv:  #ffffff;
  --c-muted:     #666666;
  --c-muted-inv: rgba(255,255,255,0.6);

  /* Borders */
  --c-border:    rgba(0,0,0,0.1);
  --c-border-inv:rgba(255,255,255,0.1);

  /* Typography */
  --f-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --f-sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* Sizing */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 32px;
  --radius-full: 100px;

  /* Shadow */
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);

  /* Spacing unit */
  --space: 1rem;

  /* Transitions */
  --t-fast: 0.2s cubic-bezier(.25,.1,.25,1);
  --t-mid:  0.4s cubic-bezier(.25,.1,.25,1);
  --t-slow: 0.6s cubic-bezier(.25,.1,.25,1);

  --max-w: 1440px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-sans);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { font-family: inherit; }

/* ---------- Typography Scale ---------- */
.display {
  font-family: var(--f-serif);
  font-size: clamp(3.5rem, 10vw, 10rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
}
h1 {
  font-family: var(--f-serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
}
h2 {
  font-family: var(--f-serif);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
h3 {
  font-family: var(--f-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h4 {
  font-family: var(--f-sans);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}
p { color: var(--c-muted); line-height: 1.7; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text);
}
.eyebrow.inv { color: var(--c-muted-inv); }

/* ---------- Layout ---------- */
.container {
  width: 90%;
  max-width: var(--max-w);
  margin-inline: auto;
}
.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  border-radius: var(--radius-full);
  font-family: var(--f-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--t-fast);
  white-space: nowrap;
}
.btn:hover  { transform: scale(1.03); }
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
}
.btn-primary:hover {
  background: var(--c-primary-d);
  border-color: var(--c-primary-d);
}

.btn-dark {
  background: var(--c-dark);
  color: var(--c-text-inv);
  border-color: var(--c-dark);
}
.btn-dark:hover {
  background: var(--c-dark-2);
}

.btn-ghost {
  background: transparent;
  color: var(--c-text-inv);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,1);
}

.btn-outline-dark {
  background: transparent;
  color: var(--c-text);
  border-color: rgba(0,0,0,0.2);
}
.btn-outline-dark:hover {
  background: var(--c-text);
  color: var(--c-text-inv);
  border-color: var(--c-text);
}

.btn-accent {
  background: var(--c-accent);
  color: #fff;
  border-color: var(--c-accent);
}
.btn-accent:hover {
  background: var(--c-accent-d);
  border-color: var(--c-accent-d);
  box-shadow: 0 8px 24px rgba(107,140,107,0.35);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 4%;
  transition: background var(--t-mid), border-color var(--t-mid), box-shadow var(--t-mid);
}

.site-header.at-top {
  background: transparent;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(254,252,248,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
}
.site-header.dark-page.at-top {
  background: transparent;
  border-bottom: 1px solid transparent;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  transition: opacity var(--t-fast);
}
.nav-logo:hover { opacity: 0.7; }
.nav-logo .logo-en {
  font-family: var(--f-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-primary);
  letter-spacing: -0.01em;
}
.nav-logo .logo-ko {
  font-size: 0.65rem;
  color: var(--c-muted);
  letter-spacing: 0.08em;
}

/* Dark-page logo (hero top) */
.site-header.at-top .logo-en  { color: #fff; }
.site-header.at-top .logo-ko  { color: rgba(255,255,255,0.5); }
.site-header.at-top .nav-links a { color: rgba(255,255,255,0.85); }
.site-header.at-top .nav-links a::after { background: #fff; }
.site-header.at-top .btn-nav-cta {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.site-header.at-top .btn-nav-cta:hover {
  background: rgba(255,255,255,0.1);
}
.site-header.at-top .hamburger span { background: #fff; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--t-fast);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1.5px;
  background: var(--c-primary);
  transition: width var(--t-mid);
}
.nav-links a:hover { color: var(--c-primary); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--c-primary); }

.btn-nav-cta {
  padding: 0.6rem 1.4rem;
  font-size: 0.82rem;
  border-radius: 100px;
  background: transparent;
  border: 1.5px solid rgba(28,24,20,0.25);
  color: var(--c-text);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.btn-nav-cta:hover {
  background: var(--c-text);
  color: var(--c-text-inv);
  border-color: var(--c-text);
  transform: none;
  box-shadow: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-md);
  transition: background var(--t-fast);
}
.hamburger:hover { background: rgba(28,24,20,0.05); }
.hamburger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform var(--t-mid), opacity var(--t-fast), background var(--t-fast);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--c-surface);
  padding: 2rem 5%;
  flex-direction: column;
  z-index: 99;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity var(--t-mid), transform var(--t-mid);
}
.mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-nav a {
  font-size: 1.5rem;
  font-family: var(--f-serif);
  font-weight: 600;
  color: var(--c-text);
  padding: 1rem 0;
  border-bottom: 1px solid var(--c-border);
  transition: color var(--t-fast);
}
.mobile-nav a:hover { color: var(--c-primary); }
.mobile-nav .mobile-cta { margin-top: 1.5rem; border: none; padding: 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--c-dark);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28,24,20,0.2) 0%,
    rgba(28,24,20,0.1) 30%,
    rgba(28,24,20,0.55) 70%,
    rgba(28,24,20,0.85) 100%
  );
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  background: linear-gradient(135deg, #3A2E22 0%, #2A2018 50%, #1C1814 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 4% 6rem;
  max-width: 1300px;
  margin-inline: auto;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 1.5rem;
}
.hero-eyebrow span { display: block; width: 20px; height: 1px; background: var(--c-primary); }

.hero h1 {
  color: var(--c-text-inv);
  font-size: clamp(2.8rem, 7.5vw, 7rem);
  letter-spacing: -0.03em;
  line-height: 0.97;
  margin-bottom: 2rem;
  max-width: 14ch;
}
.hero h1 em {
  font-style: italic;
  color: rgba(247,243,236,0.55);
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-desc {
  max-width: 380px;
  color: rgba(247,243,236,0.65);
  font-size: 0.95rem;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(247,243,236,0.35);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: heroScroll 2.5s ease-in-out infinite;
}
.hero-scroll-hint svg { width: 16px; height: 16px; }

@keyframes heroScroll {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.35; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 0.7; }
}

/* ---------- Marquee ---------- */
.marquee-wrap {
  overflow: hidden;
  background: var(--c-dark);
  border-top: 1px solid var(--c-border-inv);
  border-bottom: 1px solid var(--c-border-inv);
  padding: 1.2rem 0;
  user-select: none;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  font-family: var(--f-serif);
  font-size: 1rem;
  color: rgba(247,243,236,0.35);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.marquee-item .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--c-primary);
  opacity: 0.6;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Section Base ---------- */
.section { padding: 8rem 0; }
.section-sm { padding: 5rem 0; }
.section-dark {
  background: var(--c-dark);
  color: var(--c-text-inv);
}
.section-dark h1,
.section-dark h2,
.section-dark h3 { color: var(--c-text-inv); }
.section-dark p { color: var(--c-muted-inv); }
.section-warm { background: var(--c-surface-2); }

.section-header { margin-bottom: 4rem; }
.section-header.center { text-align: center; }
.section-header h2 { margin-top: 1rem; }
.section-header p   { margin-top: 1rem; max-width: 520px; }
.section-header.center p { margin-inline: auto; }

/* ---------- Overline Divider ---------- */
.rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--c-muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.rule::before, .rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--c-border);
}
.rule.inv::before, .rule.inv::after { background: var(--c-border-inv); }
.rule.inv { color: rgba(247,243,236,0.3); }

/* ---------- About Grid ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #D4C5B0 0%, #B5A898 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.about-img-float {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: var(--c-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
  text-align: center;
  padding: 1.5rem;
}
.about-img-float strong {
  font-family: var(--f-serif);
  font-size: 2.8rem;
  line-height: 1;
}
.about-img-float span { font-size: 0.75rem; opacity: 0.8; margin-top: 0.3rem; }

.about-text { }
.about-text h2 { margin: 1rem 0 1.5rem; }
.about-text p  { margin-bottom: 1rem; }

/* Member grid */
.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.member-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.1rem 0.75rem;
  text-align: center;
  cursor: default;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.member-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: var(--shadow-md);
  background: var(--c-surface-2);
}
.member-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  margin: 0 auto 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: var(--c-surface-2);
  border: 1.5px solid var(--c-border);
}
.member-card h4 { font-size: 0.78rem; margin-bottom: 0.15rem; }
.member-card p  { font-size: 0.68rem; }

/* ---------- Vision ---------- */
.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5px;
  background: var(--c-border-inv);
  border: 1.5px solid var(--c-border-inv);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.vision-item {
  background: var(--c-dark-2);
  padding: 3rem 2.5rem;
  transition: background var(--t-mid);
}
.vision-item:hover { background: var(--c-dark-3); }
.vision-icon {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}
.vision-item h3 { color: var(--c-text-inv); margin-bottom: 0.75rem; font-size: 1.2rem; }
.vision-item p  { color: rgba(247,243,236,0.55); font-size: 0.88rem; line-height: 1.7; }
.vision-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--c-primary);
  margin-bottom: 1rem;
}

/* ---------- Page Hero (inner) ---------- */
.page-hero {
  background: var(--c-dark);
  padding: 12rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(184,148,90,0.08) 0%, transparent 70%);
}
.page-hero h1 {
  color: var(--c-text-inv);
  margin: 1rem 0 1.5rem;
  max-width: 14ch;
}
.page-hero p { color: var(--c-muted-inv); font-size: 1rem; max-width: 480px; }
.page-hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 2rem; }

/* ---------- Stat Bar ---------- */
.stat-bar {
  display: flex;
  gap: 0;
}
.stat-item {
  flex: 1;
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--c-border);
  transition: background var(--t-fast);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--c-surface-2); }
.stat-num {
  font-family: var(--f-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--c-primary);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.82rem; color: var(--c-muted); font-weight: 500; }

/* ---------- Room Cards ---------- */
.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}
.room-card {
  background: var(--c-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--c-border);
  cursor: pointer;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.room-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-xl);
}
.room-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-slow);
}
.room-card:hover .room-thumb { transform: scale(1.04); }
.room-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,24,20,0.3), transparent 60%);
}
.room-num {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.7);
  background: rgba(28,24,20,0.4);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
.room-info { padding: 1.5rem; }
.room-info h3 { margin-bottom: 0.5rem; }
.room-meta {
  display: flex;
  gap: 1rem;
  margin: 0.6rem 0 1rem;
  flex-wrap: wrap;
}
.room-meta span { font-size: 0.78rem; color: var(--c-muted); display: flex; align-items: center; gap: 0.3rem; }
.room-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.tag {
  font-size: 0.7rem;
  padding: 0.22rem 0.65rem;
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: 100px;
  color: var(--c-muted);
  font-weight: 500;
}
.room-info p { font-size: 0.85rem; line-height: 1.65; }

/* ---------- Booking Form ---------- */
.booking-wrap {
  max-width: 760px;
  margin: 4rem auto 0;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: var(--shadow-lg);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-md);
  background: var(--c-bg);
  font-family: var(--f-sans);
  font-size: 0.93rem;
  color: var(--c-text);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(184,148,90,0.14);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-actions { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.85rem; }
.form-note { font-size: 0.78rem; color: var(--c-muted); line-height: 1.7; }

/* ---------- Program Cards ---------- */
.prog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
}
.prog-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: transform var(--t-mid), box-shadow var(--t-mid), background var(--t-fast);
}
.prog-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-lg);
  background: var(--c-surface-2);
}
.prog-card-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 0.75rem;
}
.prog-card h3 { margin-bottom: 0.6rem; }
.prog-card p  { font-size: 0.86rem; line-height: 1.7; }
.prog-card-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--c-primary);
  margin-top: 1rem;
}
.prog-card-status::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-primary);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}

/* Story block */
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: var(--c-surface);
}
.story-visual {
  background: linear-gradient(135deg, #C8D5C8 0%, #92AD92 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  min-height: 300px;
}
.story-body { padding: 3rem; }
.story-body h3 { margin: 0.75rem 0 1rem; }
.story-body p  { font-size: 0.88rem; margin-bottom: 0.75rem; }

/* Chapel */
.chapel-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.chapel-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.chapel-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #C8C0D8 0%, #A8A0C0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.chapel-body h2 { margin: 0.75rem 0 1.5rem; }
.chapel-body p  { margin-bottom: 0.85rem; font-size: 0.92rem; }
.chapel-times { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 0.65rem; }
.time-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--c-muted);
}
.time-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-accent);
  flex-shrink: 0;
}
.chapel-verse {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: rgba(107,140,107,0.08);
  border-left: 3px solid var(--c-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--c-muted);
  line-height: 1.7;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--c-dark);
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(184,148,90,0.12) 0%, transparent 65%);
}
.cta-banner h2 { color: var(--c-text-inv); margin: 1rem 0 1.5rem; position: relative; }
.cta-banner p  { color: var(--c-muted-inv); max-width: 440px; margin-inline: auto; font-size: 0.95rem; position: relative; }
.cta-actions { display: flex; gap: 0.75rem; justify-content: center; margin-top: 2.5rem; flex-wrap: wrap; position: relative; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-dark);
  color: rgba(247,243,236,0.6);
  padding: 5rem 0 2.5rem;
  border-top: 1px solid var(--c-border-inv);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-brand .logo-en {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  color: var(--c-text-inv);
  display: block;
  margin-bottom: 0.25rem;
}
.footer-brand .logo-ko {
  font-size: 0.65rem;
  color: rgba(247,243,236,0.3);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1.25rem;
}
.footer-brand p { font-size: 0.82rem; line-height: 1.85; color: rgba(247,243,236,0.45); }
.footer-col h5 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,243,236,0.3);
  margin-bottom: 1.1rem;
}
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(247,243,236,0.55);
  transition: color var(--t-fast);
}
.footer-col ul li a:hover { color: var(--c-text-inv); }
.footer-contact p {
  font-size: 0.83rem;
  color: rgba(247,243,236,0.45);
  margin-bottom: 0.65rem;
  line-height: 1.7;
}
.footer-contact a { color: rgba(247,243,236,0.55); transition: color var(--t-fast); }
.footer-contact a:hover { color: var(--c-text-inv); }
.footer-bottom {
  border-top: 1px solid var(--c-border-inv);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: rgba(247,243,236,0.25);
}
.footer-bottom a { color: rgba(247,243,236,0.4); transition: color var(--t-fast); }
.footer-bottom a:hover { color: var(--c-text-inv); }

/* ============================================
   WAABI-INSPIRED COMPONENTS
   ============================================ */

/* ---- Scattered Images ---- */
.scattered-images {
  position: relative;
  padding: 12rem 0;
  background: var(--c-bg);
  overflow: hidden;
}
.scatter-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.scatter-img {
  position: absolute;
  width: 180px;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  z-index: 1;
  transition: transform var(--t-slow);
}
.scatter-img:hover { transform: scale(1.05); }
.si-1 { top: -40px; left: -150px; background: #ddd; }
.si-2 { top: 60px; right: -180px; width: 220px; background: #ccc; }
.si-3 { bottom: -80px; left: -100px; width: 150px; background: #bbb; }
.si-4 { bottom: 20px; right: -120px; width: 140px; background: #aaa; }

/* ---- Bento Grid ---- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 300px;
  gap: 1.5rem;
  margin-top: 4rem;
}
.bento-item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  transition: all var(--t-mid);
}
.bento-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.bento-item.wide { grid-column: span 2; }
.bento-item.tall { grid-row: span 2; }

.bento-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff;
}
.bento-content h3 { color: #fff; font-size: 1.5rem; margin-bottom: 0.5rem; }
.bento-content p { color: rgba(255,255,255,0.7); font-size: 0.875rem; }

/* ---- Trusted By ---- */
.trusted-by {
  padding: 6rem 0;
  background: #fff;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.logo-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.5;
  filter: grayscale(1);
  flex-wrap: wrap;
  gap: 3rem;
}
.logo-grid span { font-family: var(--f-serif); font-weight: 700; font-size: 1.5rem; color: #000; }

/* ---- Insights Grid ---- */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.insight-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t-mid);
}
.insight-card:hover { transform: translateY(-5px); }
.insight-img { width: 100%; aspect-ratio: 16/10; background: #eee; }
.insight-body { padding: 1.5rem 0; }
.insight-tag { color: var(--c-primary); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; margin-bottom: 0.5rem; display: block; }
.insight-body h4 { font-size: 1.25rem; margin-bottom: 0.75rem; color: #000; line-height: 1.3; }

@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-item.wide, .bento-item.tall { grid-column: auto; grid-row: auto; aspect-ratio: 4/3; }
  .insights-grid { grid-template-columns: 1fr; }
  .scatter-img { display: none; }
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(.25,.1,.25,1),
              transform 0.65s cubic-bezier(.25,.1,.25,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-up { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-up.visible { opacity: 1; transform: translateY(0); }
.reveal-scale { opacity: 0; transform: scale(0.96); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ---------- Utilities ---------- */
.text-inv { color: var(--c-text-inv); }
.text-muted-inv { color: var(--c-muted-inv); }
.text-primary { color: var(--c-primary); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .about-grid  { gap: 3.5rem; }
}

@media (max-width: 768px) {
  .section    { padding: 5rem 0; }
  .section-sm { padding: 3.5rem 0; }

  .nav-links, .btn-nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero h1 { font-size: clamp(2.5rem, 8vw, 4rem); }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 1.5rem; }

  .about-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-float { right: 0; bottom: -1.5rem; }

  .story-block  { grid-template-columns: 1fr; }
  .story-visual { min-height: 180px; }
  .story-body   { padding: 2rem; }

  .chapel-block { grid-template-columns: 1fr; gap: 2.5rem; }

  .form-grid { grid-template-columns: 1fr; }
  .booking-wrap { padding: 2rem 1.5rem; }

  .stat-bar { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; border-bottom: 1px solid var(--c-border); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }

  .page-hero { padding: 9rem 0 4rem; }
}

@media (max-width: 540px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .room-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stat-item { flex: 0 0 100%; }
}

/* ============================================
   HOMEPAGE — Editorial Redesign Styles
   ============================================ */

/* ---- Hero: updated bg (no emoji) ---- */
.hero-bg-img {
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse at 70% 60%, rgba(107,140,107,0.12) 0%, transparent 55%),
    linear-gradient(155deg, #3A3020 0%, #2A2618 45%, #1A1A14 100%);
}

/* ---- Hero Tag ---- */
.hero-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 2rem;
  display: block;
}

/* ---- Hero Badge ---- */
.hero-badge {
  position: absolute;
  bottom: 4rem;
  right: 5%;
  z-index: 2;
  text-align: right;
}
.hero-badge-num {
  display: block;
  font-family: var(--f-serif);
  font-size: clamp(4rem, 8vw, 9rem);
  font-weight: 700;
  color: rgba(247,243,236,0.06);
  line-height: 1;
  letter-spacing: -0.04em;
}
.hero-badge-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247,243,236,0.2);
  margin-top: 0.3rem;
}

/* ---- Generic Label ---- */
.lbl {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 1.25rem;
}
.lbl--inv { color: rgba(247,243,236,0.4); }

/* ---- Statement Section ---- */
.section-statement {
  background: var(--c-bg);
  padding: 9rem 0 7rem;
}
.statement-inner { margin-bottom: 4.5rem; }
.statement-h {
  font-family: var(--f-serif);
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.025em;
  color: var(--c-text);
  max-width: 10ch;
  margin-top: 0.25rem;
}
.statement-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding-top: 2.5rem;
  border-top: 1px solid var(--c-border);
}
.statement-foot p {
  color: var(--c-muted);
  font-size: 0.95rem;
  line-height: 1.85;
}
.statement-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-top: 0.25rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.1rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--c-muted);
  white-space: nowrap;
  transition: background var(--t-fast), color var(--t-fast);
}
.chip:hover { background: var(--c-surface-2); color: var(--c-text); }

/* ---- Mosaic Section ---- */
.section-mosaic {
  background: var(--c-surface);
  padding: 8rem 0 9rem;
  border-top: 1px solid var(--c-border);
}
.mosaic-header { margin-bottom: 4rem; }
.mosaic-header .lbl { margin-bottom: 0.75rem; }
.mosaic-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  max-width: 20ch;
  margin-top: 0.25rem;
}
.mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.mosaic-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mosaic-col--b { padding-top: 5rem; }

/* Feature Cards */
.fcard {
  background: var(--c-bg);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--c-border);
  cursor: pointer;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.fcard:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.fcard-img {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-slow);
}
.fcard:hover .fcard-img { transform: scale(1.05); }
.fcard--wide .fcard-img { aspect-ratio: 16/9; }
.fcard-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,24,20,0.22), transparent 55%);
}
.fcard-emoji {
  font-size: 3rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
}
.fcard-img--edu       { background: linear-gradient(145deg, #D8CFBE 0%, #C0AC88 100%); }
.fcard-img--cafe      { background: linear-gradient(145deg, #D4C4A8 0%, #BBA070 100%); }
.fcard-img--community { background: linear-gradient(145deg, #C8D5C4 0%, #A0BC9C 100%); }
.fcard-img--stay      { background: linear-gradient(145deg, #C8C4D8 0%, #A8A0C0 100%); }
.fcard-body { padding: 1.75rem 1.75rem 1.9rem; }
.fcard-num {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 0.65rem;
}
.fcard-body h3 {
  font-family: var(--f-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 0.55rem;
  line-height: 1.2;
}
.fcard-body p {
  font-size: 0.87rem;
  color: var(--c-muted);
  line-height: 1.7;
  margin-bottom: 1.1rem;
}
.fcard-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: 0.02em;
  padding-bottom: 1px;
  border-bottom: 1px solid rgba(28,24,20,0.18);
  transition: border-color var(--t-fast), color var(--t-fast);
}
.fcard-link:hover { color: var(--c-primary); border-color: var(--c-primary); }

/* ---- Stats Band ---- */
.band-stats {
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 5rem 0;
}
.band-stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 0 1rem;
}
.bstat-n {
  font-family: var(--f-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1;
  letter-spacing: -0.03em;
}
.bstat-n sup {
  font-size: 0.4em;
  vertical-align: 0.6em;
  color: var(--c-primary);
  font-weight: 700;
}
.bstat-l {
  display: block;
  font-size: 0.78rem;
  color: var(--c-muted);
  font-weight: 500;
  margin-top: 0.65rem;
  letter-spacing: 0.01em;
  max-width: 10ch;
}
.bstat-sep {
  width: 1px;
  height: 56px;
  background: var(--c-border);
  flex-shrink: 0;
}

/* ---- Feature Section ---- */
.section-feature {
  background: var(--c-dark);
  padding: 10rem 0;
  color: var(--c-text-inv);
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}
.feature-visual { position: relative; }
.feature-img-main {
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse at 30% 70%, rgba(107,140,107,0.18) 0%, transparent 50%),
    linear-gradient(160deg, #3A3428 0%, #2A2820 50%, #1A1A14 100%);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.feature-img-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--c-primary);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 20px 60px rgba(184,148,90,0.4);
  color: #fff;
  min-width: 120px;
}
.feature-img-badge strong {
  font-family: var(--f-serif);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}
.feature-img-badge span {
  font-size: 0.68rem;
  opacity: 0.85;
  margin-top: 0.3rem;
  letter-spacing: 0.04em;
}
.feature-body h2 {
  color: var(--c-text-inv);
  margin: 0.75rem 0 1.75rem;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  letter-spacing: -0.02em;
}
.feature-body p {
  color: rgba(247,243,236,0.6);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}
.feature-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

/* ---- CTA Section ---- */
.section-cta {
  background: var(--c-dark-2);
  padding: 10rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(247,243,236,0.06);
}
.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(184,148,90,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-h {
  font-family: var(--f-serif);
  font-size: clamp(2.2rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--c-text-inv);
  margin: 0.75rem auto 1.5rem;
  max-width: 14ch;
  line-height: 1.05;
  letter-spacing: -0.025em;
  position: relative;
}
.cta-p {
  color: rgba(247,243,236,0.45);
  font-size: 1rem;
  max-width: 340px;
  margin-inline: auto;
  line-height: 1.8;
  position: relative;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  position: relative;
}

/* ---- Responsive — new sections ---- */
@media (max-width: 1024px) {
  .feature-grid { gap: 4.5rem; }
  .statement-foot { gap: 2.5rem; }
}

@media (max-width: 768px) {
  .section-statement { padding: 6rem 0 5rem; }
  .statement-h { max-width: 100%; }
  .statement-foot { grid-template-columns: 1fr; gap: 2rem; }

  .section-mosaic { padding: 5.5rem 0 6rem; }
  .mosaic { grid-template-columns: 1fr; }
  .mosaic-col--b { padding-top: 0; }

  .band-stats { padding: 4rem 0; }
  .band-stats-inner { flex-wrap: wrap; }
  .bstat { flex: 0 0 50%; padding: 1.75rem 0; border-bottom: 1px solid var(--c-border); }
  .bstat:last-child { border-bottom: none; }
  .bstat-sep { display: none; }

  .section-feature { padding: 6.5rem 0; }
  .feature-grid { grid-template-columns: 1fr; gap: 4rem; }
  .feature-img-badge { right: 0; bottom: -1.5rem; }

  .section-cta { padding: 7rem 0; }
  .cta-h { font-size: clamp(2rem, 8vw, 3.5rem); }

  .hero-badge { display: none; }
}

@media (max-width: 540px) {
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 320px; }
  .bstat { flex: 0 0 100%; }
  .feature-links { flex-direction: column; }
  .feature-links .btn { width: 100%; }
}
