/* ============================================================
   고은심리상담센터 — Quiet Sage Editorial
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
	/* surfaces */
	--bg: #FBF8F3;
	--surface: #FFFFFF;
	--surface-sage: #EEF2EA;

	/* sage scale */
	--sage-700: #4F6B52;
	--sage-600: #5E7D61;
	--sage-400: #9DB59E;
	--sage-300: #C2D6B9;
	--sage-100: #DCE6DA;

	/* warmth */
	--peach-500: #E8A98C;
	--peach-400: #EFB89E;
	--peach-300: #F6D8C7;
	--sky-500: #8FB3C9;

	/* ink */
	--ink-900: #2E332C;
	--ink-600: #5A6157;
	--ink-400: #8A9084;

	/* lines */
	--gold-line: #C9B083;
	--line: #E4E7DF;

	/* type */
	--font: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
		"Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
	--step--1: 0.875rem;
	--step-0: 1rem;
	--step-1: clamp(1.05rem, 1rem + 0.5vw, 1.25rem);
	--step-2: clamp(1.25rem, 1.1rem + 0.8vw, 1.6rem);
	--step-3: clamp(1.75rem, 1.4rem + 1.6vw, 2.5rem);
	--step-4: clamp(2.4rem, 1.7rem + 2.8vw, 4rem);

	/* layout */
	--container: 1120px;
	--gutter: clamp(20px, 5vw, 40px);
	--section-y: clamp(4rem, 8vw, 7rem);
	--radius-lg: 24px;
	--radius-md: 18px;
	--radius-sm: 12px;

	/* sage-tinted shadows (never gray) */
	--shadow-sm: 0 4px 14px rgba(79, 107, 82, 0.07);
	--shadow-md: 0 10px 30px rgba(79, 107, 82, 0.10);
	--shadow-lg: 0 24px 60px rgba(79, 107, 82, 0.12);

	--header-h: 64px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 16px);
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--font);
	font-size: var(--step-0);
	line-height: 1.8;
	color: var(--ink-900);
	background: var(--bg);
	word-break: keep-all;
	overflow-wrap: anywhere;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

@media (min-width: 768px) {
	body { font-size: 1.0625rem; }
}

img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
strong { font-weight: 600; }
:focus-visible {
	outline: 2px solid var(--sage-700);
	outline-offset: 2px;
	border-radius: 4px;
}
.nowrap { white-space: nowrap; }
.hanja {
	font-family: "Nanum Myeongjo", "Noto Serif KR", "Apple Myungjo", Batang, serif;
	font-weight: 500;
	font-size: 0.62em;
	letter-spacing: 0;
	margin-left: 0.16em;
	color: var(--sage-700);
}

/* numbers */
.stat-num, .tl-year, .hero-micro { font-variant-numeric: tabular-nums; }

/* ---------- Skip link ---------- */
.skip-link {
	position: fixed;
	top: 8px;
	left: 50%;
	z-index: 200;
	transform: translate(-50%, -150%);
	background: var(--sage-700);
	color: #fff;
	padding: 10px 18px;
	border-radius: 999px;
	font-size: 0.9rem;
	transition: transform 0.2s ease;
}
.skip-link:focus { transform: translate(-50%, 0); }

/* ---------- Layout helpers ---------- */
.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}
.narrow { max-width: 720px; }
.center { text-align: center; }

section { position: relative; }
.trust, .director, .credentials, .services, .facility, .location {
	padding-block: var(--section-y);
}
.intro, .program { padding-block: var(--section-y); }

.band-sage { background: var(--surface-sage); }

/* ---------- Eyebrow + section head ---------- */
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	color: var(--sage-700);
	text-transform: uppercase;
	margin-bottom: 14px;
}
.eyebrow-line {
	width: 24px;
	height: 1px;
	background: var(--gold-line);
	display: inline-block;
}
.section-head { margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head.center { display: flex; flex-direction: column; align-items: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-title {
	font-size: var(--step-3);
	font-weight: 700;
	line-height: 1.32;
	letter-spacing: -0.02em;
	color: var(--ink-900);
}
.section-lead {
	margin-top: 16px;
	max-width: 56ch;
	color: var(--ink-600);
	font-size: var(--step-1);
}
.section-head.center .section-lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	font-weight: 600;
	line-height: 1;
	border-radius: 999px;
	padding: 14px 26px;
	min-height: 48px;
	transition: transform 0.18s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
	white-space: nowrap;
}
.btn .ico { width: 1.15em; height: 1.15em; flex: none; }
.btn-lg { min-height: 56px; padding: 16px 30px; font-size: 1.0625rem; }
.btn-compact { padding: 9px 16px; min-height: 40px; font-size: 0.9rem; }
.btn-block { width: 100%; }

.btn-kakao {
	background: var(--peach-500);
	color: var(--ink-900);
	box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.btn-kakao .ico { fill: currentColor; }
.btn-ghost {
	background: transparent;
	color: var(--sage-700);
	border: 1px solid var(--sage-400);
}
@media (hover: hover) and (pointer: fine) {
	.btn-kakao:hover { background: var(--peach-400); transform: translateY(-2px); box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.3); }
	.btn-ghost:hover { border-color: var(--sage-700); background: rgba(79, 107, 82, 0.05); transform: translateY(-2px); }
}
.btn:active { transform: scale(0.985); }

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--sage-700);
	font-weight: 600;
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s ease, gap 0.2s ease;
}
.text-link .ico-mini { width: 18px; height: 18px; }
.text-link:hover { border-color: var(--sage-400); gap: 11px; }

.ico-mini { width: 1.1em; height: 1.1em; flex: none; vertical-align: -0.15em; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	height: var(--header-h);
	background: rgba(251, 248, 243, 0.86);
	-webkit-backdrop-filter: saturate(180%) blur(10px);
	backdrop-filter: saturate(180%) blur(10px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled {
	border-bottom-color: var(--sage-100);
	box-shadow: 0 1px 0 rgba(79, 107, 82, 0.03);
}
.header-inner {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark { width: 36px; height: 36px; }
.brand-name { font-weight: 700; font-size: 1.0625rem; letter-spacing: -0.02em; color: var(--ink-900); }

.nav-desktop { display: flex; gap: clamp(18px, 2.4vw, 34px); }
.nav-desktop a {
	font-weight: 500;
	font-size: 0.97rem;
	color: var(--ink-600);
	padding: 6px 2px;
	position: relative;
	transition: color 0.2s ease;
}
.nav-desktop a::after {
	content: "";
	position: absolute;
	left: 0; bottom: -2px;
	width: 0; height: 1.5px;
	background: var(--sage-600);
	transition: width 0.25s ease;
}
.nav-desktop a:hover { color: var(--sage-700); }
.nav-desktop a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
	display: none;
	width: 44px; height: 44px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
}
.nav-toggle-bar {
	width: 22px; height: 2px;
	background: var(--ink-900);
	border-radius: 2px;
	transition: transform 0.28s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile nav sheet ---------- */
.nav-sheet {
	position: fixed;
	inset: 0;
	z-index: 99;
	background: var(--bg);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: calc(var(--header-h) + 24px) var(--gutter) 40px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s;
}
.nav-sheet.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-sheet-inner { width: 100%; max-width: 460px; margin-inline: auto; }
.nav-sheet-links { display: flex; flex-direction: column; gap: 4px; }
.nav-sheet-links a {
	font-size: 1.5rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--ink-900);
	padding: 14px 4px;
	border-bottom: 1px solid var(--line);
}
.nav-sheet-links a:active { color: var(--sage-700); }
.nav-sheet-contact { margin-top: 28px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.nav-sheet-tel { font-weight: 600; color: var(--ink-600); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
	position: relative;
	overflow: hidden;
	padding-block: clamp(2.5rem, 6vw, 5.5rem);
	min-height: clamp(540px, 86vh, 760px);
	display: flex;
	align-items: center;
}
.hero-grid {
	display: grid;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero-title {
	font-size: var(--step-4);
	font-weight: 300;
	line-height: 1.24;
	letter-spacing: -0.03em;
	color: var(--ink-900);
	margin-block: 6px 22px;
}
.hero-lead {
	font-size: var(--step-1);
	color: var(--ink-600);
	max-width: 30ch;
	margin-bottom: 30px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.hero-micro {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.875rem;
	color: var(--ink-600);
	font-weight: 500;
}
.hero-micro .ico-mini { color: var(--sage-600); width: 18px; height: 18px; }

.hero-visual { position: relative; z-index: 2; }
.frame {
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--line);
	box-shadow: var(--shadow-lg);
	background: var(--surface);
}
.frame img { width: 100%; height: auto; }

/* decorative blobs */
.blob {
	position: absolute;
	border-radius: 42% 58% 63% 37% / 49% 41% 59% 51%;
	filter: blur(40px);
	opacity: 0.5;
	z-index: 0;
	pointer-events: none;
	contain: layout paint;
}
.blob-peach { width: 360px; height: 360px; background: var(--peach-300); top: -90px; right: -60px; animation: breathe 18s ease-in-out infinite; }
.blob-sage { width: 320px; height: 320px; background: var(--sage-100); bottom: -100px; left: -80px; animation: breathe 22s ease-in-out infinite reverse; }
@keyframes breathe {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.05); }
}

/* ============================================================
   INTRO
   ============================================================ */
.intro { text-align: center; }
.flower { width: 52px; height: 52px; color: var(--sage-700); margin: 0 auto 22px; }
.intro-q {
	font-size: var(--step-2);
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: -0.02em;
	color: var(--ink-900);
	margin-bottom: 20px;
}
.intro-body {
	font-size: var(--step-1);
	line-height: 1.9;
	color: var(--ink-600);
}
.intro-body strong { color: var(--sage-700); font-weight: 600; }

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr;
}
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
.trust-card {
	position: relative;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	padding: 30px 26px;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.trust-card--accent { border-left: 4px solid var(--peach-300); }
.trust-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px; height: 48px;
	border-radius: 50%;
	background: var(--sage-100);
	color: var(--sage-700);
	margin-bottom: 18px;
}
.trust-ico svg { width: 26px; height: 26px; }
.trust-status {
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--sage-600);
	margin-bottom: 6px;
}
.trust-org { display: block; font-size: 0.85rem; font-weight: 500; color: var(--ink-600); margin-bottom: 3px; }
.trust-name { font-size: 1.125rem; font-weight: 600; line-height: 1.4; color: var(--ink-900); margin-bottom: 12px; }
.trust-fact { font-size: 0.95rem; color: var(--ink-600); line-height: 1.7; }
@media (hover: hover) and (pointer: fine) {
	.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sage-300); }
}

/* ============================================================
   DIRECTOR
   ============================================================ */
.director-grid {
	display: grid;
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: center;
}
.director-visual { display: flex; justify-content: center; position: relative; }
.portrait {
	position: relative;
	max-width: 360px;
	width: 100%;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
}
.portrait::after {
	content: "";
	position: absolute;
	inset: 8px;
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 18px;
	pointer-events: none;
}
.portrait img { width: 100%; height: auto; display: block; }

.director-name { font-size: var(--step-3); font-weight: 700; letter-spacing: -0.02em; color: var(--ink-900); margin-bottom: 6px; }
.director-role { color: var(--sage-700); font-weight: 500; margin-bottom: 26px; }
.director-quote {
	position: relative;
	font-size: var(--step-2);
	font-weight: 300;
	line-height: 1.6;
	letter-spacing: -0.01em;
	color: var(--sage-700);
	padding-left: 22px;
	border-left: 2px solid var(--sage-300);
	margin-bottom: 26px;
}
.director-note {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	background: var(--surface-sage);
	border-radius: var(--radius-sm);
	padding: 16px 18px;
	color: var(--ink-900);
	font-weight: 500;
	margin-bottom: 22px;
}
.director-note .ico-mini { color: var(--sage-600); margin-top: 3px; width: 20px; height: 20px; }

/* gallery-mat frame around portrait (offset outline) */
.director-visual::before {
	content: "";
	position: absolute;
	inset: clamp(-14px, -2vw, -10px);
	border: 1px solid var(--sage-400);
	border-radius: calc(var(--radius-lg) + 8px);
	max-width: 392px;
	width: calc(100% + 28px);
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
	opacity: 0.55;
}

/* ============================================================
   CREDENTIALS
   ============================================================ */
.cred-layout {
	display: grid;
	gap: clamp(2rem, 5vw, 4rem);
}
@media (min-width: 900px) { .cred-layout { grid-template-columns: 0.85fr 1fr; } }
.cred-subtitle {
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--ink-900);
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--line);
}
.chip-list { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
	display: inline-flex;
	align-items: baseline;
	gap: 6px;
	background: var(--sage-100);
	color: var(--sage-700);
	font-weight: 500;
	font-size: 0.95rem;
	padding: 9px 16px;
	border-radius: 999px;
}
.chip-sub { font-size: 0.8rem; color: var(--sage-600); font-weight: 500; }
.chip-strong { background: var(--sage-700); color: #fff; font-weight: 600; }
.chip-muted { background: transparent; border: 1px solid var(--line); color: var(--ink-600); }

/* timeline */
.timeline { position: relative; padding-left: 26px; }
.timeline::before {
	content: "";
	position: absolute;
	left: 6px; top: 6px; bottom: 6px;
	width: 1.5px;
	background: var(--sage-300);
}
.tl-item {
	position: relative;
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 6px 14px;
	align-items: baseline;
	padding: 12px 0;
}
.tl-item + .tl-item { border-top: 1px solid var(--line); }
.tl-mark {
	position: absolute;
	left: -26px; top: 18px;
	width: 13px; height: 13px;
	border-radius: 50%;
	background: var(--surface);
	border: 2px solid var(--sage-300);
	transition: background-color 0.3s ease, border-color 0.3s ease;
}
.cred-block.is-visible .tl-mark { background: var(--sage-600); border-color: var(--sage-600); }
.tl-year {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--ink-600);
	white-space: nowrap;
}
.tl-now .tl-year { color: var(--sage-600); }
.tl-body { color: var(--ink-600); font-size: 0.97rem; line-height: 1.6; }
.tl-body strong { color: var(--ink-900); font-weight: 600; }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}
@media (min-width: 560px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .svc-grid { grid-template-columns: repeat(4, 1fr); } }
.svc-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	padding: 24px 22px;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.svc-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px; height: 46px;
	border-radius: 14px;
	background: var(--sage-100);
	color: var(--sage-700);
	margin-bottom: 16px;
	transition: background-color 0.2s ease, color 0.2s ease;
}
.svc-ico svg { width: 26px; height: 26px; }
.svc-card--sky .svc-ico { background: rgba(143, 179, 201, 0.18); color: #5d87a0; }
.svc-name { font-size: 1.0625rem; font-weight: 600; color: var(--ink-900); margin-bottom: 4px; }
.svc-desc { font-size: 0.92rem; color: var(--ink-600); }
@media (hover: hover) and (pointer: fine) {
	.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sage-300); }
	.svc-card:hover .svc-ico { background: var(--peach-300); color: var(--ink-900); }
	.svc-card--sky:hover .svc-ico { background: rgba(143, 179, 201, 0.3); color: #4f7d98; }
}

/* ============================================================
   PROGRAM (마음투자)
   ============================================================ */
.program-grid {
	display: grid;
	gap: clamp(2rem, 4vw, 3rem);
	align-items: center;
}
@media (min-width: 860px) { .program-grid { grid-template-columns: 1fr 1fr; } }
.program-text { margin-top: 16px; font-size: var(--step-1); color: var(--ink-600); line-height: 1.85; }
.program-text strong { color: var(--sage-700); font-weight: 600; }
.program-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	padding: 28px;
	box-shadow: var(--shadow-sm);
}
.info-rows { margin-bottom: 22px; }
.info-row {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 16px;
	align-items: baseline;
	padding: 16px 0;
}
.info-row + .info-row { border-top: 1px solid var(--line); }
.info-row dt { font-weight: 700; color: var(--sage-700); }
.info-row dd { color: var(--ink-600); }

/* ============================================================
   FACILITY (주차)
   ============================================================ */
.facility { background: var(--surface-sage); }
.facility-inner { display: grid; gap: clamp(1.75rem, 4vw, 3rem); align-items: center; }
@media (min-width: 860px) { .facility-inner { grid-template-columns: 0.9fr 1.1fr; } }
.stat-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(12px, 2vw, 24px);
}
.stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 6px;
}
.stat-ico { color: var(--sage-700); margin-bottom: 4px; }
.stat-ico svg { width: 38px; height: 38px; }
.stat-num {
	font-size: var(--step-3);
	font-weight: 600;
	color: var(--sage-700);
	line-height: 1.1;
	letter-spacing: -0.02em;
}
.stat-unit { font-size: 0.5em; font-weight: 600; color: var(--ink-600); letter-spacing: 0; }
.stat-label { font-size: 0.9rem; color: var(--ink-600); }

/* ============================================================
   LOCATION
   ============================================================ */
.location-grid {
	display: grid;
	gap: clamp(1.5rem, 3.5vw, 2.5rem);
}
@media (min-width: 860px) { .location-grid { grid-template-columns: 1fr 1fr; align-items: stretch; } }

.map-card {
	display: flex;
	align-items: center;
	gap: 16px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	padding: 28px;
	min-height: 200px;
	position: relative;
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.map-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 78% 30%, rgba(143, 179, 201, 0.12), transparent 45%),
		repeating-linear-gradient(45deg, rgba(79, 107, 82, 0.035) 0 2px, transparent 2px 16px);
	pointer-events: none;
}
.map-pin {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px; height: 60px;
	border-radius: 50%;
	background: var(--sage-100);
	color: var(--sage-700);
	flex: none;
}
.map-pin svg { width: 32px; height: 32px; }
.map-card-text { position: relative; }
.map-card-text strong { display: block; font-size: 1.0625rem; color: var(--ink-900); margin-bottom: 4px; }
.map-card-text span { font-size: 0.9rem; color: var(--ink-600); }
.map-card-arrow { width: 22px; height: 22px; color: var(--sage-600); margin-left: auto; flex: none; }
@media (hover: hover) and (pointer: fine) {
	.map-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--sage-300); }
}

.location-info { display: flex; flex-direction: column; gap: 22px; }
.addr-main { font-size: 1.0625rem; font-weight: 600; color: var(--ink-900); line-height: 1.6; }
.addr-sub { color: var(--ink-600); margin-top: 4px; }

.contact-list { display: flex; flex-direction: column; gap: 10px; }
.contact-list a {
	display: flex;
	align-items: center;
	gap: 14px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	padding: 14px 16px;
	min-height: 56px;
	transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px; height: 40px;
	border-radius: 11px;
	background: var(--sage-100);
	color: var(--sage-700);
	flex: none;
}
.contact-ico svg { width: 22px; height: 22px; }
.contact-ico--kakao { background: #FEE500; color: #3A1D1D; }
.contact-ico--kakao svg { fill: currentColor; }
.contact-text { display: flex; flex-direction: column; line-height: 1.35; }
.contact-text strong { font-size: 1.0625rem; color: var(--ink-900); font-weight: 600; }
.contact-text span { font-size: 0.85rem; color: var(--ink-600); }
.contact-arrow { width: 18px; height: 18px; color: var(--ink-400); margin-left: auto; flex: none; }
@media (hover: hover) and (pointer: fine) {
	.contact-list a:hover { border-color: var(--sage-300); transform: translateX(3px); box-shadow: var(--shadow-sm); }
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-final {
	background: var(--sage-700);
	color: #fff;
	overflow: hidden;
	padding-block: clamp(4rem, 9vw, 7rem);
}
.cta-final .blob-cta { background: var(--peach-300); opacity: 0.16; top: -60px; right: -40px; width: 320px; height: 320px; }
.cta-inner { position: relative; z-index: 2; }
.cta-title { font-size: var(--step-3); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 16px; }
.cta-text { color: rgba(255, 255, 255, 0.85); font-size: var(--step-1); margin-bottom: 32px; }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.cta-tel { color: var(--sage-100); font-weight: 500; border-bottom: 1px solid rgba(220, 230, 218, 0.4); padding-bottom: 2px; }
.cta-tel:hover { color: #fff; border-color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink-900); color: var(--sage-100); padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.footer-grid {
	display: grid;
	gap: 28px;
	padding-bottom: 26px;
	border-bottom: 1px solid rgba(220, 230, 218, 0.14);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr auto; align-items: start; } }
.footer-logo { display: flex; align-items: center; gap: 14px; }
.footer-logo img { width: 44px; height: 44px; }
.footer-name { font-size: 1.125rem; font-weight: 700; color: #fff; letter-spacing: -0.01em; }
.footer-name .hanja { color: var(--sage-300); }
.footer-tag { font-size: 0.9rem; color: var(--sage-300); margin-top: 2px; }
.footer-info { font-size: 0.92rem; line-height: 1.9; color: var(--sage-100); }
@media (min-width: 768px) { .footer-info { text-align: right; } }
.footer-contact { margin-top: 8px; display: flex; flex-wrap: wrap; gap: 8px; }
@media (min-width: 768px) { .footer-contact { justify-content: flex-end; } }
.footer-contact a { color: #fff; font-weight: 500; }
.footer-contact a:hover { color: var(--peach-300); }
.footer-contact span { color: rgba(220, 230, 218, 0.4); }
.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	padding-top: 20px;
}
.copyright { font-size: 0.82rem; color: rgba(255, 255, 255, 0.6); }
.to-top { display: inline-flex; align-items: center; gap: 6px; font-size: 0.88rem; color: var(--sage-300); }
.to-top svg { width: 16px; height: 16px; }
.to-top:hover { color: #fff; }

/* ============================================================
   MOBILE STICKY ACTION BAR
   ============================================================ */
.action-bar {
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 90;
	display: none;
	gap: 10px;
	padding: 10px 14px;
	padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
	background: rgba(251, 248, 243, 0.94);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border-top: 1px solid var(--sage-100);
	transform: translateY(110%);
	visibility: hidden;
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.3s;
}
.action-bar.is-visible { transform: translateY(0); visibility: visible; }
.action-tel, .action-kakao {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 52px;
	border-radius: 999px;
	font-weight: 600;
}
.action-tel { flex: 0 0 auto; padding: 0 20px; border: 1px solid var(--sage-400); color: var(--sage-700); }
.action-tel .ico { width: 18px; height: 18px; }
.action-kakao { flex: 1; background: var(--peach-500); color: var(--ink-900); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3); }
.action-kakao .ico { width: 20px; height: 20px; fill: currentColor; }

@media (max-width: 720px) {
	.action-bar { display: flex; }
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
	position: fixed;
	top: 0; left: 0; right: 0;
	height: 3px;
	z-index: 120;
	pointer-events: none;
	background: transparent;
}
.scroll-progress span {
	display: block;
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, var(--sage-400), var(--sage-600));
	transform-origin: left center;
	transition: width 0.08s linear;
}

/* ============================================================
   NAV SCROLL-SPY ACTIVE STATE
   ============================================================ */
.nav-desktop a.is-active { color: var(--sage-700); }
.nav-desktop a.is-active::after { width: 100%; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.faq-item {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item[open] { border-color: var(--sage-300); box-shadow: var(--shadow-sm); }
.faq-item summary {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px 22px;
	cursor: pointer;
	list-style: none;
	min-height: 56px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q {
	flex: 1;
	font-weight: 600;
	font-size: 1.0625rem;
	color: var(--ink-900);
	letter-spacing: -0.01em;
}
.faq-mark {
	position: relative;
	flex: none;
	width: 22px; height: 22px;
}
.faq-mark::before, .faq-mark::after {
	content: "";
	position: absolute;
	top: 50%; left: 50%;
	width: 13px; height: 2px;
	border-radius: 2px;
	background: var(--sage-600);
	transform: translate(-50%, -50%);
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-mark::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-mark::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-a {
	padding: 0 22px 22px;
	color: var(--ink-600);
	line-height: 1.85;
}
.faq-a strong { color: var(--sage-700); font-weight: 600; }
/* expand animation */
.faq-item[open] .faq-a { animation: faqOpen 0.34s ease; }
@keyframes faqOpen {
	from { opacity: 0; transform: translateY(-6px); }
	to { opacity: 1; transform: translateY(0); }
}
@media (hover: hover) and (pointer: fine) {
	.faq-item:hover { border-color: var(--sage-300); }
}

/* ============================================================
   VISITOR COUNTER (footer, subtle)
   ============================================================ */
.visitor {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 0.8rem;
	color: rgba(220, 230, 218, 0.55);
	font-variant-numeric: tabular-nums;
}
.visitor-ico { width: 15px; height: 15px; color: var(--sage-400); opacity: 0.8; }
.visitor-label { letter-spacing: 0.02em; }
.visitor-num { font-weight: 600; color: var(--sage-300); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: calc(var(--i, 0) * 70ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 900px) {
	.hero-grid { grid-template-columns: 1.15fr 0.85fr; }
}
@media (min-width: 860px) {
	.director-grid { grid-template-columns: 0.8fr 1fr; }
}

/* show/hide line breaks */
.br-mobile { display: none; }
@media (max-width: 600px) {
	.br-mobile { display: inline; }
}

/* tablet/mobile header */
@media (max-width: 900px) {
	.nav-desktop { display: none; }
	.nav-toggle { display: flex; }
}
@media (max-width: 420px) {
	.brand-name { display: none; }
}

/* hero image below copy on mobile, height-capped */
@media (max-width: 899px) {
	.hero { min-height: auto; padding-block: clamp(2rem, 8vw, 3rem); }
	.hero-visual { order: 2; }
	.hero-copy { order: 1; }
	.frame img { max-height: 60vh; width: 100%; object-fit: cover; }
}

/* stat row keeps 3-up but allows wrap on very small */
@media (max-width: 380px) {
	.stat-num { font-size: 1.5rem; }
	.btn-lg { width: 100%; }
	.hero-cta { width: 100%; }
	.hero-cta .btn { width: 100%; }
}

/* avoid action bar overlapping footer content on small screens */
@media (max-width: 720px) {
	.site-footer { padding-bottom: calc(clamp(2.5rem, 5vw, 3.5rem) + 72px); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}
	.reveal { opacity: 1 !important; transform: none !important; }
	.blob { animation: none !important; }
}
