/* ==========================================================================
   청라한신114부동산 — style.css
   팔레트: 간판 실사 기준 (진핑크 / 와인 마룬 / 골드 / 아이보리)
   ========================================================================== */
:root {
  --pink: #E42A6E;
  --pink-deep: #C21857;
  --pink-soft: #FCE7F0;
  --wine: #571C31;
  --wine-deep: #3E1222;
  --gold: #F2C14E;
  --gold-deep: #D9A32E;
  --ivory: #FDF7F9;
  --ink: #2B2026;
  --muted: #7A6A72;
  --line: #EFDFE6;
  --white: #fff;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(87, 28, 49, 0.10);
  --font-serif: "Noto Serif KR", "Apple SD Gothic Neo", serif;
  --font-sans: "Pretendard Variable", Pretendard, -apple-system, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  /* motion.css 토큰 오버라이드 */
  --mo-accent: var(--pink);
  --mo-dur: 0.65s;
  --mo-shift: 26px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
:focus-visible { outline: 3px solid var(--pink); outline-offset: 2px; border-radius: 4px; }

.serif { font-family: var(--font-serif); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.accent { color: var(--pink); }
.gold-txt { color: var(--gold); }

/* ---------- 공통 섹션 헤드 ---------- */
.sec-head { text-align: center; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.14em;
  color: var(--pink); text-transform: uppercase; margin-bottom: 0.9rem;
}
.eyebrow::before, .eyebrow::after { content: ""; width: 22px; height: 1px; background: var(--pink); opacity: 0.5; }
.sec-head h2 { font-family: var(--font-serif); font-weight: 700; color: var(--wine); }
.sec-head .desc { margin-top: 0.9rem; color: var(--muted); }

/* ---------- 헤더 ---------- */
header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  padding: 18px 0; background: transparent;
}
header.is-shrunk { padding: 10px 0; }
.nav-inner { display: flex; align-items: center; gap: 28px; }
.brand { font-family: var(--font-serif); font-size: 1.22rem; font-weight: 900; color: var(--wine); line-height: 1; }
.brand .n114 { color: var(--pink); letter-spacing: 0.02em; }
.brand small { display: block; font-family: var(--font-sans); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.28em; color: var(--muted); margin-top: 4px; }
.gnb { display: flex; gap: 26px; margin-left: auto; }
.gnb a { font-weight: 600; font-size: 0.98rem; color: var(--ink); }
.gnb a.is-active { color: var(--pink); }
.btn-call-mini {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pink); color: #fff; font-weight: 700; font-size: 0.95rem;
  padding: 10px 18px; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(228, 42, 110, 0.35);
  transition: transform 0.25s var(--mo-ease), box-shadow 0.25s;
}
.btn-call-mini:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(228, 42, 110, 0.45); }
.nav-toggle { display: none; }

/* 히어로 위 헤더(투명) — 흰 로고/메뉴 */
.on-hero:not(.is-shrunk) .brand,
.on-hero:not(.is-shrunk) .gnb a { color: #fff; }
.on-hero:not(.is-shrunk) .brand .n114 { color: var(--gold); }
.on-hero:not(.is-shrunk) .brand small { color: rgba(255,255,255,0.75); }

/* 모바일 내비 */
@media (max-width: 860px) {
  .gnb {
    position: fixed; inset: 0; background: rgba(87, 28, 49, 0.97);
    flex-direction: column; align-items: center; justify-content: center; gap: 34px;
    opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
  }
  .gnb a { color: #fff !important; font-size: 1.35rem; font-family: var(--font-serif); }
  .gnb.is-open { opacity: 1; visibility: visible; }
  .btn-call-mini { margin-left: auto; padding: 9px 14px; }
  .btn-call-mini .num { display: none; }
  .nav-toggle {
    display: grid; place-items: center; width: 44px; height: 44px;
    background: none; border: 0; cursor: pointer; z-index: 1200; position: relative;
  }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
    content: ""; display: block; width: 24px; height: 2.5px; border-radius: 2px;
    background: var(--wine); position: relative; transition: transform 0.3s, background 0.3s;
  }
  .on-hero:not(.is-shrunk) .nav-toggle span,
  .on-hero:not(.is-shrunk) .nav-toggle span::before,
  .on-hero:not(.is-shrunk) .nav-toggle span::after { background: #fff; }
  .nav-toggle span::before { position: absolute; top: -8px; }
  .nav-toggle span::after { position: absolute; top: 8px; }
  .nav-toggle.is-open span { background: transparent !important; }
  .nav-toggle.is-open span::before { transform: translateY(8px) rotate(45deg); background: #fff; }
  .nav-toggle.is-open span::after { transform: translateY(-8px) rotate(-45deg); background: #fff; }
}

/* ---------- 히어로 ---------- */
.hero {
  position: relative; min-height: min(92vh, 880px);
  display: flex; align-items: center; overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute; inset: -12% 0; z-index: -2;
  background-size: cover; background-position: center;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(62, 18, 34, 0.88) 0%, rgba(62, 18, 34, 0.35) 45%, rgba(62, 18, 34, 0.45) 100%),
    radial-gradient(80% 60% at 20% 80%, rgba(228, 42, 110, 0.38), transparent 70%);
}
.hero .container { padding-top: 110px; padding-bottom: 90px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.08em;
  color: var(--gold); margin-bottom: 1.4rem;
  padding: 8px 16px; border: 1px solid rgba(242, 193, 78, 0.45);
  border-radius: 999px; background: rgba(62, 18, 34, 0.35);
  backdrop-filter: blur(4px);
}
.hero h1 { font-family: var(--font-serif); font-weight: 900; color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,0.35); }
.hero h1 .u-draw {
  position: relative; display: inline-block; color: var(--gold);
}
.hero h1 .u-draw::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.05em; height: 0.14em;
  background: linear-gradient(90deg, var(--pink), var(--gold));
  border-radius: 3px; opacity: 0.85;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.9s var(--mo-ease) 0.9s;
}
.hero.is-loaded h1 .u-draw::after { transform: scaleX(1); }
.hero-slogan { margin-top: 1.4rem; font-size: clamp(1rem, 1.4vw + 0.6rem, 1.3rem); color: rgba(255,255,255,0.92); max-width: 34em; }
.hero-cta { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 800; border-radius: 999px; padding: 16px 32px; font-size: 1.05rem;
  transition: transform 0.25s var(--mo-ease), box-shadow 0.25s, background 0.25s;
}
.btn-pink { background: linear-gradient(135deg, var(--pink), var(--pink-deep)); color: #fff; box-shadow: 0 10px 28px rgba(228, 42, 110, 0.45); }
.btn-pink:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(228, 42, 110, 0.55); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,0.55); color: #fff; background: rgba(255,255,255,0.08); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,0.18); transform: translateY(-3px); }
.btn-wine { background: var(--wine); color: #fff; box-shadow: 0 10px 24px rgba(87,28,49,0.35); }
.btn-wine:hover { transform: translateY(-3px); }
.hero-hours { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: 0.92rem; color: rgba(255,255,255,0.85); }
.hero-hours li { display: flex; align-items: center; gap: 7px; }
.hero-hours .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: none; }
.scroll-hint {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.5); border-radius: 14px;
}
.scroll-hint::after {
  content: ""; position: absolute; left: 50%; top: 8px; width: 4px; height: 8px;
  border-radius: 3px; background: var(--gold); transform: translateX(-50%);
  animation: hint 1.8s ease-in-out infinite;
}
@keyframes hint { 0%,100% { transform: translate(-50%, 0); opacity: 1; } 60% { transform: translate(-50%, 12px); opacity: 0.2; } }

/* ---------- 신뢰 스트립 (카운트) ---------- */
.stats { background: var(--wine); color: #fff; padding-block: clamp(2.2rem, 4vw, 3.2rem); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.6rem; text-align: center; }
.stat .num { font-family: var(--font-serif); font-size: clamp(1.9rem, 3.4vw, 2.8rem); font-weight: 900; color: var(--gold); line-height: 1.1; }
.stat .num small { font-size: 0.55em; margin-left: 2px; }
.stat .label { margin-top: 6px; font-size: 0.92rem; color: rgba(255,255,255,0.82); }

/* ---------- 스토리 ---------- */
.story-grid { display: grid; grid-template-columns: minmax(280px, 5fr) 7fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.story-photo { position: relative; }
.story-photo img { border-radius: var(--radius); box-shadow: var(--shadow); }
.story-photo::before {
  content: ""; position: absolute; inset: 18px -18px -18px 18px; z-index: -1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--pink-soft), rgba(242, 193, 78, 0.35));
}
.story-badge {
  position: absolute; right: -12px; bottom: 22px;
  background: #fff; border-radius: 14px; box-shadow: var(--shadow);
  padding: 12px 18px; display: flex; align-items: center; gap: 10px;
}
.story-badge img { width: 44px; height: auto; border-radius: 0; box-shadow: none; }
.story-badge b { color: var(--wine); font-size: 0.95rem; display: block; line-height: 1.3; }
.story-badge span { font-size: 0.78rem; color: var(--muted); }
.story-copy h2 { font-family: var(--font-serif); color: var(--wine); margin-bottom: 1.3rem; }
.story-copy .quote {
  font-family: var(--font-serif); font-size: clamp(1.05rem, 1.4vw + 0.5rem, 1.3rem);
  color: var(--pink-deep); border-left: 3px solid var(--gold); padding-left: 16px; margin: 1.5rem 0;
}
.story-copy p { color: #574851; }
.story-copy p + p { margin-top: 0.9rem; }
.story-sign { margin-top: 1.6rem; display: flex; align-items: center; gap: 12px; }
.story-sign .who b { color: var(--wine); }
.story-sign .who span { display: block; font-size: 0.85rem; color: var(--muted); }

/* ---------- 서비스 카드 ---------- */
.svc-card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.6rem, 2.5vw, 2.2rem);
  display: flex; flex-direction: column; gap: 14px; overflow: hidden;
}
.svc-card .ico {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: var(--pink-soft); color: var(--pink);
}
.svc-card .ico svg { width: 28px; height: 28px; }
.svc-card h3 { font-size: 1.2rem; color: var(--wine); font-family: var(--font-serif); }
.svc-card p { font-size: 0.95rem; color: var(--muted); flex: 1; }
.svc-card .go { font-weight: 700; font-size: 0.9rem; color: var(--pink); }
.svc-badge {
  position: absolute; top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: var(--wine);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em;
  padding: 5px 11px; border-radius: 999px;
}

/* ---------- 강점 6 ---------- */
.merit { background: #fff; border-radius: var(--radius); border: 1px solid var(--line); padding: 1.5rem 1.4rem; display: flex; gap: 14px; align-items: flex-start; }
.merit .no { font-family: var(--font-serif); font-weight: 900; color: var(--pink); font-size: 1.05rem; opacity: 0.9; padding-top: 2px; }
.merit b { display: block; color: var(--wine); margin-bottom: 4px; font-size: 1.02rem; }
.merit p { font-size: 0.9rem; color: var(--muted); }

/* ---------- 갤러리 마퀴 ---------- */
.gallery-band { padding-block: clamp(2.5rem, 5vw, 4rem); background: linear-gradient(var(--ivory), var(--pink-soft) 140%); }
.g-track { display: inline-flex; gap: 18px; padding-right: 18px; }
.g-track figure {
  width: clamp(220px, 30vw, 340px); aspect-ratio: 4/3; border-radius: 14px; overflow: hidden;
  box-shadow: 0 8px 22px rgba(87, 28, 49, 0.14); position: relative; flex: none;
}
.g-track img { width: 100%; height: 100%; object-fit: cover; }
.g-track figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 14px 10px;
  background: linear-gradient(transparent, rgba(62,18,34,0.75));
  color: #fff; font-size: 0.82rem; font-weight: 600;
}

/* ---------- 이벤트 배너 ---------- */
.event-banner {
  border-radius: calc(var(--radius) + 6px); overflow: hidden; position: relative;
  background: linear-gradient(120deg, var(--wine) 0%, var(--wine-deep) 60%, #6b2340 100%);
  color: #fff; padding: clamp(2.2rem, 5vw, 3.4rem);
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.8rem;
  box-shadow: var(--shadow);
}
.event-banner::before {
  content: "114"; position: absolute; right: -0.1em; bottom: -0.42em; z-index: 0;
  font-family: var(--font-serif); font-weight: 900; font-size: clamp(7rem, 18vw, 13rem);
  color: rgba(228, 42, 110, 0.16); line-height: 1; pointer-events: none;
}
.event-banner .txt { position: relative; z-index: 1; flex: 1 1 380px; }
.event-tag {
  display: inline-block; background: var(--gold); color: var(--wine);
  font-weight: 800; font-size: 0.8rem; letter-spacing: 0.08em;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 1rem;
}
.event-banner h3 { font-family: var(--font-serif); font-size: clamp(1.35rem, 2.6vw, 1.9rem); line-height: 1.4; }
.event-banner h3 em { color: var(--gold); font-style: normal; }
.event-banner p { margin-top: 0.8rem; color: rgba(255,255,255,0.82); font-size: 0.95rem; }
.event-banner .act { position: relative; z-index: 1; }

/* ---------- 오시는길 프리뷰 / 위치 ---------- */
.loc-grid { display: grid; grid-template-columns: 6fr 5fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.loc-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.info-list li { display: flex; gap: 14px; padding: 13px 0; border-bottom: 1px dashed var(--line); font-size: 0.98rem; }
.info-list li:last-child { border-bottom: 0; }
.info-list .k { flex: none; width: 92px; font-weight: 700; color: var(--pink-deep); }
.info-list .v b { color: var(--wine); }
.copy-btn {
  margin-left: 8px; border: 1px solid var(--line); background: #fff; color: var(--muted);
  font-size: 0.78rem; padding: 3px 10px; border-radius: 999px; cursor: pointer;
  transition: all 0.2s;
}
.copy-btn:hover { border-color: var(--pink); color: var(--pink); }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 16/9; min-height: 300px; background: var(--pink-soft); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.2rem; }
.map-links a {
  flex: 1 1 160px; text-align: center; font-weight: 700; font-size: 0.95rem;
  padding: 13px 18px; border-radius: 12px; border: 1.5px solid var(--line); background: #fff;
  transition: all 0.25s var(--mo-ease);
}
.map-links a:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--pink); color: var(--pink); }

/* ---------- 최종 CTA ---------- */
.final-cta {
  background:
    linear-gradient(rgba(62, 18, 34, 0.9), rgba(62, 18, 34, 0.94)),
    url("../assets/park-2.webp") center/cover;
  color: #fff; text-align: center;
}
.final-cta h2 { font-family: var(--font-serif); color: #fff; }
.final-cta .desc { color: rgba(255,255,255,0.85); margin: 1.1rem auto 2.2rem; max-width: 36em; }
.final-cta .tel-big {
  font-family: var(--font-serif); font-weight: 900; color: var(--gold);
  font-size: clamp(1.9rem, 5vw, 3.2rem); letter-spacing: 0.02em; display: inline-block; margin-bottom: 1.6rem;
}

/* ---------- 페이지(서브) 히어로 ---------- */
.page-hero {
  position: relative; padding: 150px 0 70px; color: #fff; overflow: hidden;
  background: var(--wine);
}
.page-hero .bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.35; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(62,18,34,0.85), rgba(62,18,34,0.25)); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-serif); font-weight: 900; }
.page-hero .crumb { margin-bottom: 0.8rem; font-size: 0.88rem; color: rgba(255,255,255,0.75); }
.page-hero .crumb a:hover { color: var(--gold); }
.page-hero .lead { margin-top: 0.9rem; color: rgba(255,255,255,0.88); max-width: 40em; }

/* ---------- 서비스 상세 ---------- */
.svc-detail { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); gap: clamp(1.4rem, 3vw, 2.2rem); }
.svc-block { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.svc-block .thumb { aspect-ratio: 16/8; overflow: hidden; }
.svc-block .thumb img { width: 100%; height: 100%; object-fit: cover; }
.svc-block .body { padding: clamp(1.4rem, 2.5vw, 2rem); flex: 1; }
.svc-block h3 { font-family: var(--font-serif); color: var(--wine); font-size: 1.3rem; margin-bottom: 0.6rem; }
.svc-block .who { font-size: 0.88rem; color: var(--pink-deep); font-weight: 700; margin-bottom: 0.8rem; }
.svc-block p { color: var(--muted); font-size: 0.96rem; }
.svc-block ul { margin-top: 1rem; }
.svc-block ul li { position: relative; padding: 5px 0 5px 22px; font-size: 0.93rem; color: #574851; }
.svc-block ul li::before { content: ""; position: absolute; left: 4px; top: 13px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

/* ---------- 프로세스 타임라인 ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr)); gap: 1.2rem; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.3rem; position: relative; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--font-serif); font-weight: 900; font-size: 1.6rem;
  background: linear-gradient(135deg, var(--pink), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: 0.6rem;
}
.step b { display: block; color: var(--wine); margin-bottom: 5px; }
.step p { font-size: 0.88rem; color: var(--muted); }

/* ---------- 편의/안내 카드 ---------- */
.amenity { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1rem; }
.amenity .em { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.amenity b { color: var(--wine); font-size: 0.98rem; }
.amenity span { display: block; font-size: 0.82rem; color: var(--muted); margin-top: 4px; }

/* ---------- 공지/이벤트 ---------- */
.notice-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 1.4rem;
}
.notice-card .meta { display: flex; align-items: center; gap: 10px; margin-bottom: 0.9rem; }
.tag { font-size: 0.75rem; font-weight: 800; padding: 5px 12px; border-radius: 999px; letter-spacing: 0.05em; }
.tag-event { background: linear-gradient(135deg, var(--pink), var(--pink-deep)); color: #fff; }
.tag-notice { background: var(--pink-soft); color: var(--pink-deep); }
.notice-card .date { font-size: 0.82rem; color: var(--muted); }
.notice-card h3 { font-family: var(--font-serif); color: var(--wine); font-size: 1.25rem; margin-bottom: 0.7rem; }
.notice-card p { color: #574851; font-size: 0.97rem; }
.notice-card .fine { margin-top: 0.9rem; font-size: 0.83rem; color: var(--muted); }

/* ---------- 법적 문서 ---------- */
.legal { max-width: 820px; }
.legal h2 { font-size: 1.15rem; color: var(--wine); margin: 2.2rem 0 0.7rem; font-family: var(--font-serif); }
.legal p, .legal li { font-size: 0.94rem; color: #574851; }
.legal ul { padding-left: 1.2rem; list-style: disc; }
.legal table { width: 100%; border-collapse: collapse; margin: 0.8rem 0; font-size: 0.9rem; }
.legal th, .legal td { border: 1px solid var(--line); padding: 9px 12px; text-align: left; }
.legal th { background: var(--pink-soft); color: var(--wine); }

/* ---------- 푸터 ---------- */
footer { background: var(--wine-deep); color: rgba(255,255,255,0.78); font-size: 0.9rem; }
.f-top { display: flex; flex-wrap: wrap; gap: 2.5rem; justify-content: space-between; padding: clamp(2.5rem, 5vw, 4rem) 0 2rem; }
.f-brand .logo { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 900; color: #fff; }
.f-brand .logo .n114 { color: var(--pink); }
.f-brand p { margin-top: 0.8rem; max-width: 30em; font-size: 0.88rem; }
.f-info li { display: flex; gap: 10px; padding: 3px 0; }
.f-info .k { color: rgba(255,255,255,0.5); flex: none; width: 110px; }
.f-info a:hover { color: var(--gold); }
.f-links { display: flex; gap: 18px; flex-wrap: wrap; }
.f-links a { font-weight: 600; color: rgba(255,255,255,0.85); }
.f-links a:hover { color: var(--gold); }
.f-bottom {
  border-top: 1px solid rgba(255,255,255,0.12); padding: 1.4rem 0 2rem;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
}
.f-credit a { color: var(--gold); font-weight: 700; }
.f-credit a:hover { text-decoration: underline; }

/* ---------- 플로팅 버튼 ---------- */
.fab-group { position: fixed; right: 18px; bottom: 84px; display: flex; flex-direction: column; gap: 12px; z-index: 900; }
.fab {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.22); transition: transform 0.25s var(--mo-ease);
}
.fab:hover { transform: translateY(-4px) scale(1.05); }
.fab svg { width: 26px; height: 26px; }
.fab-call { background: linear-gradient(135deg, var(--pink), var(--pink-deep)); color: #fff; position: relative; }
.fab-call::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(228, 42, 110, 0.55);
  animation: pulse 2.2s var(--mo-ease) 1.2s 3;
}
@keyframes pulse { to { box-shadow: 0 0 0 22px rgba(228, 42, 110, 0); } }
.fab-naver { background: #03C75A; color: #fff; font-weight: 900; font-size: 1.15rem; font-family: var(--font-sans); }
.motion-top { right: 18px; bottom: 20px; }

/* ---------- 반응형 ---------- */
@media (max-width: 900px) {
  .story-grid, .loc-grid { grid-template-columns: 1fr; }
  .story-photo { max-width: 420px; margin-inline: auto; }
  .f-info .k { width: 90px; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-hint::after, .fab-call::after { animation: none; }
  .hero h1 .u-draw::after { transform: scaleX(1); transition: none; }
}
