/* =========================================================
   이윤지 · iam.yunji landing page
   palette borrowed from the book cover (sky/teal · sand · navy)
   ========================================================= */

:root{
  --teal-50:  #EAF6F4;
  --teal-100: #CDE9E5;
  --teal-300: #8FCEC6;
  --teal-500: #5BB5AB;
  --teal-700: #2E8077;

  --sand-50:  #FBF6EC;
  --sand-100: #F4E9D2;
  --sand-300: #E5CDA0;
  --sand-500: #C9A86A;

  --ink-900: #16243B;
  --ink-800: #20324F;
  --ink-700: #2E4366;
  --ink-500: #54668A;
  --ink-400: #7A89A8;

  --paper:  #FBF8F2;
  --paper-2:#F5EFE3;
  --white:  #ffffff;

  --shadow-sm: 0 2px 8px rgba(22,36,59,.06);
  --shadow-md: 0 12px 30px -10px rgba(22,36,59,.18);
  --shadow-lg: 0 30px 60px -20px rgba(22,36,59,.28);

  --radius: 18px;
  --radius-lg: 28px;

  --max: 1160px;
  --gutter: clamp(20px, 4vw, 48px);

  --font-sans: 'Pretendard', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  --font-serif: 'Gowun Batang', 'Pretendard', serif;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-sans);
  font-feature-settings: "ss06" on, "ss03" on;
  color: var(--ink-900);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* korean word-wrapping: break by word units, not by single chars,
     so trailing characters like "다." don't drop alone onto a new line. */
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* let headings auto-balance their line lengths in modern browsers
   (chrome 114+, safari 17.4+, firefox 121+). */
h1, h2, h3, h4{
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: break-word;
}
p{
  word-break: keep-all;
  overflow-wrap: break-word;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; }

::selection{ background: var(--teal-300); color: var(--ink-900); }

/* ---------- nav ---------- */
.nav{
  position: sticky; top: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px var(--gutter);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  background: rgba(251, 248, 242, 0.7);
  border-bottom: 1px solid rgba(22,36,59,.06);
}
.nav__logo{
  font-weight: 700; letter-spacing: .02em;
  font-size: 17px; color: var(--ink-900);
}
.nav__links{ display:flex; gap: 26px; align-items: center; font-size: 14.5px; }
.nav__links a{ color: var(--ink-500); transition: color .2s; }
.nav__links a:hover{ color: var(--ink-900); }
.nav__cta{
  background: var(--ink-900); color: var(--paper) !important;
  padding: 9px 16px; border-radius: 999px; font-weight: 600;
  transition: transform .2s, background .2s;
}
.nav__cta:hover{ background: var(--teal-700); transform: translateY(-1px); }

@media (max-width: 640px){
  .nav__links a:not(.nav__cta){ display: none; }
}

/* ---------- buttons ---------- */
.btn{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: 999px;
  font-weight: 600; font-size: 15.5px; letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s, background .2s, color .2s;
  cursor: pointer; white-space: nowrap;
}
.btn--primary{
  background: var(--ink-900); color: var(--paper);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover{
  transform: translateY(-2px);
  background: var(--teal-700);
  box-shadow: var(--shadow-lg);
}
.btn--ghost{
  background: transparent; color: var(--ink-900);
  border: 1px solid rgba(22,36,59,.18);
}
.btn--ghost:hover{ background: var(--white); border-color: var(--ink-900); }
.btn--large{ padding: 18px 30px; font-size: 16.5px; }

/* ---------- HERO ---------- */
.hero{
  position: relative; overflow: hidden;
  min-height: clamp(620px, 92vh, 880px);
  padding: clamp(60px, 9vh, 110px) var(--gutter) 80px;
  display: flex; align-items: center;
  isolation: isolate;
}
.hero__bg{ position:absolute; inset: 0; z-index: -1; }
.hero__sky{
  position: absolute; inset: 0 0 32% 0;
  background:
    radial-gradient(120% 80% at 50% 0%, #BFE6E2 0%, #8DCDC5 45%, #6BB8AE 100%);
}
.hero__sand{
  position: absolute; left: 0; right: 0; bottom: 0; height: 32%;
  background: linear-gradient(180deg, #F0DBB0 0%, #E5C994 100%);
}
.hero__waves{
  position: absolute; left: 0; right: 0;
  bottom: 30%; height: 80px; pointer-events: none;
}
.hero__waves svg{ width: 100%; height: 100%; display:block; }
.hero__dots{
  position: absolute; inset: 0 0 40% 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.85) 1.4px, transparent 1.6px),
    radial-gradient(circle, rgba(255,247,200,.9) 1.2px, transparent 1.4px);
  background-size: 28px 28px, 56px 56px;
  background-position: 0 0, 14px 14px;
  opacity: .65;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.95) 0%, rgba(0,0,0,.6) 60%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.95) 0%, rgba(0,0,0,.6) 60%, rgba(0,0,0,0) 100%);
}

.hero__inner{
  width: 100%; max-width: var(--max); margin: 0 auto;
  position: relative; z-index: 1;
}
.kicker{
  display: inline-block;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(255,255,255,.78);
  color: var(--ink-800);
  font-size: 13.5px; font-weight: 600; letter-spacing: .02em;
  border: 1px solid rgba(22,36,59,.08);
  margin: 0 0 22px;
}
.hero__title{
  font-family: var(--font-serif);
  font-size: clamp(44px, 7.5vw, 96px);
  line-height: 1.05; letter-spacing: -.02em;
  margin: 0 0 26px; color: var(--ink-900);
  font-weight: 700;
}
.hero__title .strike{
  position: relative;
  color: rgba(22,36,59,.55);
}
.hero__title .strike::after{
  content: ""; position: absolute; left: -2%; right: -2%; top: 56%;
  height: 6px; background: var(--ink-900); border-radius: 6px;
  transform: rotate(-2deg);
}
.hero__title em{
  font-style: normal;
  background: linear-gradient(180deg, transparent 60%, rgba(255,247,200,.85) 60%);
  padding: 0 .1em;
}
.hero__lead{
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-800);
  max-width: 580px;
  margin: 0 0 36px;
}
.hero__cta{ display: flex; gap: 12px; flex-wrap: wrap; }

.hero__profile{
  margin-top: 56px;
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.7);
  padding: 10px 18px 10px 10px;
  border-radius: 999px;
  width: max-content;
  border: 1px solid rgba(22,36,59,.08);
  backdrop-filter: blur(8px);
}
.hero__profile img{
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.hero__profile strong{ display:block; font-size: 14.5px; }
.hero__profile span{ font-size: 12.5px; color: var(--ink-500); }

.hero__scroll{
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 36px; border: 1.5px solid rgba(22,36,59,.45);
  border-radius: 16px;
}
.hero__scroll span{
  position: absolute; left: 50%; top: 8px;
  width: 3px; height: 8px; border-radius: 4px;
  background: var(--ink-900);
  transform: translateX(-50%);
  animation: scroll 1.6s ease-in-out infinite;
}
@keyframes scroll{
  0%{ transform: translate(-50%, 0); opacity: 1; }
  60%{ transform: translate(-50%, 12px); opacity: 0; }
  100%{ transform: translate(-50%, 0); opacity: 0; }
}

/* ---------- shared section ---------- */
.section{ padding: clamp(70px, 11vh, 130px) var(--gutter); }
.section__head{ max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section__head h2{
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.6vw, 50px);
  line-height: 1.18; letter-spacing: -.02em;
  margin: 12px 0 18px;
  color: var(--ink-900);
}
.section__lead{
  color: var(--ink-500);
  font-size: clamp(15px, 1.4vw, 17px);
  margin: 0;
}
.eyebrow{
  display: inline-block;
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-700); font-weight: 700;
  margin: 0;
}
.eyebrow--light{ color: rgba(255,255,255,.85); }

/* ---------- STORY ---------- */
.story{ background: var(--paper); }
.story__grid{
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.story__text p{
  font-size: clamp(15.5px, 1.4vw, 17.5px);
  color: var(--ink-700);
  margin: 0 0 18px;
}
.story__text strong{ color: var(--ink-900); }
.story__sign{
  margin-top: 28px !important;
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--ink-900) !important;
}
.story__quote{
  margin: 0;
  background: var(--paper-2);
  border-radius: var(--radius-lg);
  padding: 38px 36px 28px;
  border: 1px solid rgba(22,36,59,.06);
  position: relative;
}
.story__quote::before{
  content: "“";
  position: absolute; top: -10px; left: 22px;
  font-family: var(--font-serif);
  font-size: 96px; line-height: 1; color: var(--teal-500);
}
.story__quote blockquote{ margin: 14px 0 0; }
.story__quote blockquote p{
  font-family: var(--font-serif);
  font-size: 17px; line-height: 1.85;
  color: var(--ink-800);
  margin: 0;
}
.story__quote blockquote em{
  font-style: normal;
  background: linear-gradient(180deg, transparent 60%, var(--sand-100) 60%);
  padding: 0 .1em;
}
.story__quote figcaption{
  margin-top: 18px;
  font-size: 13.5px; color: var(--ink-500);
}

.story__cards{
  list-style: none; padding: 0; margin: 60px auto 0;
  max-width: var(--max);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.story__cards li{
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 22px;
  border: 1px solid rgba(22,36,59,.06);
  text-align: left;
}
.story__num{
  display: block;
  font-family: var(--font-serif);
  font-size: 38px; font-weight: 700;
  color: var(--teal-700);
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.story__cards p{
  margin: 0; color: var(--ink-500); font-size: 14px;
}
@media (max-width: 860px){
  .story__grid{ grid-template-columns: 1fr; }
  .story__cards{ grid-template-columns: repeat(2, 1fr); }
}

/* ---------- BOOK ---------- */
.book{
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  position: relative; overflow: hidden;
}
.book__inner{
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 6vw, 80px); align-items: center;
}
.book__cover{
  position: relative;
  perspective: 1500px;
}
.book__cover img{
  width: 100%; height: auto;
  border-radius: 4px;
  box-shadow:
    0 1px 0 rgba(0,0,0,.05),
    -10px 8px 24px rgba(22,36,59,.12),
    -28px 20px 60px rgba(22,36,59,.18);
  transform: rotate(-3deg);
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.book__cover:hover img{ transform: rotate(0) translateY(-6px); }

.book__copy .eyebrow{ display: block; margin-bottom: 14px; }
.book__title{
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.2; letter-spacing: -.02em;
  margin: 0 0 22px; color: var(--ink-900);
}
.hl-strike{
  position: relative; color: rgba(22,36,59,.5);
}
.hl-strike::after{
  content: ""; position: absolute; left: -2%; right: -2%; top: 55%;
  height: 4px; background: var(--ink-900); border-radius: 4px;
  transform: rotate(-1deg);
}
.hl-live{
  background: linear-gradient(180deg, transparent 60%, var(--sand-300) 60%);
  padding: 0 .1em;
}
.book__lead{
  color: var(--ink-700);
  font-size: clamp(15.5px, 1.5vw, 17.5px);
  margin: 0 0 28px;
}
.book__points{ list-style: none; padding: 0; margin: 0 0 32px; }
.book__points li{
  display: flex; gap: 14px; padding: 14px 0;
  border-top: 1px solid rgba(22,36,59,.08);
}
.book__points li:last-child{ border-bottom: 1px solid rgba(22,36,59,.08); }
.book__points .dot{
  flex: 0 0 8px; width: 8px; height: 8px; margin-top: 12px;
  background: var(--teal-500); border-radius: 50%;
}
.book__points h4{ margin: 0 0 4px; font-size: 15.5px; color: var(--ink-900); }
.book__points p{ margin: 0; color: var(--ink-500); font-size: 14.5px; }

.book__cta{ display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.book__meta{ margin: 0; font-size: 13px; color: var(--ink-400); }

@media (max-width: 860px){
  .book__inner{ grid-template-columns: 1fr; text-align: left; }
  .book__cover{ max-width: 320px; margin: 0 auto; }
}

/* ---------- VOICES ---------- */
.voices{ background: var(--paper); }

/* a featured pair at the top of voices: 차인표 + 션 */
.voices__featured{
  max-width: var(--max);
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 860px){
  .voices__featured{ grid-template-columns: 1fr; }
}

/* a single, long-form reader review presented like a letter.
   echoes the book cover's starry-sea motif via subtle bg dots. */
.reader-letter{
  max-width: 820px; margin: 0 auto 56px;
  background: var(--paper-2);
  border: 1px solid rgba(22,36,59,.08);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5.5vw, 70px) clamp(28px, 5vw, 64px);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.reader-letter::before{
  /* a soft starfield in the top-right corner — like the book cover's sky */
  content: "";
  position: absolute; top: -10%; right: -10%;
  width: 50%; height: 50%;
  background-image:
    radial-gradient(circle, rgba(91,181,171,.5) 1.4px, transparent 1.6px),
    radial-gradient(circle, rgba(201,168,106,.5) 1.2px, transparent 1.4px);
  background-size: 22px 22px, 38px 38px;
  background-position: 0 0, 11px 11px;
  opacity: .5;
  mask-image: radial-gradient(ellipse at top right, rgba(0,0,0,.85) 0%, rgba(0,0,0,0) 70%);
  -webkit-mask-image: radial-gradient(ellipse at top right, rgba(0,0,0,.85) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.reader-letter__head{
  position: relative; z-index: 1;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(22,36,59,.1);
}
.reader-letter__meta{
  margin: 0 0 18px;
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  font-size: 13px;
}
.reader-letter__rating{
  color: var(--sand-500);
  letter-spacing: .04em;
  font-weight: 700;
}
.reader-letter__source{ color: var(--ink-400); }

.reader-letter__title{
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.25; letter-spacing: -.01em;
  color: var(--ink-900);
}
.reader-letter__sub{
  margin: 0;
  font-size: 14.5px; color: var(--ink-500);
  font-style: italic;
}

.reader-letter__pull{
  position: relative; z-index: 1;
  margin: 0 0 36px;
  padding: 28px 0 28px 30px;
  border-left: 3px solid var(--teal-500);
  font-family: var(--font-serif);
}
.reader-letter__pull p{
  margin: 0 0 14px;
  font-size: clamp(18px, 2.1vw, 23px);
  line-height: 1.55;
  color: var(--ink-800);
  letter-spacing: -.005em;
}
.reader-letter__pull p:last-child{ margin-bottom: 0; }
.reader-letter__pull strong{
  font-weight: 700;
  color: var(--ink-900);
  background: linear-gradient(180deg, transparent 60%, var(--sand-100) 60%);
  padding: 0 .1em;
}

.reader-letter__body{
  position: relative; z-index: 1;
  font-family: var(--font-serif);
  color: var(--ink-800);
  font-size: clamp(15px, 1.4vw, 16.5px);
  line-height: 1.95;
}
.reader-letter__body p{
  margin: 0 0 1.4em;
  text-indent: 1em; /* 편지/원고 느낌의 들여쓰기 */
}
.reader-letter__inner-quote{
  text-indent: 0 !important;
  margin: 1.6em 0 !important;
  padding: 18px 22px;
  background: rgba(255,255,255,.6);
  border-left: 2px solid var(--sand-500);
  border-radius: 0 8px 8px 0;
  font-size: clamp(14.5px, 1.35vw, 16px);
  color: var(--ink-700);
  font-style: italic;
}

.reader-letter__foot{
  position: relative; z-index: 1;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(22,36,59,.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.reader-letter__signoff{
  font-family: var(--font-serif);
  font-size: 14.5px;
  color: var(--ink-500);
}
.reader-letter__link{
  font-size: 13.5px; font-weight: 600;
  color: var(--teal-700);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color .2s, transform .2s;
}
.reader-letter__link:hover{
  border-bottom-color: var(--teal-700);
  transform: translateX(2px);
}

@media (max-width: 600px){
  .reader-letter{ padding: 32px 22px; }
  .reader-letter__pull{ padding-left: 18px; }
  .reader-letter__body p{ text-indent: 0; }
}

.voices__grid{
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.voice{
  background: var(--white);
  border: 1px solid rgba(22,36,59,.08);
  border-radius: var(--radius);
  padding: 26px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .25s, box-shadow .25s;
}
.voice:hover{ transform: translateY(-3px); box-shadow: var(--shadow-md); }
.voice header{ border-bottom: 1px solid rgba(22,36,59,.06); padding-bottom: 12px; }
.voice__name{ margin:0; font-size: 15.5px; font-weight: 700; color: var(--ink-900); }
.voice__name span{ font-weight: 500; color: var(--ink-500); font-size: 13.5px; margin-left: 6px; }
.voice__handle{ margin: 4px 0 0; font-size: 12.5px; color: var(--ink-400); }
.voice__text{ margin: 0; color: var(--ink-700); font-size: 14.5px; line-height: 1.75; }

/* an invitation card — fills the empty slot, asks for a review */
.voice--invite{
  background: linear-gradient(135deg, var(--teal-50) 0%, var(--paper-2) 100%);
  border: 1px dashed rgba(91,181,171,.55);
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 18px;
  cursor: pointer;
}
.voice--invite:hover{
  border-color: var(--teal-500);
  background: linear-gradient(135deg, var(--teal-100) 0%, var(--paper-2) 100%);
}
.voice__invite-text{
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(19px, 1.9vw, 24px);
  line-height: 1.45;
  letter-spacing: -.01em;
  color: var(--ink-900);
}
.voice__invite-text em{
  font-style: normal;
  background: linear-gradient(180deg, transparent 60%, var(--sand-100) 60%);
  padding: 0 .12em;
}
.voice__invite-cta{
  margin: 0;
  font-size: 13.5px; font-weight: 600;
  color: var(--teal-700);
  border-bottom: 1px solid transparent;
  width: max-content;
  padding-bottom: 1px;
  transition: border-color .2s, transform .2s;
}
.voice--invite:hover .voice__invite-cta{
  border-bottom-color: var(--teal-700);
  transform: translateX(2px);
}

.voice--featured{
  background: var(--ink-900);
  color: var(--paper);
  border-color: var(--ink-900);
  padding: 0;
  overflow: hidden;
}
.voice--featured > header,
.voice--featured > .voice__text{
  padding-left: 26px; padding-right: 26px;
}
.voice--featured > header{ padding-top: 22px; }
.voice--featured > .voice__text{ padding-bottom: 28px; }
.voice__photo{
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f0e9d8;
}
.voice__photo img{
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}
.voice--featured .voice__name{ color: var(--paper); }
.voice--featured .voice__name span{ color: rgba(255,255,255,.6); }
.voice--featured .voice__handle{ color: var(--teal-300); }
.voice--featured .voice__text{ color: rgba(255,255,255,.88); font-size: 15.5px; }
.voice--featured header{ border-bottom-color: rgba(255,255,255,.12); padding-bottom: 12px; }

/* 션 카드 — 만남 사진 + 폴라로이드 사인 (다정한 메모처럼) */
.voice--sean .voice__photo img{
  object-position: center 35%;
}
.voice__signature{
  margin: 4px 22px 28px;
  padding: 14px 14px 16px;
  background: var(--paper);
  border-radius: 4px;
  transform: rotate(-1.4deg);
  box-shadow:
    0 2px 4px rgba(0,0,0,.18),
    0 18px 30px -10px rgba(0,0,0,.45);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.voice__signature:hover{ transform: rotate(0) translateY(-2px); }
.voice__signature img{
  width: 100%; height: auto;
  display: block;
  border-radius: 2px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 60%;
}
.voice__signature figcaption{
  margin-top: 12px;
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--ink-700);
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 1000px){
  .voices__grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
  .voices__grid{ grid-template-columns: 1fr; }
}

/* ---------- MEET ---------- */
.meet{ background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%); }
.meet__grid{
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.meet__card{
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(22,36,59,.06);
  transition: transform .3s, box-shadow .3s;
}
.meet__card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.meet__img{
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--paper-2);
  display: flex; align-items: center; justify-content: center;
}
.meet__img img{
  width: 100%; height: 100%;
  object-fit: contain;  /* 포스터 전체가 잘리지 않게 */
  transition: transform .6s;
}
.meet__card:hover .meet__img img{ transform: scale(1.04); }
.meet__body{ padding: 24px 26px 28px; }
.tag{
  display: inline-block;
  font-size: 12px; letter-spacing: .08em;
  color: var(--teal-700); font-weight: 700;
  background: var(--teal-50);
  padding: 5px 11px; border-radius: 999px;
  margin-bottom: 12px;
}
.meet__body h3{
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 21px; line-height: 1.35; color: var(--ink-900);
}
.meet__body p{ margin: 0 0 16px; color: var(--ink-500); font-size: 14.5px; }
.meet__cta{
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13.5px; font-weight: 600;
  color: var(--teal-700);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, transform .2s;
}
.meet__card:hover .meet__cta{
  border-bottom-color: var(--teal-700);
  transform: translateX(2px);
}

.meet__note{
  max-width: var(--max); margin: 36px auto 0;
  text-align: center;
  font-size: 14px; color: var(--ink-500);
}
.meet__note a{
  color: var(--ink-900); font-weight: 600;
  border-bottom: 1px solid rgba(22,36,59,.25);
  padding-bottom: 1px;
}
.meet__note a:hover{ border-bottom-color: var(--ink-900); }

@media (max-width: 900px){ .meet__grid{ grid-template-columns: 1fr; } }

/* ---------- CTA ---------- */
.cta{
  background: var(--ink-900);
  color: var(--paper);
  position: relative; overflow: hidden;
}
.cta::before{
  content: "";
  position: absolute; inset: -10% -10% 60% -10%;
  background:
    radial-gradient(60% 60% at 30% 30%, rgba(95,181,171,.3) 0%, transparent 60%),
    radial-gradient(50% 50% at 80% 20%, rgba(255,247,200,.18) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.cta__inner{
  max-width: 820px; margin: 0 auto;
  text-align: center; position: relative;
}
.cta h2{
  font-family: var(--font-serif);
  font-size: clamp(34px, 5.4vw, 60px);
  line-height: 1.18; letter-spacing: -.02em;
  margin: 12px 0 24px;
}
.cta h2 em{
  font-style: normal;
  background: linear-gradient(180deg, transparent 60%, rgba(255,247,200,.55) 60%);
  padding: 0 .1em;
}
.hl-strike-l{
  position: relative; color: rgba(255,255,255,.55);
}
.hl-strike-l::after{
  content: ""; position: absolute; left: -2%; right: -2%; top: 55%;
  height: 4px; background: var(--paper); border-radius: 4px;
  transform: rotate(-1deg);
}
.cta__lead{
  color: rgba(255,255,255,.78);
  font-size: clamp(15px, 1.4vw, 17px);
  max-width: 600px; margin: 0 auto 36px;
}
.cta__actions{ display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.cta .btn--primary{
  background: var(--paper); color: var(--ink-900);
}
.cta .btn--primary:hover{ background: var(--sand-100); color: var(--ink-900); }

.cta__contact{
  list-style: none; padding: 0; margin: 56px 0 0;
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  font-size: 13.5px;
}
.cta__contact a{
  color: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.18);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.cta__contact a:hover{ color: var(--paper); border-color: var(--paper); }

/* ---------- FOOT ---------- */
.foot{
  background: var(--paper);
  padding: 36px var(--gutter);
  border-top: 1px solid rgba(22,36,59,.06);
}
.foot__inner{
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.foot__left{ text-align: left; }
.foot__title{ margin: 0; font-weight: 700; font-size: 14.5px; }
.foot__sub{ margin: 4px 0 8px; color: var(--ink-500); font-size: 13.5px; }
.foot__copy{ margin: 0; color: var(--ink-400); font-size: 12.5px; }

.foot__designed{
  margin: 0; font-size: 13px;
  color: var(--ink-500);
  white-space: nowrap;
}
.foot__designed a{
  color: var(--ink-900);
  font-weight: 700;
  border-bottom: 1px solid rgba(22,36,59,.25);
  padding-bottom: 1px;
  margin-left: 2px;
  transition: border-color .2s, color .2s;
}
.foot__designed a:hover{
  color: var(--teal-700);
  border-bottom-color: var(--teal-700);
}

@media (max-width: 600px){
  .foot__inner{ justify-content: flex-start; }
  .foot__left{ width: 100%; }
}

/* ---------- reveal-on-scroll ---------- */
.reveal{ opacity: 0; transform: translateY(20px); transition: opacity .8s, transform .8s; }
.reveal.is-in{ opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; }
  .reveal{ opacity: 1; transform: none; }
}

/* =========================================================
   custom cursor + click particles
   only on devices with a fine pointer & non-reduced motion
   ========================================================= */
.cursor{
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  opacity: 0;
  transition: opacity .35s ease;
}
.cursor.is-active{ opacity: 1; }

.cursor__dot,
.cursor__ring{
  position: fixed; left: 0; top: 0;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, width, height;
}
/* dual-layer cursor: dark core + soft ivory halo.
   stays readable on cream paper *and* on the dark CTA section
   without relying on mix-blend-mode (which breaks inside z-index stacks). */
.cursor__dot{
  width: 9px; height: 9px;
  background: var(--ink-900);
  transform: translate3d(-50%, -50%, 0);
  transition: width .25s ease, height .25s ease, opacity .25s, background-color .25s;
  box-shadow:
    0 0 0 2px rgba(251, 248, 242, 0.85),
    0 2px 8px rgba(22, 36, 59, 0.25);
}
.cursor__ring{
  width: 36px; height: 36px;
  border: 1.6px solid var(--ink-900);
  background: rgba(251, 248, 242, 0.08);
  transform: translate3d(-50%, -50%, 0);
  transition: width .35s cubic-bezier(.2,.7,.2,1),
              height .35s cubic-bezier(.2,.7,.2,1),
              border-width .25s,
              border-color .25s,
              background-color .25s,
              opacity .25s;
  box-shadow:
    0 0 0 1.5px rgba(251, 248, 242, 0.7),
    inset 0 0 0 1.5px rgba(251, 248, 242, 0.45);
}
.cursor.is-hover .cursor__ring{
  width: 64px; height: 64px;
  border-color: var(--teal-700);
  background: rgba(91, 181, 171, 0.15);
}
.cursor.is-hover .cursor__dot{
  width: 5px; height: 5px;
  background: var(--teal-700);
  opacity: .9;
}
.cursor.is-down .cursor__ring{
  width: 22px; height: 22px;
}

/* particles */
.particle{
  position: fixed; left: 0; top: 0;
  width: var(--size, 6px); height: var(--size, 6px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  will-change: transform, opacity;
  animation: particle-burst var(--dur, 950ms) cubic-bezier(.17,.67,.35,1) forwards;
}
@keyframes particle-burst{
  0%   { transform: translate3d(-50%, -50%, 0) scale(1);   opacity: 1; }
  60%  { opacity: 1; }
  100% { transform: translate3d(calc(-50% + var(--dx)), calc(-50% + var(--dy)), 0) scale(.3); opacity: 0; }
}

/* sparkle — a tiny optional 4-point star particle for variety */
.particle--star{
  background: transparent !important;
  width: var(--size, 10px); height: var(--size, 10px);
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-size: 100% 14%, 14% 100%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0 !important;
}

/* hide the OS cursor everywhere except pure-touch devices.
   we use (pointer: fine) — true if any pointing device is a mouse. */
@media (pointer: fine){
  html, body { cursor: none; }
  body a,
  body button,
  body .btn,
  body [role="button"],
  body label{ cursor: none; }
  /* keep text-input affordances usable */
  body input,
  body textarea,
  body [contenteditable]{ cursor: text; }
}
/* on pure-touch screens, hide our custom cursor and restore OS cursor */
@media not all and (pointer: fine){
  .cursor{ display: none; }
}
@media (prefers-reduced-motion: reduce){
  .cursor{ display: none; }
  .particle{ display: none; }
  html, body, body * { cursor: auto !important; }
}
