/* ==========================================================================
   Medicell Dental – Main Styles
   Color palette: Navy (#1a2543) + Ivory (#f4ecd8) + Cream (#fdfaf3)
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
	/* Colors */
	--navy:           #1a2543;
	--navy-2:         #20304a;
	--navy-3:         #2c3a55;
	--ivory:          #f4ecd8;
	--ivory-2:        #ebe0c5;
	--cream:          #fdfaf3;
	--cream-2:        #f8f3e7;
	--white:          #ffffff;
	--gold:           #c9a961;
	--gold-2:         #b8954a;
	--text:           #2a2a2a;
	--text-mute:      #6b6b6b;
	--text-light:     #9a9a9a;
	--border:         #e6dfcf;
	--border-light:   #f0eadb;

	/* Type */
	--font-sans:      "Pretendard Variable", "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, "Apple SD Gothic Neo", "Noto Sans JP", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
	--font-serif:     "Cormorant Garamond", "Pretendard Variable", "Pretendard", Georgia, serif;
	--font-display:   "Pretendard Variable", "Pretendard", -apple-system, system-ui, sans-serif;

	/* Layout */
	--container:      1240px;
	--container-nar:  860px;
	--gutter:         24px;
	--header-h:       80px;
	--radius:         4px;
	--radius-lg:      8px;

	/* Easing */
	--ease:           cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.7;
	color: var(--text);
	background: var(--cream);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--gold-2); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: -.025em;
	line-height: 1.25;
	margin: 0 0 .6em;
	color: var(--navy);
}
h1 { font-weight: 800; letter-spacing: -.035em; line-height: 1.15; }
h2 { font-weight: 700; letter-spacing: -.03em;  line-height: 1.2;  }
h3 { font-weight: 700; letter-spacing: -.02em;  line-height: 1.3;  }
h4 { font-weight: 600; letter-spacing: -.01em;  line-height: 1.4;  }
p  { margin: 0 0 1em; }
strong, b { font-weight: 700; color: var(--navy); }

/* Accessibility */
.screen-reader-text {
	position: absolute !important; clip: rect(1px,1px,1px,1px);
	width: 1px; height: 1px; overflow: hidden; white-space: nowrap;
}
.skip-link {
	position: absolute; left: -9999px; top: 0;
	background: var(--navy); color: var(--ivory); padding: 12px 18px;
	z-index: 9999;
}
.skip-link:focus { left: 10px; top: 10px; }

/* ---------- Container ---------- */
.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
}
.container.narrow { max-width: var(--container-nar); }
.center { text-align: center; }

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(255,255,255,0.96);
	backdrop-filter: saturate(180%) blur(12px);
	-webkit-backdrop-filter: saturate(180%) blur(12px);
	border-bottom: 1px solid var(--border-light);
	transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header[data-scroll="down"] {
	box-shadow: 0 4px 20px rgba(26,37,67,0.06);
}
.header-inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
	height: var(--header-h);
	display: flex; align-items: center; justify-content: space-between;
	gap: 28px;
}

/* Brand */
.brand-text {
	display: flex; align-items: center; gap: 10px;
	color: var(--navy);
}
.brand-mark {
	width: 38px; height: 38px;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--navy); color: var(--ivory);
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 20px;
	border-radius: 50%;
}
.brand-name {
	display: flex; flex-direction: column; line-height: 1.05;
}
.brand-name-line1 {
	font-family: var(--font-serif);
	font-size: 19px;
	font-weight: 500;
	color: var(--navy);
}
.brand-name-line2 {
	font-size: 9px;
	letter-spacing: .28em;
	color: var(--text-mute);
	margin-top: 2px;
}
.custom-logo-link img { max-height: 44px; width: auto; }

/* Primary nav */
.main-navigation { display: flex; }
.primary-menu {
	list-style: none; margin: 0; padding: 0;
	display: flex; gap: 34px;
}
.primary-menu > li > a {
	font-size: 14px;
	font-weight: 500;
	color: var(--navy);
	letter-spacing: -.005em;
	position: relative;
	padding: 8px 0;
}
.primary-menu > li > a::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
	height: 1px; background: var(--gold);
	transform: scaleX(0); transform-origin: left;
	transition: transform .3s var(--ease);
}
.primary-menu > li > a:hover::after,
.primary-menu > .current-menu-item > a::after { transform: scaleX(1); }

/* Submenu */
.primary-menu .sub-menu {
	position: absolute;
	background: var(--white);
	border: 1px solid var(--border-light);
	padding: 12px 0;
	min-width: 200px;
	margin-top: 14px;
	opacity: 0; visibility: hidden;
	transform: translateY(8px);
	transition: all .25s var(--ease);
	list-style: none;
	box-shadow: 0 20px 40px rgba(26,37,67,0.08);
}
.primary-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.primary-menu .sub-menu a { display: block; padding: 8px 18px; font-size: 13px; }
.primary-menu .sub-menu a:hover { background: var(--cream-2); }

/* Right cluster */
.header-right { display: flex; align-items: center; gap: 14px; }

/* Language switcher */
.lang-switcher {
	display: inline-flex;
	background: var(--cream-2);
	border-radius: 999px;
	padding: 4px;
	gap: 2px;
}
.lang-btn {
	border: 0; background: transparent;
	color: var(--text-mute);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .08em;
	padding: 6px 12px;
	border-radius: 999px;
	transition: all .25s var(--ease);
}
.lang-btn:hover { color: var(--navy); }
.lang-btn.is-active {
	background: var(--navy);
	color: var(--ivory);
	box-shadow: 0 2px 8px rgba(26,37,67,0.2);
}

/* Mobile menu toggle */
.menu-toggle {
	display: none;
	width: 44px; height: 44px;
	background: transparent; border: 0;
	flex-direction: column; gap: 5px;
	align-items: center; justify-content: center;
	border-radius: var(--radius);
}
.menu-toggle .bar {
	width: 22px; height: 1.5px; background: var(--navy);
	transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.menu-toggle.is-open .bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.is-open .bar:nth-child(2) { opacity: 0; }
.menu-toggle.is-open .bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
	display: inline-flex;
	align-items: center; justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .02em;
	border-radius: 2px;
	border: 1px solid transparent;
	transition: all .3s var(--ease);
	cursor: pointer;
	white-space: nowrap;
}
.btn-primary {
	background: var(--navy); color: var(--ivory);
	border-color: var(--navy);
}
.btn-primary:hover { background: var(--navy-2); color: var(--white); transform: translateY(-1px); }
.btn-ghost {
	background: transparent; color: var(--ivory);
	border-color: var(--ivory);
}
.btn-ghost:hover { background: var(--ivory); color: var(--navy); }
.btn-outline-ivory {
	background: transparent; color: var(--ivory);
	border-color: rgba(244,236,216,0.4);
}
.btn-outline-ivory:hover { background: var(--ivory); color: var(--navy); border-color: var(--ivory); }
.btn-ghost-dark {
	background: transparent; color: var(--navy);
	border-color: var(--navy);
}
.btn-ghost-dark:hover { background: var(--navy); color: var(--ivory); }

/* On dark CTA sections, ghost-dark must use light colors to be visible */
.treatments-cta .btn-ghost-dark,
.tx-cta .btn-ghost-dark,
.story-cta .btn-ghost-dark {
	color: var(--ivory);
	border-color: rgba(244,236,216,0.5);
}
.treatments-cta .btn-ghost-dark:hover,
.tx-cta .btn-ghost-dark:hover,
.story-cta .btn-ghost-dark:hover {
	background: var(--ivory);
	color: var(--navy);
	border-color: var(--ivory);
}

/* =========================================================================
   FRONT PAGE
   ========================================================================= */

/* ---------- Hero ---------- */
.hero {
	position: relative;
	min-height: 720px;
	display: flex;
	align-items: center;
	overflow: hidden;
	color: var(--white);
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(26,37,67,0.55) 0%, rgba(26,37,67,0.65) 100%);
}
.hero-inner {
	position: relative; z-index: 2;
	max-width: var(--container);
	width: 100%;
	margin: 0 auto;
	padding: 0 var(--gutter);
	color: var(--white);
}
.hero-eyebrow {
	display: inline-block;
	font-size: 11px;
	letter-spacing: .3em;
	color: var(--ivory);
	margin-bottom: 24px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(244,236,216,0.4);
}
.hero-title {
	font-family: var(--font-serif);
	font-size: clamp(36px, 5.2vw, 64px);
	font-weight: 400;
	line-height: 1.2;
	color: var(--white);
	margin: 0 0 24px;
	max-width: 740px;
}
.hero-title em {
	font-style: italic;
	color: var(--ivory);
}
.hero-sub {
	font-size: 16px;
	line-height: 1.8;
	max-width: 540px;
	color: rgba(255,255,255,0.88);
	margin-bottom: 40px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-scroll {
	position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%);
	width: 24px; height: 40px;
	border: 1px solid rgba(255,255,255,0.4);
	border-radius: 12px;
	z-index: 3;
}
.hero-scroll span {
	display: block; width: 2px; height: 8px;
	background: var(--white);
	margin: 8px auto 0;
	border-radius: 1px;
	animation: scrollHint 1.6s ease-in-out infinite;
}
@keyframes scrollHint {
	0%, 100% { transform: translateY(0); opacity: 1; }
	50%      { transform: translateY(8px); opacity: 0.3; }
}

/* ---------- Hero: image-only mode (no text overlay) ---------- */
.hero-imageonly { min-height: 0; }
.hero-imageonly .hero-bg { position: relative; inset: auto; }
.hero-imageonly .hero-bg img {
	width: 100%;
	height: auto;
	max-height: 720px;
	object-fit: cover;
	display: block;
}
.hero-imageonly .hero-overlay,
.hero-imageonly .hero-inner,
.hero-imageonly .hero-scroll { display: none; }

/* =========================================================================
   MAGAZINE – tabs + Ajax post grid
   ========================================================================= */
.magazine {
	background: var(--cream);
	padding: 100px 0 110px;
}

/* Tabs */
.mag-tabs { margin: 0 auto 50px; }
.mag-tabs ul {
	list-style: none; padding: 0; margin: 0;
	display: grid;
	grid-template-columns: repeat(9, 1fr);
	gap: 6px;
	max-width: 1080px;
	margin: 0 auto;
}
.mag-tab {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 16px 6px;
	background: transparent;
	border: 1px solid transparent;
	border-radius: var(--radius);
	color: var(--text-mute);
	cursor: pointer;
	transition: all .3s var(--ease);
	font-family: inherit;
}
.mag-tab:hover {
	color: var(--navy);
	background: var(--white);
}
.mag-tab.is-active {
	color: var(--white);
	background: var(--navy);
	border-color: var(--navy);
}
.mag-tab-icon {
	display: inline-flex;
	align-items: center; justify-content: center;
	width: 40px; height: 40px;
	border-radius: 50%;
	background: var(--cream-2);
	color: var(--navy);
	transition: all .3s var(--ease);
	flex-shrink: 0;
}
.mag-tab-icon svg { width: 22px; height: 22px; }
.mag-tab:hover .mag-tab-icon {
	background: var(--ivory);
}
.mag-tab.is-active .mag-tab-icon {
	background: var(--ivory);
	color: var(--navy);
}
.mag-tab-label {
	font-size: 13px;
	font-weight: 500;
	letter-spacing: -.01em;
	white-space: nowrap;
}

/* Posts grid */
.mag-posts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	min-height: 240px;
	position: relative;
	transition: opacity .25s var(--ease);
}
.mag-posts.is-loading { opacity: .35; pointer-events: none; }
.mag-posts.is-loading::after {
	content: "";
	position: absolute; left: 50%; top: 80px;
	transform: translateX(-50%);
	width: 36px; height: 36px;
	border: 2px solid var(--cream-2);
	border-top-color: var(--navy);
	border-radius: 50%;
	animation: magspin .8s linear infinite;
}
@keyframes magspin { to { transform: translateX(-50%) rotate(360deg); } }

/* Magazine card */
.mag-card {
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform .35s var(--ease), box-shadow .35s var(--ease);
	border: 1px solid var(--border-light);
}
.mag-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 36px rgba(26,37,67,0.08);
}
.mag-card-link { display: block; color: inherit; }
.mag-card-link:hover { color: inherit; }

.mag-card-thumb {
	position: relative;
	aspect-ratio: 16/10;
	overflow: hidden;
	background: var(--cream-2);
}
.mag-card-thumb img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform .8s var(--ease);
}
.mag-card:hover .mag-card-thumb img { transform: scale(1.05); }
.mag-card-thumb-empty {
	width: 100%; height: 100%;
	background: linear-gradient(135deg, var(--cream-2), var(--ivory-2));
}
.mag-card-cat {
	position: absolute;
	left: 16px; top: 16px;
	background: var(--navy);
	color: var(--ivory);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .02em;
	padding: 5px 12px;
	border-radius: 2px;
}

.mag-card-body { padding: 22px 22px 24px; }
.mag-card-title {
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 600;
	color: var(--navy);
	margin: 0 0 10px;
	line-height: 1.4;
	letter-spacing: -.015em;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.mag-card-excerpt {
	font-size: 13px;
	color: var(--text-mute);
	line-height: 1.7;
	margin: 0 0 14px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.mag-card-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 12px;
	border-top: 1px solid var(--border-light);
}
.mag-card-date {
	font-size: 12px;
	color: var(--text-light);
	letter-spacing: -.005em;
}
.mag-card-more {
	font-size: 12px;
	color: var(--navy);
	font-weight: 500;
}

.mag-empty {
	grid-column: 1 / -1;
	text-align: center;
	padding: 60px 20px;
	color: var(--text-mute);
}

.mag-loadmore {
	margin-top: 50px;
	text-align: center;
}

/* ---------- Home: Treatments (icon tabs + 4-col image cards) ---------- */
.home-treatments {
	background: var(--white);
	padding: 100px 0 90px;
}

/* Tab strip spacing inside this section */
.home-treatments .tx-tabs { margin: 0 auto 50px; }
.home-treatments .tx-tabs ul { max-width: 880px; margin: 0 auto; }

/* 4-column image cards */
.home-tx-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);   /* PC: 4 columns */
	gap: 20px;
}
.home-tx-card {
	display: block;
	background: var(--white);
	border: 1px solid var(--border-light);
	border-radius: var(--radius);
	overflow: hidden;
	color: inherit;
	transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.home-tx-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 36px rgba(26,37,67,0.1);
	border-color: var(--tx-fg, var(--navy));
	color: inherit;
}

.home-tx-card-thumb {
	position: relative;
	margin: 0;
	aspect-ratio: 4/3;
	overflow: hidden;
	background: var(--tx-bg, var(--cream-2));
}
.home-tx-card-thumb img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform .8s var(--ease);
}
.home-tx-card:hover .home-tx-card-thumb img { transform: scale(1.06); }

.home-tx-card-num {
	position: absolute;
	left: 14px;
	bottom: -6px;
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 48px;
	font-weight: 500;
	color: var(--tx-fg, var(--navy));
	background: var(--white);
	padding: 0 6px;
	line-height: 1;
	letter-spacing: -.02em;
}

.home-tx-card-body { padding: 24px 20px 22px; }
.home-tx-card-en {
	display: block;
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 14px;
	color: var(--tx-fg, var(--gold-2));
	margin-bottom: 4px;
}
.home-tx-card-title {
	font-family: var(--font-serif);
	font-size: 22px;
	font-weight: 500;
	color: var(--navy);
	margin: 0 0 8px;
	letter-spacing: -.01em;
}
.home-tx-card-text {
	font-size: 13px;
	line-height: 1.65;
	color: var(--text-mute);
	margin: 0;
}

/* ---------- Story point ---------- */
.story-point {
	background: var(--white);
	padding: 110px 0;
	text-align: center;
	position: relative;
}
.point-eyebrow {
	display: inline-block;
	font-size: 11px;
	letter-spacing: .35em;
	color: var(--gold-2);
	margin-bottom: 16px;
	position: relative;
	padding: 0 30px;
}
.point-eyebrow::before, .point-eyebrow::after {
	content: ""; position: absolute; top: 50%;
	width: 20px; height: 1px; background: var(--gold);
}
.point-eyebrow::before { left: 0; }
.point-eyebrow::after { right: 0; }
.point-title {
	font-family: var(--font-serif);
	font-size: clamp(32px, 4vw, 44px);
	font-weight: 400;
	color: var(--navy);
	margin-bottom: 20px;
}
.point-desc {
	max-width: 560px; margin: 0 auto;
	color: var(--text-mute);
	font-size: 15px;
	line-height: 1.9;
}

/* ---------- Doctor band (navy section) ---------- */
.doctor-band {
	background: var(--navy);
	color: var(--ivory);
	padding: 100px 0;
	position: relative;
}
.doctor-band::before {
	content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
	background: linear-gradient(90deg, transparent, var(--gold), transparent);
	opacity: .3;
}
.doctor-band-inner {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 80px;
	align-items: center;
}
.doctor-eyebrow {
	display: block;
	font-size: 12px;
	letter-spacing: .25em;
	color: rgba(244,236,216,0.7);
	margin-bottom: 24px;
}
.doctor-name {
	font-family: var(--font-serif);
	font-size: clamp(40px, 5.5vw, 64px);
	font-weight: 400;
	color: var(--ivory);
	margin: 0 0 12px;
	line-height: 1.1;
}
.doctor-role {
	font-size: 14px;
	color: rgba(244,236,216,0.7);
	letter-spacing: .05em;
	margin: 0;
}
.doctor-quote {
	font-size: 16px;
	line-height: 1.95;
	color: rgba(244,236,216,0.92);
	margin-bottom: 32px;
}

/* ---------- Section header ---------- */
.section-header { margin-bottom: 60px; }
.section-header.is-center { text-align: center; }
.section-eyebrow {
	display: inline-block;
	font-size: 11px;
	letter-spacing: .3em;
	color: var(--gold-2);
	margin-bottom: 16px;
	font-weight: 500;
}
.section-title {
	font-family: var(--font-serif);
	font-size: clamp(30px, 3.6vw, 42px);
	font-weight: 400;
	color: var(--navy);
	margin: 0 0 16px;
}
.section-sub {
	font-size: 15px;
	color: var(--text-mute);
	max-width: 580px;
}
.section-header.is-center .section-sub { margin: 0 auto; }
.section-cta { text-align: center; margin-top: 50px; }

/* ---------- Clinic tour ---------- */
.clinic-tour { padding: 110px 0; background: var(--cream); }
.tour-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}
.tour-item {
	margin: 0;
	position: relative;
	overflow: hidden;
	border-radius: var(--radius);
}
.tour-item img {
	width: 100%; aspect-ratio: 3/4; object-fit: cover;
	transition: transform .8s var(--ease);
}
.tour-item:hover img { transform: scale(1.06); }
.tour-item figcaption {
	position: absolute; left: 16px; bottom: 16px;
	color: var(--white);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: .05em;
	text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* ---------- Equipment ---------- */
.equipment { padding: 110px 0; background: var(--white); }
.equipment-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	border-top: 1px solid var(--border);
	border-left: 1px solid var(--border);
}
.equipment-item {
	padding: 40px 32px;
	border-right: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	transition: background .3s var(--ease);
}
.equipment-item:hover { background: var(--cream); }
.equipment-item h3 {
	font-family: var(--font-serif);
	font-size: 24px;
	color: var(--navy);
	margin-bottom: 12px;
}
.equipment-item p {
	font-size: 14px;
	color: var(--text-mute);
	line-height: 1.7;
	margin: 0;
}

/* ---------- Philosophy ---------- */
.philosophy { padding: 110px 0; background: var(--cream-2); }
.philosophy-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; }
.philosophy-list {
	list-style: none; margin: 0; padding: 0;
	display: grid; gap: 28px;
}
.philosophy-list li {
	background: var(--white);
	padding: 32px 32px 32px 90px;
	position: relative;
	border-radius: var(--radius);
	box-shadow: 0 2px 12px rgba(26,37,67,0.04);
}
.philosophy-list .num {
	position: absolute; left: 32px; top: 32px;
	font-family: var(--font-serif);
	font-size: 32px; font-style: italic;
	color: var(--gold);
}
.philosophy-list h3 {
	font-size: 18px;
	margin: 0 0 8px;
}
.philosophy-list p {
	margin: 0;
	font-size: 14px;
	color: var(--text-mute);
	line-height: 1.7;
}

/* ---------- Latest posts ---------- */
.latest-posts { padding: 110px 0; background: var(--white); }

/* =========================================================================
   POST CARDS
   ========================================================================= */
.post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}
.post-card {
	background: var(--white);
	border: 1px solid var(--border-light);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.post-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(26,37,67,0.08);
}
.post-card-link { display: block; color: inherit; }
.post-card-thumb {
	aspect-ratio: 16/10;
	overflow: hidden;
	background: var(--cream-2);
}
.post-card-thumb img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform .8s var(--ease);
}
.post-card:hover .post-card-thumb img { transform: scale(1.05); }
.post-card-thumb-empty {
	background: linear-gradient(135deg, var(--cream-2), var(--ivory-2));
}
.post-card-body { padding: 26px 28px 30px; }
.post-card-date {
	font-size: 12px;
	color: var(--gold-2);
	letter-spacing: .08em;
	font-weight: 500;
}
.post-card-title {
	font-family: var(--font-serif);
	font-size: 22px;
	margin: 10px 0 12px;
	color: var(--navy);
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.post-card-excerpt {
	font-size: 14px;
	color: var(--text-mute);
	line-height: 1.7;
	margin-bottom: 16px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.post-card-more {
	font-size: 13px;
	color: var(--navy);
	font-weight: 500;
}

/* =========================================================================
   PAGE HERO (treatments / blog / directions)
   ========================================================================= */
.page-hero {
	background: var(--navy);
	color: var(--ivory);
	padding: 90px 0 80px;
	text-align: center;
	position: relative;
}
.page-hero::after {
	content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
	width: 60px; height: 1px; background: var(--gold);
}
.page-hero-eyebrow {
	display: inline-block;
	font-size: 11px;
	letter-spacing: .35em;
	color: rgba(244,236,216,0.7);
	margin-bottom: 18px;
}
.page-hero-title {
	font-family: var(--font-serif);
	font-size: clamp(36px, 4.5vw, 56px);
	font-weight: 400;
	color: var(--ivory);
	margin: 0 0 16px;
}
.page-hero-sub {
	font-size: 15px;
	color: rgba(244,236,216,0.85);
	margin: 0 auto;
	max-width: 580px;
}

/* =========================================================================
   TREATMENTS – INDEX (tabs + 2-col card grid)
   ========================================================================= */

/* Adjust page hero for treatments */
.treatments-hero { padding: 80px 0 70px; }

/* ----- Icon tab strip ----- */
.tx-tabs-section { background: var(--white); padding: 30px 0; border-bottom: 1px solid var(--border-light); }
.tx-tabs-section.is-sticky {
	position: sticky;
	top: var(--header-h);
	z-index: 40;
	background: rgba(255,255,255,0.97);
	backdrop-filter: saturate(180%) blur(10px);
	-webkit-backdrop-filter: saturate(180%) blur(10px);
}

.tx-tabs ul {
	list-style: none; margin: 0; padding: 0;
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 4px;
}
.tx-tab a {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 14px 6px;
	color: var(--text-mute);
	transition: all .3s var(--ease);
	border-radius: var(--radius);
	text-align: center;
}
.tx-tab a:hover { color: var(--tx-fg, var(--navy)); background: var(--tx-bg, var(--cream-2)); }
.tx-tab.is-active a { color: var(--tx-fg, var(--navy)); background: var(--tx-bg, var(--cream-2)); }

.tx-tab-icon {
	display: inline-flex;
	align-items: center; justify-content: center;
	width: 52px; height: 52px;
	border-radius: 50%;
	background: var(--tx-bg, var(--cream-2));
	color: var(--tx-fg, var(--navy));
	transition: all .3s var(--ease);
}
.tx-tab-icon svg { width: 28px; height: 28px; }
.tx-tab a:hover .tx-tab-icon,
.tx-tab.is-active .tx-tab-icon {
	background: var(--tx-fg, var(--navy));
	color: #fff;
	transform: translateY(-2px);
}
.tx-tab-label {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: -.01em;
}

/* ----- 2-column card grid ----- */
.tx-cards-section { padding: 80px 0 110px; background: var(--cream); }
.tx-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 50px 36px;
}
.tx-card {
	display: block;
	color: inherit;
	transition: transform .35s var(--ease);
	position: relative;
}
.tx-card:hover {
	transform: translateY(-4px);
	color: inherit;
}

/* Top image area (cropped, takes ~280px height) */
.tx-card-thumb {
	position: relative;
	margin: 0 0 -60px;  /* negative margin pulls body up to overlap */
	aspect-ratio: 16/11;
	overflow: hidden;
	background: var(--cream-2);
	border-radius: 8px;
}
.tx-card-thumb img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform .8s var(--ease);
}
.tx-card:hover .tx-card-thumb img { transform: scale(1.05); }

/* Giant number on top-left of the image area */
.tx-card-num {
	position: absolute;
	left: 18px;
	top: 14px;
	font-family: var(--font-display);
	font-size: 56px;
	font-weight: 800;
	color: rgba(255,255,255,0.92);
	line-height: 1;
	letter-spacing: -.04em;
	text-shadow: 0 4px 16px rgba(0,0,0,0.25);
	z-index: 2;
}

/* White text card that overlaps the bottom of the image */
.tx-card-body {
	position: relative;
	margin: 0 18px;
	padding: 26px 26px 28px;
	background: var(--white);
	border-radius: 8px;
	box-shadow: 0 8px 32px rgba(26,37,67,0.1);
	z-index: 3;
}

.tx-card-en {
	display: block;
	font-family: var(--font-display);
	font-size: 13px;
	font-weight: 600;
	color: var(--gold-2);
	letter-spacing: .04em;
	margin-bottom: 6px;
}
.tx-card-title {
	font-family: var(--font-display);
	font-size: 24px;
	font-weight: 800;
	color: var(--navy);
	margin: 0 0 12px;
	letter-spacing: -.025em;
	line-height: 1.3;
}
.tx-card-lead {
	font-size: 13.5px;
	line-height: 1.7;
	color: var(--text-mute);
	margin: 0 0 14px;
}
.tx-card-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 0;
}
.tx-card-tag {
	font-size: 11.5px;
	color: var(--navy);
	background: var(--ivory);
	padding: 5px 11px;
	border-radius: 999px;
	letter-spacing: -.005em;
	font-weight: 500;
}
.tx-card-more {
	display: none;  /* removed in this layout — entire card is the link */
}

/* =========================================================================
   TREATMENTS – DETAIL PAGE
   ========================================================================= */

/* Breadcrumb */
.tx-crumb {
	background: var(--white);
	padding: 18px 0;
	font-size: 12px;
	color: var(--text-mute);
	border-bottom: 1px solid var(--border-light);
}
.tx-crumb a { color: var(--text-mute); }
.tx-crumb a:hover { color: var(--navy); }
.tx-crumb .sep { margin: 0 8px; color: var(--text-light); }
.tx-crumb .current { color: var(--navy); font-weight: 500; }

/* Detail hero */
.tx-detail-hero {
	background: var(--cream);
	padding: 70px 0 80px;
}
.tx-detail-hero-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
	align-items: center;
}
.tx-detail-thumb {
	margin: 0;
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 30px 60px rgba(26,37,67,0.12);
}
.tx-detail-thumb img {
	width: 100%; aspect-ratio: 4/3; object-fit: cover;
}
.tx-detail-num {
	position: absolute;
	left: 28px; bottom: 18px;
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 110px;
	font-weight: 500;
	color: var(--white);
	line-height: 1;
	letter-spacing: -.04em;
	text-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.tx-detail-en {
	display: block;
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 22px;
	color: var(--tx-fg, var(--gold-2));
	margin-bottom: 8px;
}
.tx-detail-title {
	font-family: var(--font-serif);
	font-size: clamp(36px, 4.4vw, 54px);
	font-weight: 500;
	color: var(--navy);
	margin: 0 0 18px;
	line-height: 1.15;
}
.tx-detail-lead {
	font-size: 17px;
	line-height: 1.85;
	color: var(--text);
	margin: 0 0 24px;
}
.tx-detail-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.tx-detail-tag {
	font-size: 12px;
	color: var(--tx-tag-fg, var(--navy));
	background: var(--tx-tag-bg, var(--ivory));
	padding: 6px 14px;
	border-radius: 999px;
}
.tx-detail-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Section spacing */
.tx-detail-section { padding: 80px 0; background: var(--white); }
.tx-detail-section:nth-child(odd) { background: var(--white); }
.tx-detail-section + .tx-detail-section { border-top: 1px solid var(--border-light); }

/* Intro */
.tx-intro { background: var(--cream-2); }
.tx-intro-text {
	font-size: 17px;
	line-height: 1.95;
	color: var(--text);
	margin: 0;
}

/* Process */
.tx-process { background: var(--white); }
.tx-process-list {
	list-style: none; margin: 0; padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	counter-reset: process;
	border-left: 1px solid var(--border-light);
	border-top: 1px solid var(--border-light);
}
.tx-process-step {
	padding: 36px 30px;
	border-right: 1px solid var(--border-light);
	border-bottom: 1px solid var(--border-light);
	background: var(--white);
	transition: background .3s var(--ease);
}
.tx-process-step:hover { background: var(--cream); }
.tx-step-num {
	display: inline-block;
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 14px;
	color: var(--tx-fg, var(--gold-2));
	margin-bottom: 10px;
	letter-spacing: .04em;
}
.tx-step-title {
	font-family: var(--font-serif);
	font-size: 22px;
	font-weight: 500;
	color: var(--navy);
	margin: 0 0 10px;
}
.tx-step-desc {
	font-size: 14px;
	line-height: 1.75;
	color: var(--text-mute);
	margin: 0;
}

/* Considerations */
.tx-considerations { background: var(--cream); }
.tx-consider-list {
	list-style: none; margin: 0; padding: 0;
	display: grid; gap: 12px;
}
.tx-consider-list li {
	position: relative;
	background: var(--white);
	padding: 18px 24px 18px 56px;
	border-radius: var(--radius);
	font-size: 15px;
	line-height: 1.7;
	color: var(--text);
	border-left: 3px solid var(--tx-fg, var(--gold));
}
.tx-consider-list li::before {
	content: "!";
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px; height: 24px;
	display: flex; align-items: center; justify-content: center;
	background: var(--tx-fg, var(--gold));
	color: var(--white);
	border-radius: 50%;
	font-size: 12px;
	font-weight: 700;
	font-family: var(--font-serif);
	font-style: italic;
}

/* FAQ */
.tx-faq { background: var(--white); }
.tx-faq-list { display: grid; gap: 12px; }
.tx-faq-item {
	border: 1px solid var(--border-light);
	border-radius: var(--radius);
	background: var(--white);
	overflow: hidden;
	transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.tx-faq-item[open] {
	border-color: var(--tx-fg, var(--navy));
	box-shadow: 0 4px 16px rgba(26,37,67,0.06);
}
.tx-faq-item summary {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 22px 26px;
	cursor: pointer;
	list-style: none;
	font-size: 16px;
	font-weight: 500;
	color: var(--navy);
}
.tx-faq-item summary::-webkit-details-marker { display: none; }
.tx-faq-q-mark, .tx-faq-a-mark {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 20px;
	width: 32px; height: 32px;
	flex-shrink: 0;
	display: flex; align-items: center; justify-content: center;
	border-radius: 50%;
}
.tx-faq-q-mark { background: var(--tx-bg, var(--cream-2)); color: var(--tx-fg, var(--navy)); }
.tx-faq-a-mark { background: var(--tx-fg, var(--navy)); color: var(--white); }
.tx-faq-q-text { flex: 1; }
.tx-faq-toggle {
	font-family: var(--font-serif);
	font-size: 24px;
	color: var(--tx-fg, var(--navy));
	transition: transform .3s var(--ease);
}
.tx-faq-item[open] .tx-faq-toggle { transform: rotate(45deg); }
.tx-faq-a {
	display: flex; gap: 16px;
	padding: 6px 26px 24px 26px;
	border-top: 1px solid var(--border-light);
	margin-top: 0;
	background: var(--cream);
}
.tx-faq-a p {
	margin: 0;
	padding-top: 16px;
	font-size: 15px;
	line-height: 1.85;
	color: var(--text);
}

/* Related */
.tx-related { background: var(--cream-2); }
.tx-related-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}
.tx-related-card {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 22px 22px;
	background: var(--white);
	border-radius: var(--radius);
	color: inherit;
	transition: all .3s var(--ease);
	border: 1px solid transparent;
}
.tx-related-card:hover {
	transform: translateY(-2px);
	border-color: var(--tx-fg, var(--navy));
	color: inherit;
}
.tx-related-icon {
	width: 44px; height: 44px;
	flex-shrink: 0;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--tx-bg, var(--cream-2));
	color: var(--tx-fg, var(--navy));
	border-radius: 50%;
}
.tx-related-icon svg { width: 24px; height: 24px; }
.tx-related-en {
	display: block;
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 12px;
	color: var(--tx-fg, var(--gold-2));
	margin-bottom: 2px;
}
.tx-related-title {
	font-family: var(--font-serif);
	font-size: 17px;
	font-weight: 500;
	color: var(--navy);
	margin: 0;
}
.tx-related-arrow {
	margin-left: auto;
	color: var(--text-light);
	font-size: 14px;
	transition: transform .25s var(--ease);
}
.tx-related-card:hover .tx-related-arrow { transform: translateX(4px); color: var(--tx-fg, var(--navy)); }

/* Bottom CTA already styled in main */

.treatments-cta {
	background: var(--navy);
	color: var(--ivory);
	text-align: center;
	padding: 90px 0;
}
.treatments-cta h2 {
	color: var(--ivory);
	font-family: var(--font-serif);
	font-size: clamp(28px, 3.4vw, 40px);
	font-weight: 400;
	margin-bottom: 14px;
}
.treatments-cta p {
	color: rgba(244,236,216,0.8);
	margin-bottom: 32px;
}
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* =========================================================================
   DIRECTIONS PAGE
   ========================================================================= */
.map-section { padding: 90px 0; background: var(--white); }
.map-wrap {
	margin-bottom: 50px;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(26,37,67,0.06);
}
.map-wrap iframe { width: 100%; height: 480px; border: 0; display: block; }
.map-info {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px 60px;
}
.map-info-row {
	padding: 20px 0;
	border-bottom: 1px solid var(--border-light);
}
.map-info-row h3 {
	font-size: 12px;
	letter-spacing: .15em;
	color: var(--gold-2);
	margin: 0 0 8px;
	text-transform: uppercase;
	font-family: var(--font-sans);
	font-weight: 600;
}
.map-info-row p, .map-info-row ul {
	margin: 0;
	font-size: 15px;
	color: var(--text);
}
.map-info-row ul { list-style: none; padding: 0; }
.map-info-row li {
	display: flex; justify-content: space-between;
	padding: 4px 0;
	font-size: 14px;
}
.map-info-row li span { color: var(--text-mute); }

/* =========================================================================
   BLOG / ARTICLE
   ========================================================================= */
.blog-list { padding: 80px 0 110px; background: var(--cream); }
.blog-list .post-grid { grid-template-columns: repeat(3, 1fr); }

/* Article single */
.article-hero {
	position: relative;
	min-height: 380px;
	display: flex; align-items: flex-end;
	color: var(--white);
	overflow: hidden;
	padding: 80px 0 70px;
	background: var(--navy); /* fallback when no featured image */
}
.article-hero::before {
	/* Subtle decorative gradient on the navy background */
	content: "";
	position: absolute; inset: 0;
	background:
		radial-gradient(ellipse at top left, rgba(244,236,216,0.08), transparent 60%),
		radial-gradient(ellipse at bottom right, rgba(201,169,97,0.06), transparent 60%);
	z-index: 1;
}
.article-hero-bg { position: absolute; inset: 0; z-index: 0; }
.article-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.article-hero-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(26,37,67,0.55), rgba(26,37,67,0.9));
}
.article-hero-inner { position: relative; z-index: 2; }
.article-meta {
	display: flex; gap: 14px; align-items: center;
	margin-bottom: 22px;
	font-size: 12px;
	letter-spacing: .04em;
}
.article-cat {
	background: var(--gold);
	color: var(--navy);
	padding: 5px 14px;
	border-radius: 2px;
	font-weight: 600;
	font-size: 11px;
	letter-spacing: .05em;
}
.article-date {
	color: rgba(244,236,216,0.75);
	font-size: 12px;
	font-family: var(--font-sans);
}
.article-title {
	font-family: var(--font-display);
	font-size: clamp(28px, 3.8vw, 44px);
	font-weight: 600;
	color: var(--white) !important;
	line-height: 1.3;
	max-width: 880px;
	margin: 0 0 18px;
	letter-spacing: -.02em;
}
.article-lead {
	font-size: 16px;
	color: rgba(255,255,255,0.88);
	line-height: 1.75;
	max-width: 760px;
	margin: 0;
}

/* Japanese article hero – serif heading with appropriate line-height */
html[lang="ja"] .article-title,
.lang-ja .article-title {
	font-family: "Noto Serif JP", "Noto Sans JP", serif;
	font-weight: 600;
	line-height: 1.45;
	letter-spacing: -.01em;
	color: var(--white) !important;
}
html[lang="en"] .article-title,
.lang-en .article-title {
	font-family: "Inter", sans-serif;
	font-weight: 600;
	color: var(--white) !important;
}

.article-body {
	padding: 70px 0 50px;
	font-size: 17px;
	line-height: 1.9;
	color: var(--text);
}
.article-body p { margin: 0 0 1.4em; }
.article-body h2 {
	font-family: var(--font-serif);
	font-size: 30px;
	margin: 2em 0 .8em;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--border);
	color: var(--navy);
}
.article-body h3 {
	font-family: var(--font-serif);
	font-size: 24px;
	margin: 1.8em 0 .7em;
	color: var(--navy);
}
.article-body h4 {
	font-size: 18px;
	font-family: var(--font-sans);
	font-weight: 600;
	margin: 1.6em 0 .6em;
	color: var(--navy);
}
.article-body blockquote {
	border-left: 3px solid var(--gold);
	padding: 8px 0 8px 24px;
	margin: 1.8em 0;
	font-style: italic;
	color: var(--text-mute);
	background: var(--cream);
}
.article-body img { border-radius: var(--radius); margin: 1.6em 0; }
.article-body ul, .article-body ol { padding-left: 1.6em; margin: 0 0 1.4em; }
.article-body li { margin-bottom: .6em; }
.article-body a {
	color: var(--gold-2);
	border-bottom: 1px solid var(--gold);
}
.article-body code {
	background: var(--cream-2);
	padding: 2px 8px;
	border-radius: 3px;
	font-size: .9em;
}

.article-tags {
	padding: 24px 0;
	border-top: 1px solid var(--border-light);
	font-size: 13px;
	color: var(--text-mute);
}
.article-tags span { color: var(--gold-2); font-weight: 600; margin-right: 12px; }
.article-tags a {
	display: inline-block;
	background: var(--cream-2);
	padding: 4px 12px;
	border-radius: 999px;
	margin-right: 6px;
	font-size: 12px;
	color: var(--navy);
}

.article-author {
	display: flex; gap: 24px;
	background: var(--cream);
	padding: 32px;
	border-radius: var(--radius);
	margin: 40px 0;
	align-items: center;
}
.author-avatar img { border-radius: 50%; }
.author-label {
	font-size: 11px;
	letter-spacing: .2em;
	color: var(--gold-2);
}
.author-info h4 {
	font-family: var(--font-serif);
	font-size: 20px;
	margin: 4px 0 8px;
}
.author-info p { font-size: 14px; color: var(--text-mute); margin: 0; }

.article-nav {
	display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
	margin: 50px 0;
	padding: 30px 0;
	border-top: 1px solid var(--border-light);
	border-bottom: 1px solid var(--border-light);
}
.article-nav span { display: block; font-size: 11px; color: var(--text-mute); letter-spacing: .15em; margin-bottom: 6px; }
.article-nav a { color: var(--navy); font-weight: 500; }
.nav-next { text-align: right; }

.related-posts {
	background: var(--cream-2);
	padding: 90px 0 110px;
}

/* Pagination */
.pagination { margin-top: 60px; text-align: center; }
.pagination .nav-links { display: inline-flex; gap: 6px; }
.pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 40px; height: 40px;
	padding: 0 12px;
	border: 1px solid var(--border);
	color: var(--navy);
	font-size: 14px;
	border-radius: 2px;
	transition: all .25s var(--ease);
}
.pagination .page-numbers:hover, .pagination .page-numbers.current {
	background: var(--navy); color: var(--ivory); border-color: var(--navy);
}

.no-posts {
	text-align: center;
	padding: 60px 0;
	color: var(--text-mute);
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
	background: var(--navy);
	color: var(--ivory);
	padding: 70px 0 30px;
	margin-top: 0;
}
.footer-inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px;
}
.footer-col h4 {
	font-family: var(--font-sans);
	font-size: 12px;
	letter-spacing: .2em;
	color: var(--ivory);
	margin: 0 0 18px;
	text-transform: uppercase;
	font-weight: 600;
}
.footer-brand .brand-text { margin-bottom: 18px; }
.footer-brand .brand-name-line1, .footer-brand .brand-name-line2 { color: var(--ivory); }
.footer-brand .brand-mark { background: var(--ivory); color: var(--navy); }
.footer-tagline {
	color: rgba(244,236,216,0.7);
	font-size: 13px;
	line-height: 1.7;
	margin: 0;
}
.footer-hours { list-style: none; padding: 0; margin: 0; font-size: 13px; }
.footer-hours li {
	display: flex; justify-content: space-between;
	padding: 5px 0;
	color: rgba(244,236,216,0.85);
}
.footer-hours li span { color: rgba(244,236,216,0.55); }
.footer-address { font-size: 13px; line-height: 1.7; color: rgba(244,236,216,0.85); margin: 0 0 12px; }
.footer-tel a {
	font-family: var(--font-serif);
	font-size: 22px;
	color: var(--ivory);
}
.footer-menu { list-style: none; padding: 0; margin: 0; }
.footer-menu li a {
	display: block;
	padding: 5px 0;
	font-size: 13px;
	color: rgba(244,236,216,0.8);
}
.footer-menu li a:hover { color: var(--ivory); }

.footer-bottom {
	max-width: var(--container);
	margin: 50px auto 0;
	padding: 24px var(--gutter) 0;
	border-top: 1px solid rgba(244,236,216,0.12);
	text-align: center;
}
.copyright {
	font-size: 12px;
	color: rgba(244,236,216,0.55);
	letter-spacing: .03em;
	margin: 0;
}

/* =========================================================================
   PAGE CONTENT (general)
   ========================================================================= */
.page-content { padding: 70px 0 110px; background: var(--cream); }
.page-main .page-hero { background: var(--cream-2); color: var(--navy); }
.page-main .page-hero-title { color: var(--navy); }
.page-main .page-hero::after { background: var(--gold); }

/* Mobile drawer (default closed) */
.mobile-drawer {
	position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
	background: var(--white);
	transform: translateY(-110%);
	transition: transform .4s var(--ease);
	z-index: 95;
	padding: 40px var(--gutter);
	overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateY(0); }
.mobile-menu { list-style: none; padding: 0; margin: 0 0 30px; }
.mobile-menu li a {
	display: block;
	padding: 18px 0;
	font-family: var(--font-serif);
	font-size: 22px;
	color: var(--navy);
	border-bottom: 1px solid var(--border-light);
}
.mobile-menu .sub-menu { list-style: none; padding: 8px 0 0 12px; }
.mobile-menu .sub-menu li a { font-family: var(--font-sans); font-size: 14px; padding: 8px 0; border: 0; color: var(--text-mute); }
.mobile-lang { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.mobile-lang .lang-btn {
	flex: 1;
	background: var(--cream-2);
	color: var(--navy);
	padding: 12px 8px;
	border-radius: var(--radius);
	font-size: 13px;
	letter-spacing: .05em;
}
.mobile-lang .lang-btn.is-active { background: var(--navy); color: var(--ivory); }

/* Body lock when drawer open */
body.drawer-open { overflow: hidden; }

/* =========================================================================
   REVEAL ANIMATION
   ========================================================================= */
.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-revealed {
	opacity: 1;
	transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
	html { scroll-behavior: auto; }
}

/* =========================================================================
   LANGUAGE-AWARE TYPOGRAPHY
   - KO: Pretendard (default)
   - EN: Inter for body, Cormorant Garamond italic for accents — clean Latin
   - JA: Noto Sans JP for body, Noto Serif JP for headings — proper Japanese
   ========================================================================= */

/* ----- English ----- */
html[lang="en"] body,
.lang-en body {
	font-family: "Inter", "Pretendard Variable", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
	letter-spacing: -.005em;
}
html[lang="en"] h1, html[lang="en"] h2, html[lang="en"] h3, html[lang="en"] h4,
.lang-en h1, .lang-en h2, .lang-en h3, .lang-en h4 {
	font-family: "Inter", "Pretendard Variable", -apple-system, sans-serif;
	font-weight: 700;
	letter-spacing: -.025em;
}
html[lang="en"] h1, .lang-en h1 { font-weight: 800; line-height: 1.15; letter-spacing: -.035em; }
html[lang="en"] h2, .lang-en h2 { font-weight: 700; line-height: 1.22; letter-spacing: -.028em; }

/* ----- Japanese ----- */
html[lang="ja"] body,
.lang-ja body {
	font-family: "Noto Sans JP", "Pretendard Variable", -apple-system, sans-serif;
	letter-spacing: 0;
}
html[lang="ja"] h1, html[lang="ja"] h2, html[lang="ja"] h3, html[lang="ja"] h4,
.lang-ja h1, .lang-ja h2, .lang-ja h3, .lang-ja h4 {
	font-family: "Noto Serif JP", "Noto Sans JP", serif;
	font-weight: 700;
	letter-spacing: -.01em;
}
html[lang="ja"] h1, .lang-ja h1 { font-weight: 700; line-height: 1.35; }
html[lang="ja"] h2, .lang-ja h2 { font-weight: 700; line-height: 1.4;  }
html[lang="ja"] h3, .lang-ja h3 { font-weight: 600; line-height: 1.5;  }
html[lang="ja"] .article-body p,
.lang-ja .article-body p { line-height: 2; }
html[lang="ja"] .tx-intro-text,
.lang-ja .tx-intro-text { line-height: 2.05; }

/* ----- Notranslate utility ----- */
.notranslate, [translate="no"] { unicode-bidi: isolate; }

/* =========================================================================
   DIRECTIONS PAGE – refined info block + map
   ========================================================================= */
.directions-main { background: var(--cream); }

/* ----- Top INFORMATION block ----- */
.dir-info {
	padding: 110px 0 90px;
	background: var(--cream);
}
.dir-info-grid {
	display: grid;
	grid-template-columns: 1.05fr 1.5fr;
	gap: 80px;
	align-items: start;
}

/* Left typography */
.dir-info-eyebrow {
	display: block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .3em;
	color: var(--gold-2);
	margin-bottom: 24px;
}
.dir-info-title {
	font-family: var(--font-display);
	font-size: clamp(34px, 4.4vw, 56px);
	font-weight: 800;
	color: var(--navy);
	line-height: 1.15;
	letter-spacing: -.035em;
	margin: 0 0 28px;
}
html[lang="ja"] .dir-info-title,
.lang-ja .dir-info-title {
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: -.015em;
}
.dir-info-intro {
	font-size: 15.5px;
	line-height: 1.85;
	color: var(--text);
	margin: 0 0 36px;
	max-width: 520px;
}

/* Pill buttons (TEL / FAX) */
.dir-info-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.dir-pill {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 14px 26px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: -.005em;
	transition: all .3s var(--ease);
	border: 1.5px solid transparent;
	white-space: nowrap;
}
.dir-pill-ico { width: 18px; height: 18px; }
.dir-pill-primary {
	background: var(--navy);
	color: var(--ivory);
	border-color: var(--navy);
}
.dir-pill-primary:hover {
	background: var(--navy-2);
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(26,37,67,0.18);
}
.dir-pill-ghost {
	background: transparent;
	color: var(--navy);
	border-color: var(--navy);
}
.dir-pill-ghost:hover {
	background: var(--navy);
	color: var(--ivory);
}

/* Right info cards */
.dir-info-right {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.dir-card {
	border-radius: 14px;
	padding: 30px 28px;
	box-shadow: 0 4px 20px rgba(26,37,67,0.06);
}
.dir-card-light {
	background: var(--white);
	color: var(--text);
}
.dir-card-dark {
	background: var(--navy);
	color: var(--ivory);
}
.dir-card-head {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-bottom: 18px;
	margin-bottom: 4px;
	border-bottom: 1px solid var(--border-light);
}
.dir-card-dark .dir-card-head {
	border-bottom-color: rgba(244,236,216,0.15);
}
.dir-card-ico {
	width: 22px; height: 22px;
	color: var(--navy);
	flex-shrink: 0;
}
.dir-card-dark .dir-card-ico { color: var(--ivory); }
.dir-card-title {
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 700;
	margin: 0;
	color: var(--navy);
	letter-spacing: -.015em;
}
.dir-card-dark .dir-card-title { color: var(--ivory); }
html[lang="ja"] .dir-card-title,
.lang-ja .dir-card-title {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
}

/* Hours list */
.dir-hours-list { list-style: none; padding: 0; margin: 0; }
.dir-hours-list li {
	display: grid;
	grid-template-columns: 88px 1fr;
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid var(--border-light);
	align-items: baseline;
}
.dir-hours-list li:last-child { border-bottom: 0; }
.dir-hours-list li.is-muted {
	color: var(--text-light);
}
.dir-hours-day {
	font-size: 13px;
	font-weight: 700;
	color: var(--navy);
	letter-spacing: -.01em;
}
.dir-hours-list li.is-muted .dir-hours-day { color: var(--text-mute); }
.dir-hours-time {
	font-size: 13px;
	color: var(--text-mute);
	line-height: 1.55;
	letter-spacing: -.005em;
}
.dir-hours-list li.is-muted .dir-hours-time { color: var(--text-light); }

/* Access list */
.dir-access-list { list-style: none; padding: 0; margin: 16px 0 0; }
.dir-access-list li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 12px 0;
	font-size: 13.5px;
	line-height: 1.6;
	color: rgba(244,236,216,0.85);
}
.dir-access-list li strong {
	display: inline;
	color: var(--ivory);
	font-weight: 700;
	margin-right: 4px;
}
.dir-access-list li span { color: rgba(244,236,216,0.85); }
.dir-access-mark {
	display: inline-flex;
	align-items: center; justify-content: center;
	width: 28px; height: 28px;
	border-radius: 50%;
	background: rgba(244,236,216,0.08);
	color: var(--ivory);
	flex-shrink: 0;
	margin-top: 2px;
}
.dir-access-mark svg { width: 14px; height: 14px; }

/* ----- Map section ----- */
.dir-map {
	background: var(--white);
	padding: 80px 0 110px;
	border-top: 1px solid var(--border-light);
}
.dir-map-head {
	text-align: center;
	margin-bottom: 40px;
}
.dir-map-eyebrow {
	display: block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .35em;
	color: var(--gold-2);
	margin-bottom: 14px;
}
.dir-map-title {
	font-family: var(--font-display);
	font-size: clamp(28px, 3.4vw, 38px);
	font-weight: 700;
	color: var(--navy);
	margin: 0 0 12px;
	letter-spacing: -.03em;
}
.dir-map-address {
	font-size: 14.5px;
	color: var(--text-mute);
	margin: 0;
}
.dir-map-wrap {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(26,37,67,0.1);
}
.dir-map-wrap iframe { width: 100%; height: 480px; border: 0; display: block; }

/* =========================================================================
   GENERAL TYPO REFINEMENT TWEAKS
   Tighten major headings to feel more editorial / less generic
   ========================================================================= */
.section-title {
	font-weight: 700;
	letter-spacing: -.03em;
}
.section-eyebrow {
	font-weight: 600;
	letter-spacing: .3em;
}
.section-sub {
	font-size: 14.5px;
	line-height: 1.75;
}

/* Article body — refine heading weights inside posts */
.article-body h2 {
	font-weight: 700;
	letter-spacing: -.028em;
	font-size: 28px;
	margin: 2.2em 0 .7em;
}
.article-body h3 {
	font-weight: 700;
	letter-spacing: -.02em;
	font-size: 22px;
	margin: 1.8em 0 .6em;
}
.article-body p { margin: 0 0 1.35em; }
.article-body strong { color: var(--navy); font-weight: 700; }

/* Magazine card – tighter titles */
.mag-card-title { font-weight: 700; letter-spacing: -.02em; }

/* Treatment detail – beefier titles */
.tx-detail-title { font-weight: 800; letter-spacing: -.035em; }
.tx-step-title { font-weight: 700; letter-spacing: -.015em; }
.tx-card-title { font-weight: 700; letter-spacing: -.025em; }
.home-tx-card-title { font-weight: 700; letter-spacing: -.022em; }

/* Hero title (image-only mode unaffected) */
.hero-title { font-weight: 700; letter-spacing: -.035em; }

/* Page hero refinement */
.page-hero-title { font-weight: 700; letter-spacing: -.03em; }


/* =========================================================================
   STORY PAGE – 메디셀 이야기
   ========================================================================= */
.story-main { background: var(--cream); }
.story-hero { background: var(--navy); }

/* Common section spacing */
.story-section { padding: 100px 0; }
.story-section + .story-section { border-top: 1px solid var(--border-light); }
.story-doctor      { background: var(--white); }
.story-clinic      { background: var(--cream); }
.story-equipment   { background: var(--white); }
.story-philosophy  { background: var(--cream-2); }

.story-section-head { margin-bottom: 50px; }
.story-section-head.is-center { text-align: center; }
.story-eyebrow {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .35em;
	color: var(--gold-2);
	margin-bottom: 14px;
}
.story-section-title {
	font-family: var(--font-display);
	font-size: clamp(28px, 3.6vw, 42px);
	font-weight: 700;
	color: var(--navy);
	margin: 0 0 14px;
	letter-spacing: -.03em;
}
.story-section-sub {
	font-size: 14.5px;
	line-height: 1.8;
	color: var(--text-mute);
	max-width: 620px;
	margin: 0;
}
.story-section-head.is-center .story-section-sub { margin: 0 auto; }

/* ===== Doctor section ===== */
.story-doctor-grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 70px;
	align-items: center;
}
.story-doctor-photo { margin: 0; }
.story-doctor-photo img,
.story-photo-placeholder {
	width: 100%;
	aspect-ratio: 4/5;
	object-fit: cover;
	border-radius: 8px;
	display: block;
}
.story-photo-placeholder {
	background: var(--cream-2);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--text-light);
	gap: 14px;
	font-size: 13px;
	letter-spacing: -.01em;
}
.story-photo-placeholder svg { width: 80px; height: 80px; }

.story-doctor-content .story-section-title { font-size: clamp(32px, 4vw, 48px); }
.story-doctor-role {
	font-size: 14.5px;
	color: var(--text-mute);
	letter-spacing: -.005em;
	margin: 0 0 24px;
}
.story-doctor-quote {
	font-size: 18px;
	line-height: 1.85;
	color: var(--navy);
	font-weight: 700;
	margin: 0 0 32px;
	padding-left: 18px;
	border-left: 3px solid var(--gold);
	letter-spacing: -.015em;
}
.story-doctor-creds {
	padding-top: 24px;
	border-top: 1px solid var(--border-light);
}
.story-creds-title {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .2em;
	color: var(--gold-2);
	margin: 0 0 14px;
	text-transform: uppercase;
	font-family: var(--font-display);
}
.story-doctor-creds ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.story-doctor-creds li {
	padding: 8px 0 8px 20px;
	font-size: 14px;
	color: var(--text);
	position: relative;
}
.story-doctor-creds li::before {
	content: "·";
	position: absolute;
	left: 6px;
	color: var(--gold);
	font-weight: 700;
}

/* ===== Clinic tour ===== */
.story-clinic-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.story-clinic-card { margin: 0; }
.story-clinic-thumb {
	position: relative;
	aspect-ratio: 3/4;
	overflow: hidden;
	border-radius: 8px;
	background: var(--cream-2);
	margin-bottom: 14px;
}
.story-clinic-thumb img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform .8s var(--ease);
}
.story-clinic-card:hover .story-clinic-thumb img { transform: scale(1.05); }
.story-img-placeholder {
	width: 100%; height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--text-light);
	gap: 10px;
	font-size: 13px;
}
.story-img-placeholder svg { width: 60px; height: 60px; opacity: .6; }
.story-clinic-num {
	position: absolute;
	left: 14px;
	top: 14px;
	background: rgba(26,37,67,0.9);
	color: var(--ivory);
	padding: 5px 11px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .05em;
}
.story-clinic-card figcaption h3 {
	font-family: var(--font-display);
	font-size: 16px;
	font-weight: 700;
	color: var(--navy);
	margin: 0 0 6px;
	letter-spacing: -.015em;
}
.story-clinic-card figcaption p {
	font-size: 13px;
	color: var(--text-mute);
	line-height: 1.65;
	margin: 0;
}

/* ===== Equipment ===== */
.story-equip-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	border-top: 1px solid var(--border-light);
	border-left: 1px solid var(--border-light);
}
.story-equip-item {
	padding: 36px 32px;
	border-right: 1px solid var(--border-light);
	border-bottom: 1px solid var(--border-light);
	transition: background .3s var(--ease);
}
.story-equip-item:hover { background: var(--cream); }
.story-equip-ico {
	display: inline-flex;
	width: 52px; height: 52px;
	align-items: center; justify-content: center;
	border-radius: 50%;
	background: var(--ivory);
	color: var(--navy);
	margin-bottom: 18px;
}
.story-equip-ico svg { width: 28px; height: 28px; }
.story-equip-name {
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 700;
	color: var(--navy);
	margin: 0 0 8px;
	letter-spacing: -.015em;
}
.story-equip-desc {
	font-size: 13.5px;
	color: var(--text-mute);
	line-height: 1.7;
	margin: 0;
}

/* ===== Philosophy ===== */
.story-philo-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.story-philo-list li {
	background: var(--white);
	padding: 36px 32px;
	border-radius: 8px;
	box-shadow: 0 2px 12px rgba(26,37,67,0.04);
	position: relative;
}
.story-philo-num {
	display: inline-block;
	font-family: var(--font-display);
	font-size: 16px;
	font-weight: 700;
	color: var(--gold-2);
	letter-spacing: .05em;
	margin-bottom: 14px;
}
.story-philo-list h3 {
	font-family: var(--font-display);
	font-size: 19px;
	font-weight: 700;
	color: var(--navy);
	margin: 0 0 10px;
	letter-spacing: -.018em;
}
.story-philo-list p {
	font-size: 14px;
	line-height: 1.8;
	color: var(--text-mute);
	margin: 0;
}

/* Japanese serif on philosophy/equip/clinic */
html[lang="ja"] .story-section-title,
html[lang="ja"] .story-equip-name,
html[lang="ja"] .story-philo-list h3,
.lang-ja .story-section-title,
.lang-ja .story-equip-name,
.lang-ja .story-philo-list h3 {
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
	letter-spacing: -.01em;
}

/* =========================================================================
   DIRECTIONS – Dark map hero + provider buttons (matches reference image)
   ========================================================================= */
.dir-map-hero {
	background: var(--navy);
	padding: 90px 0 110px;
	color: var(--ivory);
}
.dir-map-hero .dir-map-head { margin-bottom: 36px; text-align: center; }
.dir-map-hero .dir-map-eyebrow { color: var(--gold); }
.dir-map-hero .dir-map-title {
	color: var(--ivory);
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(28px, 3.6vw, 44px);
	line-height: 1.2;
	letter-spacing: -.03em;
	margin: 0 0 14px;
}
.dir-map-title-1 { display: inline-block; }
.dir-map-title-2 {
	display: inline-block;
	color: var(--gold);
	font-weight: 700;
}
.dir-map-hero .dir-map-address {
	color: rgba(244,236,216,0.7);
	font-size: 14.5px;
	margin: 0;
}

.dir-map-frame {
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 28px;
	box-shadow: 0 16px 40px rgba(0,0,0,0.35);
	background: #1a2543;
}
.dir-map-frame iframe { width: 100%; height: 480px; border: 0; display: block; }

/* 3 provider buttons */
.dir-map-buttons {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	max-width: 720px;
	margin: 0 auto;
}
.dir-map-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 20px;
	border-radius: 999px;
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: -.005em;
	transition: all .3s var(--ease);
	background: var(--navy-2);
	border: 1px solid rgba(244,236,216,0.12);
}
.dir-map-btn:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(0,0,0,0.3);
}
.dir-map-btn-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px; height: 26px;
	border-radius: 50%;
	font-family: var(--font-display);
	font-size: 13px;
	font-weight: 800;
}
.dir-map-btn-naver { background: #03c75a; }
.dir-map-btn-naver:hover { background: #02b052; }
.dir-map-btn-naver .dir-map-btn-mark { background: #fff; color: #03c75a; }

.dir-map-btn-kakao { background: #fee500; color: #3c1e1e; }
.dir-map-btn-kakao:hover { background: #f6d800; color: #3c1e1e; }
.dir-map-btn-kakao .dir-map-btn-mark { background: #3c1e1e; color: #fee500; }

.dir-map-btn-tmap { background: #6c47ff; }
.dir-map-btn-tmap:hover { background: #5b39de; }
.dir-map-btn-tmap .dir-map-btn-mark { background: #fff; color: #6c47ff; }


/* =========================================================================
   404 PAGE – refined
   ========================================================================= */
.notfound-main { background: var(--cream); }

.notfound-hero {
	background: var(--navy);
	color: var(--ivory);
	padding: 100px 0 90px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.notfound-hero::before {
	content: "";
	position: absolute; inset: 0;
	background:
		radial-gradient(ellipse at 20% 30%, rgba(244,236,216,0.08), transparent 50%),
		radial-gradient(ellipse at 80% 70%, rgba(201,169,97,0.07), transparent 50%);
}
.notfound-hero > * { position: relative; }
.notfound-num {
	font-family: var(--font-display);
	font-size: clamp(80px, 14vw, 160px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -.06em;
	color: var(--ivory);
	opacity: .15;
	margin-bottom: -20px;
}
.notfound-title {
	font-family: var(--font-display);
	font-size: clamp(28px, 3.8vw, 44px);
	font-weight: 700;
	color: var(--ivory);
	margin: 0 0 18px;
	letter-spacing: -.03em;
}
html[lang="ja"] .notfound-title,
.lang-ja .notfound-title {
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
	letter-spacing: -.01em;
	line-height: 1.4;
}
.notfound-sub {
	font-size: 15px;
	line-height: 1.85;
	color: rgba(244,236,216,0.8);
	max-width: 540px;
	margin: 0 auto 36px;
}
.notfound-actions {
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
}
.notfound-actions .btn-ghost-dark {
	color: var(--ivory);
	border-color: rgba(244,236,216,0.35);
}
.notfound-actions .btn-ghost-dark:hover {
	background: var(--ivory);
	color: var(--navy);
	border-color: var(--ivory);
}

.notfound-suggest {
	padding: 90px 0 110px;
	background: var(--cream);
}

.notfound-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	max-width: 880px;
	margin: 0 auto;
}
.notfound-card {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 22px 26px;
	background: var(--white);
	border: 1px solid var(--border-light);
	border-radius: 8px;
	color: inherit;
	transition: all .3s var(--ease);
}
.notfound-card:hover {
	transform: translateY(-3px);
	border-color: var(--navy);
	box-shadow: 0 12px 28px rgba(26,37,67,0.1);
	color: inherit;
}
.notfound-card-ico {
	display: inline-flex;
	width: 48px; height: 48px;
	align-items: center; justify-content: center;
	border-radius: 50%;
	background: var(--cream-2);
	color: var(--navy);
	flex-shrink: 0;
	transition: all .3s var(--ease);
}
.notfound-card-ico svg { width: 24px; height: 24px; }
.notfound-card:hover .notfound-card-ico {
	background: var(--navy);
	color: var(--ivory);
}
.notfound-card > div { flex: 1; }
.notfound-card-en {
	display: block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .2em;
	color: var(--gold-2);
	margin-bottom: 2px;
}
.notfound-card-title {
	font-family: var(--font-display);
	font-size: 17px;
	font-weight: 700;
	color: var(--navy);
	margin: 0;
	letter-spacing: -.015em;
}
.notfound-card-arrow {
	color: var(--text-light);
	font-size: 18px;
	transition: transform .3s var(--ease), color .3s var(--ease);
}
.notfound-card:hover .notfound-card-arrow {
	color: var(--navy);
	transform: translateX(4px);
}

/* =========================================================================
   JOURNAL PAGE – full magazine listing
   ========================================================================= */
.journal-hero { background: var(--navy); }
.journal-magazine {
	background: var(--cream);
	padding: 80px 0 110px;
}
.journal-magazine .mag-tabs { margin-bottom: 40px; }


/* =========================================================================
   TREATMENT IMAGE PLACEHOLDER
   Shows when /assets/images/tx-{slug}.jpg is missing
   Simple "이미지 요청합니다" text label only — no icons.
   ========================================================================= */
.tx-card-thumb.is-empty,
.home-tx-card-thumb.is-empty,
.tx-detail-thumb.is-empty {
	background: var(--cream-2);
}
.tx-card-placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		repeating-linear-gradient(
			-45deg,
			transparent 0,
			transparent 16px,
			rgba(26,37,67,0.03) 16px,
			rgba(26,37,67,0.03) 32px
		);
}
.tx-card-placeholder-ico { display: none; }
.tx-card-placeholder-label {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .04em;
	color: var(--text-mute);
	padding: 10px 22px;
	background: rgba(255,255,255,0.9);
	border-radius: 999px;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	box-shadow: 0 4px 14px rgba(26,37,67,0.06);
}

/* Detail page – slightly bigger label */
.tx-detail-thumb.is-empty .tx-card-placeholder-label {
	font-size: 14.5px;
	padding: 12px 28px;
}

/* =========================================================================
   HEADER MENU – 더 크게 + 자간 다듬기 (요청)
   ========================================================================= */
.primary-menu { gap: 40px; }
.primary-menu > li > a {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: -.015em;
	padding: 10px 0;
}
.primary-menu > li > a::after {
	height: 2px;
	bottom: 0;
}
.lang-switcher { padding: 5px; }
.lang-btn {
	font-size: 12px;
	font-weight: 700;
	padding: 7px 14px;
}

@media (max-width: 1100px) {
	.primary-menu { gap: 28px; }
	.primary-menu > li > a { font-size: 15px; }
}

/* =========================================================================
   DIRECTIONS – Access list refinement (icons + spacing)
   ========================================================================= */
.dir-access-list {
	list-style: none;
	padding: 0;
	margin: 18px 0 0;
}
.dir-access-list li {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 0;
	border-bottom: 1px solid rgba(244,236,216,0.1);
	font-size: 14px;
	line-height: 1.6;
	color: rgba(244,236,216,0.88);
}
.dir-access-list li:last-child { border-bottom: 0; }
.dir-access-list li strong {
	display: block;
	color: var(--ivory);
	font-weight: 700;
	font-size: 11px;
	letter-spacing: .12em;
	margin-bottom: 4px;
	text-transform: uppercase;
}
.dir-access-list li > div { flex: 1; }
.dir-access-list li > div span {
	color: rgba(244,236,216,0.88);
	font-size: 13.5px;
	line-height: 1.65;
	font-weight: 400;
	letter-spacing: -.005em;
}

.dir-access-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px; height: 38px;
	border-radius: 50%;
	background: rgba(244,236,216,0.1);
	color: var(--ivory);
	flex-shrink: 0;
	transition: background .25s var(--ease);
}
.dir-access-mark svg {
	width: 18px; height: 18px;
}
.dir-access-list li:hover .dir-access-mark {
	background: var(--gold);
	color: var(--navy);
}

/* Directions card padding for breathing room */
.dir-card { padding: 36px 32px; border-radius: 16px; }
.dir-card-head { padding-bottom: 22px; margin-bottom: 8px; }
.dir-card-ico { width: 24px; height: 24px; }
.dir-card-title { font-size: 19px; }
.dir-hours-list li { padding: 16px 0; gap: 18px; }
.dir-hours-day { font-size: 14px; }
.dir-hours-time { font-size: 13.5px; line-height: 1.65; }

/* Footer additions */
.footer-fax {
	font-size: 12.5px;
	color: rgba(244,236,216,0.6);
	margin: 4px 0 0;
	letter-spacing: .03em;
}

/* =========================================================================
   LANGUAGE SWITCHER – with flags
   ========================================================================= */
.lang-switcher {
	display: inline-flex;
	background: var(--cream-2);
	border-radius: 999px;
	padding: 4px;
	gap: 2px;
	border: 1px solid var(--border-light);
}
.lang-btn {
	border: 0;
	background: transparent;
	color: var(--navy);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .03em;
	padding: 6px 12px;
	border-radius: 999px;
	transition: all .25s var(--ease);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	line-height: 1;
}
.lang-flag {
	font-size: 14px;
	line-height: 1;
	filter: saturate(1.15) contrast(1.05);
	display: inline-block;
	transform: translateY(-0.5px);
}
.lang-code {
	font-family: var(--font-display);
	font-weight: 800;
	letter-spacing: .04em;
}
.lang-btn:hover {
	color: var(--navy);
	background: var(--white);
}
.lang-btn.is-active {
	background: var(--navy);
	color: var(--ivory);
	box-shadow: 0 4px 12px rgba(26,37,67,0.25);
}
.lang-btn.is-active .lang-flag { transform: translateY(-0.5px) scale(1.1); }

/* Mobile drawer language buttons */
.mobile-lang { gap: 8px; }
.mobile-lang .lang-btn {
	flex: 1;
	gap: 8px;
	padding: 12px 14px;
	font-size: 13px;
	border-radius: 8px;
}
.mobile-lang .lang-flag { font-size: 18px; }

/* =========================================================================
   SCHEDULE NOTICE – 진료일정 안내 (calendar-cell style)
   ========================================================================= */
.dir-schedule {
	background: var(--ivory);
	padding: 80px 0;
}
.dir-schedule-grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 60px;
	align-items: center;
}

.dir-schedule-eyebrow {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .35em;
	color: var(--gold-2);
	margin-bottom: 18px;
}
.dir-schedule-sub {
	font-size: 14px;
	color: var(--text-mute);
	margin: 0 0 10px;
	letter-spacing: -.005em;
}
.dir-schedule-title {
	font-family: var(--font-display);
	font-size: clamp(28px, 3.4vw, 38px);
	font-weight: 800;
	color: var(--navy);
	margin: 0 0 22px;
	letter-spacing: -.03em;
	line-height: 1.2;
}
html[lang="ja"] .dir-schedule-title,
.lang-ja .dir-schedule-title {
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
	line-height: 1.35;
}
.dir-schedule-note {
	font-size: 13.5px;
	line-height: 1.75;
	color: var(--text-mute);
	margin: 0;
	max-width: 380px;
}

/* Cells */
.dir-schedule-cells {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}
.dir-schedule-cell {
	background: var(--white);
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--border-light);
	box-shadow: 0 4px 16px rgba(26,37,67,0.05);
	display: flex;
	flex-direction: column;
}
.dir-schedule-cell-head {
	background: var(--navy);
	color: var(--ivory);
	padding: 12px 14px;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: -.005em;
	text-align: center;
}
.dir-schedule-cell-body {
	flex: 1;
	padding: 24px 14px 18px;
	text-align: center;
	background: var(--white);
}
.dir-schedule-day {
	font-family: var(--font-display);
	font-size: 56px;
	font-weight: 800;
	line-height: 1;
	color: var(--navy);
	margin-bottom: 6px;
	letter-spacing: -.05em;
}
.dir-schedule-dow {
	font-size: 12px;
	color: var(--text-mute);
	font-weight: 500;
	letter-spacing: -.005em;
}
.dir-schedule-cell-foot {
	background: var(--cream-2);
	padding: 12px 14px;
	font-size: 12px;
	font-weight: 600;
	color: var(--navy);
	letter-spacing: -.005em;
	text-align: center;
	line-height: 1.45;
	border-top: 1px solid var(--border-light);
}


/* =========================================================================
   FRONT PAGE – Medical site layout
   ========================================================================= */

/* ----- 2. About banner ----- */
.front-about {
	background: var(--navy);
	color: var(--ivory);
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}
.front-about::before {
	content: "";
	position: absolute; inset: 0;
	background:
		radial-gradient(ellipse at 15% 30%, rgba(244,236,216,0.06), transparent 50%),
		radial-gradient(ellipse at 85% 70%, rgba(201,169,97,0.08), transparent 50%);
	pointer-events: none;
}
.front-about-inner {
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
	position: relative;
}
.front-about-eyebrow {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .35em;
	color: var(--gold);
	margin-bottom: 22px;
}
.front-about-title {
	font-family: var(--font-display);
	font-size: clamp(28px, 3.4vw, 44px);
	font-weight: 800;
	color: var(--ivory);
	margin: 0 0 24px;
	letter-spacing: -.03em;
	line-height: 1.2;
}
html[lang="ja"] .front-about-title,
.lang-ja .front-about-title {
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
	line-height: 1.4;
}
.front-about-text {
	font-size: 15.5px;
	line-height: 1.95;
	color: rgba(244,236,216,0.85);
	margin: 0 auto 36px;
	max-width: 640px;
}
.front-about-cta {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 18px 32px 18px 36px;
	background: var(--gold);
	color: var(--navy);
	border-radius: 999px;
	font-size: 14.5px;
	font-weight: 700;
	letter-spacing: -.01em;
	transition: all .3s var(--ease);
	border: 2px solid var(--gold);
}
.front-about-cta:hover {
	background: var(--ivory);
	border-color: var(--ivory);
	color: var(--navy);
	transform: translateY(-2px);
	box-shadow: 0 14px 32px rgba(201,169,97,0.3);
}
.front-about-cta svg {
	width: 20px; height: 20px;
	transition: transform .3s var(--ease);
}
.front-about-cta:hover svg { transform: translateX(4px); }

/* Right – stats column */
.front-about-stats {
	display: grid;
	grid-template-columns: 1fr;
	gap: 22px;
	padding-left: 50px;
	border-left: 1px solid rgba(244,236,216,0.15);
}
.front-stat {
	padding: 14px 0;
}
.front-stat-num {
	display: block;
	font-family: var(--font-display);
	font-size: 52px;
	font-weight: 800;
	color: var(--ivory);
	line-height: 1;
	letter-spacing: -.04em;
	margin-bottom: 8px;
}
.front-stat-unit {
	font-size: 18px;
	font-weight: 600;
	color: var(--gold);
	margin-left: 4px;
	letter-spacing: 0;
}
.front-stat-label {
	display: block;
	font-size: 12.5px;
	color: rgba(244,236,216,0.7);
	letter-spacing: .04em;
	font-weight: 500;
}

/* ----- Section heads (3 & 4) ----- */
.front-section-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 50px;
	gap: 30px;
	flex-wrap: wrap;
}
.front-section-head-left { max-width: 640px; }
.front-section-eyebrow {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .35em;
	color: var(--gold-2);
	margin-bottom: 12px;
}
.front-section-title {
	font-family: var(--font-display);
	font-size: clamp(28px, 3.6vw, 40px);
	font-weight: 800;
	color: var(--navy);
	margin: 0 0 12px;
	letter-spacing: -.03em;
	line-height: 1.2;
}
html[lang="ja"] .front-section-title,
.lang-ja .front-section-title {
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
}
.front-section-sub {
	font-size: 14.5px;
	color: var(--text-mute);
	line-height: 1.75;
	margin: 0;
}
.front-section-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--navy);
	font-size: 13.5px;
	font-weight: 700;
	letter-spacing: -.005em;
	padding: 10px 0;
	border-bottom: 1.5px solid var(--navy);
	transition: gap .25s var(--ease);
}
.front-section-link:hover {
	gap: 14px;
	color: var(--navy);
}
.front-section-link.is-light {
	color: var(--ivory);
	border-bottom-color: var(--gold);
}
.front-section-link.is-light:hover { color: var(--ivory); }
.front-section-head-light .front-section-eyebrow { color: var(--gold); }
.front-section-head-light .front-section-title { color: var(--ivory); }
.front-section-head-light .front-section-sub { color: rgba(244,236,216,0.75); }

/* ----- 3. Dental tips ----- */
.front-tips {
	background: var(--white);
	padding: 100px 0;
}
.front-tips-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

/* ----- 4. Doctor's column (dark section) ----- */
.front-column {
	background: var(--navy);
	padding: 100px 0;
	color: var(--ivory);
}
.front-column-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr;
	gap: 24px;
}
.front-column-card {
	background: var(--navy-2);
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(244,236,216,0.08);
	transition: all .35s var(--ease);
}
.front-column-card:hover {
	transform: translateY(-4px);
	border-color: var(--gold);
	box-shadow: 0 18px 36px rgba(0,0,0,0.25);
}
.front-column-link { display: block; color: inherit; }
.front-column-link:hover { color: inherit; }

.front-column-thumb {
	aspect-ratio: 16/10;
	overflow: hidden;
	background: var(--navy-3);
}
.front-column-card.is-featured .front-column-thumb { aspect-ratio: 16/10; }
.front-column-thumb img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform .8s var(--ease);
}
.front-column-card:hover .front-column-thumb img { transform: scale(1.05); }
.front-column-thumb.is-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		repeating-linear-gradient(
			-45deg,
			var(--navy-3) 0,
			var(--navy-3) 16px,
			rgba(244,236,216,0.04) 16px,
			rgba(244,236,216,0.04) 32px
		);
}
.front-column-thumb-label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .08em;
	color: rgba(244,236,216,0.5);
	padding: 8px 18px;
	background: rgba(244,236,216,0.08);
	border-radius: 999px;
}

.front-column-body {
	padding: 24px 24px 26px;
}
.front-column-card.is-featured .front-column-body { padding: 32px 32px 36px; }
.front-column-tag {
	display: inline-block;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .15em;
	color: var(--navy);
	background: var(--gold);
	padding: 4px 10px;
	border-radius: 3px;
	margin-bottom: 14px;
}
.front-column-title {
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 700;
	color: var(--ivory);
	margin: 0 0 10px;
	letter-spacing: -.02em;
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.front-column-card.is-featured .front-column-title {
	font-size: 24px;
	-webkit-line-clamp: 3;
}
html[lang="ja"] .front-column-title,
.lang-ja .front-column-title {
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
	line-height: 1.5;
}
.front-column-excerpt {
	font-size: 13px;
	line-height: 1.7;
	color: rgba(244,236,216,0.7);
	margin: 0 0 16px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.front-column-card.is-featured .front-column-excerpt {
	font-size: 14px;
	-webkit-line-clamp: 3;
}
.front-column-meta {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-top: 14px;
	border-top: 1px solid rgba(244,236,216,0.1);
}
.front-column-author {
	font-size: 12px;
	font-weight: 600;
	color: var(--gold);
	letter-spacing: -.005em;
}
.front-column-date {
	font-size: 11.5px;
	color: rgba(244,236,216,0.5);
	letter-spacing: .02em;
}

/* ----- 5. Magazine (clinical cases) ----- */
.front-magazine {
	background: var(--cream);
	padding: 100px 0;
}


/* =========================================================================
   SCHEDULE TRIGGER BUTTON (replaces inline schedule section)
   ========================================================================= */
.dir-schedule-trigger {
	background: var(--cream);
	padding: 50px 0;
}
.schedule-trigger-btn {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 22px 28px;
	background: var(--white);
	border: 1.5px solid var(--border-light);
	border-radius: 16px;
	color: var(--navy);
	cursor: pointer;
	transition: all .3s var(--ease);
	font-family: inherit;
	text-align: left;
}
.schedule-trigger-btn:hover {
	border-color: var(--gold);
	box-shadow: 0 12px 32px rgba(26,37,67,0.08);
	transform: translateY(-2px);
}
.schedule-trigger-ico {
	display: inline-flex;
	width: 52px; height: 52px;
	align-items: center;
	justify-content: center;
	background: var(--navy);
	color: var(--ivory);
	border-radius: 12px;
	flex-shrink: 0;
}
.schedule-trigger-ico svg { width: 26px; height: 26px; }
.schedule-trigger-text { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.schedule-trigger-eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .3em;
	color: var(--gold-2);
}
.schedule-trigger-title {
	font-size: 17px;
	font-weight: 700;
	color: var(--navy);
	letter-spacing: -.015em;
}
.schedule-trigger-arrow {
	color: var(--navy);
	font-size: 22px;
	font-weight: 600;
	transition: transform .3s var(--ease);
}
.schedule-trigger-btn:hover .schedule-trigger-arrow { transform: translateX(6px); }

/* =========================================================================
   SCHEDULE MODAL — calendar popup
   ========================================================================= */
.schedule-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	transition: opacity .28s var(--ease);
	pointer-events: none;
}
.schedule-modal.is-open {
	display: flex;
	opacity: 1;
	pointer-events: auto;
}
.schedule-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(8, 15, 35, 0.55);
}
.schedule-modal-panel {
	position: relative;
	background: var(--white);
	border-radius: 20px;
	max-width: 760px;
	width: 100%;
	max-height: calc(100vh - 40px);
	overflow-y: auto;
	padding: 48px 48px 38px;
	box-shadow: 0 30px 80px rgba(0,0,0,0.4);
	transform: translateY(20px) scale(.96);
	transition: transform .35s var(--ease);
}
.schedule-modal.is-open .schedule-modal-panel {
	transform: translateY(0) scale(1);
}
.schedule-modal-close {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 38px; height: 38px;
	background: var(--cream-2);
	border: 0;
	border-radius: 50%;
	color: var(--navy);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all .25s var(--ease);
}
.schedule-modal-close:hover {
	background: var(--navy);
	color: var(--ivory);
	transform: rotate(90deg);
}
.schedule-modal-close svg { width: 18px; height: 18px; }

.schedule-modal-head { margin-bottom: 28px; }
.schedule-modal-eyebrow {
	display: block;
	font-size: 13px;
	color: var(--text-mute);
	margin-bottom: 8px;
	letter-spacing: -.005em;
}
.schedule-modal-title {
	font-family: var(--font-display);
	font-size: clamp(24px, 2.8vw, 30px);
	font-weight: 800;
	color: var(--navy);
	margin: 0;
	letter-spacing: -.025em;
	line-height: 1.25;
}
html[lang="ja"] .schedule-modal-title,
.lang-ja .schedule-modal-title {
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
}

/* Calendar */
.schedule-cal {
	background: var(--cream);
	border-radius: 12px;
	padding: 22px 22px 18px;
	margin-bottom: 24px;
}
.schedule-cal-month {
	font-family: var(--font-display);
	font-size: 13px;
	font-weight: 700;
	color: var(--gold-2);
	letter-spacing: .12em;
	margin-bottom: 14px;
}
.schedule-cal-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 6px;
}
.schedule-cal-dow {
	text-align: center;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	color: var(--text-mute);
	padding: 8px 0;
}
.schedule-cal-dow.is-sun { color: #c45656; }
.schedule-cal-dow.is-sat { color: #4a6da8; }

.schedule-cal-day {
	aspect-ratio: 1/1.05;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 6px 4px;
	border-radius: 8px;
	background: var(--white);
	border: 1px solid transparent;
	font-family: var(--font-display);
	transition: all .2s var(--ease);
	position: relative;
}
.schedule-cal-day.is-blank {
	background: transparent;
	pointer-events: none;
}
.schedule-cal-num {
	font-size: 15px;
	font-weight: 600;
	color: var(--navy);
	line-height: 1;
}
.schedule-cal-day.is-sun .schedule-cal-num { color: #c45656; }
.schedule-cal-day.is-sat .schedule-cal-num { color: #4a6da8; }

.schedule-cal-day.is-closed {
	background: var(--navy);
	border-color: var(--navy);
}
.schedule-cal-day.is-closed .schedule-cal-num {
	color: var(--gold) !important;
	font-weight: 800;
}
.schedule-cal-tag {
	font-size: 9px;
	font-weight: 600;
	letter-spacing: -.01em;
	color: var(--ivory);
	margin-top: 4px;
	line-height: 1.1;
	text-align: center;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	padding: 0 2px;
}

/* Closure list (below calendar) */
.schedule-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 22px;
}
.schedule-list-row {
	display: flex;
	gap: 18px;
	align-items: center;
	padding: 16px 18px;
	background: var(--ivory);
	border-left: 3px solid var(--gold);
	border-radius: 8px;
}
.schedule-list-day {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 56px;
}
.schedule-list-num {
	font-family: var(--font-display);
	font-size: 32px;
	font-weight: 800;
	color: var(--navy);
	line-height: 1;
	letter-spacing: -.04em;
}
.schedule-list-dow {
	font-size: 11px;
	font-weight: 600;
	color: var(--text-mute);
	margin-top: 4px;
	letter-spacing: -.005em;
}
.schedule-list-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.schedule-list-info strong {
	font-size: 15px;
	font-weight: 700;
	color: var(--navy);
	letter-spacing: -.01em;
}
.schedule-list-info span {
	font-size: 13px;
	color: var(--text-mute);
	line-height: 1.55;
}

.schedule-modal-note {
	font-size: 12.5px;
	color: var(--text-light);
	line-height: 1.65;
	margin: 0;
	padding: 14px 16px;
	background: var(--cream-2);
	border-radius: 8px;
}

body.no-scroll { overflow: hidden; }


/* =========================================================================
   FRONT PAGE – Schedule announcement bar
   ========================================================================= */
.front-schedule-bar {
	background: var(--ivory);
	border-bottom: 1px solid var(--border-light);
}
.front-schedule-link {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 14px 32px;
	background: transparent;
	border: 0;
	color: var(--navy);
	cursor: pointer;
	font-family: inherit;
	text-align: left;
	transition: all .25s var(--ease);
}
.front-schedule-link:hover {
	background: rgba(26,37,67,0.04);
}
.front-schedule-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--navy);
	color: var(--gold);
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .15em;
	flex-shrink: 0;
}
.front-schedule-text {
	flex: 1;
	font-size: 14.5px;
	font-weight: 600;
	color: var(--navy);
	letter-spacing: -.01em;
}
.front-schedule-arrow {
	font-size: 18px;
	color: var(--gold-2);
	font-weight: 600;
	transition: transform .25s var(--ease);
}
.front-schedule-link:hover .front-schedule-arrow {
	transform: translateX(4px);
}

@media (max-width: 820px) {
	.front-schedule-link { padding: 12px 16px; gap: 12px; }
	.front-schedule-badge { padding: 5px 10px; font-size: 10px; letter-spacing: .1em; }
	.front-schedule-text { font-size: 13px; }
	.front-schedule-arrow { font-size: 16px; }
}


/* =========================================================================
   HERO SCHEDULE — full-width inline schedule (replaces hero image)
   No modal, no backdrop, no popup. Just clean banner display.
   ========================================================================= */
.hero-schedule {
	background: var(--ivory);
	padding: 60px 0 70px;
	border-bottom: 1px solid var(--border-light);
}
.hero-schedule-head {
	text-align: center;
	margin-bottom: 40px;
}
.hero-schedule-eyebrow {
	display: block;
	font-size: 13px;
	color: var(--gold-2);
	margin-bottom: 12px;
	letter-spacing: -.005em;
	font-weight: 500;
}
.hero-schedule-title {
	font-family: var(--font-display);
	font-size: clamp(26px, 3.2vw, 38px);
	font-weight: 800;
	color: var(--navy);
	margin: 0 0 14px;
	letter-spacing: -.03em;
	line-height: 1.2;
}
html[lang="ja"] .hero-schedule-title,
.lang-ja .hero-schedule-title {
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
}
.hero-schedule-note {
	font-size: 13.5px;
	color: var(--text-mute);
	line-height: 1.75;
	margin: 0 auto;
	max-width: 600px;
}

.hero-schedule-inner {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 32px;
	max-width: 1100px;
	margin: 0 auto;
}

/* Calendar (full width within its column) */
.hero-cal {
	background: var(--white);
	border-radius: 14px;
	padding: 26px 26px 22px;
	box-shadow: 0 4px 18px rgba(26,37,67,0.06);
}
.hero-cal-month {
	font-family: var(--font-display);
	font-size: 14px;
	font-weight: 700;
	color: var(--gold-2);
	letter-spacing: .12em;
	margin-bottom: 16px;
}
.hero-cal-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 6px;
}
.hero-cal-dow {
	text-align: center;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	color: var(--text-mute);
	padding: 8px 0;
}
.hero-cal-dow.is-sun { color: #c45656; }
.hero-cal-dow.is-sat { color: #4a6da8; }

.hero-cal-day {
	aspect-ratio: 1/1.05;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 6px 4px;
	border-radius: 8px;
	background: var(--cream-2);
	border: 1px solid transparent;
	font-family: var(--font-display);
	transition: all .2s var(--ease);
	position: relative;
}
.hero-cal-day.is-blank {
	background: transparent;
	pointer-events: none;
}
.hero-cal-num {
	font-size: 15px;
	font-weight: 600;
	color: var(--navy);
	line-height: 1;
}
.hero-cal-day.is-sun .hero-cal-num { color: #c45656; }
.hero-cal-day.is-sat .hero-cal-num { color: #4a6da8; }

.hero-cal-day.is-closed {
	background: var(--navy);
	border-color: var(--navy);
}
.hero-cal-day.is-closed .hero-cal-num {
	color: var(--gold) !important;
	font-weight: 800;
}
.hero-cal-tag {
	font-size: 9px;
	font-weight: 600;
	letter-spacing: -.01em;
	color: var(--ivory);
	margin-top: 4px;
	line-height: 1.1;
	text-align: center;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	padding: 0 2px;
}

/* List */
.hero-sched-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.hero-sched-row {
	display: flex;
	gap: 16px;
	align-items: center;
	padding: 18px 20px;
	background: var(--white);
	border-left: 3px solid var(--gold);
	border-radius: 10px;
	box-shadow: 0 2px 12px rgba(26,37,67,0.04);
}
.hero-sched-day {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 50px;
}
.hero-sched-num {
	font-family: var(--font-display);
	font-size: 30px;
	font-weight: 800;
	color: var(--navy);
	line-height: 1;
	letter-spacing: -.04em;
}
.hero-sched-dow {
	font-size: 11px;
	font-weight: 600;
	color: var(--text-mute);
	margin-top: 4px;
	letter-spacing: -.005em;
}
.hero-sched-info {
	flex: 1;
}
.hero-sched-info strong {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: var(--navy);
	letter-spacing: -.01em;
	margin-bottom: 4px;
}
.hero-sched-info span {
	font-size: 12.5px;
	color: var(--text-mute);
	line-height: 1.55;
}

/* Mobile responsive */
@media (max-width: 820px) {
	.hero-schedule { padding: 30px 0 40px; }
	.hero-schedule-head { margin-bottom: 24px; }
	.hero-schedule-title { font-size: 22px; line-height: 1.3; }
	.hero-schedule-eyebrow { font-size: 12px; }
	.hero-schedule-note { font-size: 12.5px; line-height: 1.7; }

	.hero-schedule-inner {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.hero-cal { padding: 16px 14px 12px; border-radius: 10px; }
	.hero-cal-month { font-size: 12px; margin-bottom: 10px; }
	.hero-cal-grid { gap: 4px; }
	.hero-cal-dow { font-size: 10px; padding: 6px 0; }
	.hero-cal-day { padding: 4px 2px; border-radius: 6px; }
	.hero-cal-num { font-size: 13px; }
	.hero-cal-tag { font-size: 8px; margin-top: 2px; }

	.hero-sched-row { padding: 14px 16px; gap: 12px; }
	.hero-sched-num { font-size: 24px; }
	.hero-sched-dow { font-size: 10px; }
	.hero-sched-info strong { font-size: 13px; }
	.hero-sched-info span { font-size: 11.5px; }
}


/* =========================================================================
   HERO – Force collapse when empty (mobile + desktop)
   The .hero base class has min-height: 720px which causes a big white box
   when no image is present. These rules force it to collapse safely.
   ========================================================================= */
.hero-imageonly {
	min-height: 0 !important;
	display: block;
	font-size: 0;        /* kill inline-img whitespace gap */
	line-height: 0;
	margin: 0 !important;
	padding: 0 !important;
}
.hero-imageonly .hero-bg {
	position: relative !important;
	inset: auto !important;
	width: 100%;
	font-size: 0;
	line-height: 0;
	margin: 0;
	padding: 0;
}
.hero-imageonly .hero-bg img {
	width: 100%;
	height: auto;
	max-height: 720px;
	object-fit: cover;
	margin: 0;
	padding: 0;
	vertical-align: top;
}
/* Hero image visibility — split cleanly by viewport */
.hero-imageonly .hero-img-desktop,
.hero-imageonly .hero-img-mobile { display: none; }

@media (min-width: 821px) {
	.hero-imageonly .hero-img-desktop { display: block !important; }
	.hero-imageonly .hero-img-mobile  { display: none  !important; }
}
@media (max-width: 820px) {
	.hero-imageonly .hero-img-desktop { display: none  !important; }
	.hero-imageonly .hero-img-mobile  { display: block !important; }
}
.hero-imageonly:not(:has(img)) {
	display: none !important;
}
/* If picture/source has no real src, hide hero */
.hero-imageonly .hero-bg img:not([src]),
.hero-imageonly .hero-bg img[src=""] {
	display: none !important;
}


/* =========================================================================
   NAVER BOOKING button (CTA)
   ========================================================================= */
.btn-naver {
	background: #03c75a;
	color: #fff !important;
	border: 2px solid #03c75a;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all .25s var(--ease);
}
.btn-naver::before {
	content: "N";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	background: #fff;
	color: #03c75a;
	border-radius: 4px;
	font-weight: 900;
	font-size: 13px;
	font-family: var(--font-display);
}
.btn-naver:hover {
	background: #02b350;
	border-color: #02b350;
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(3,199,90,0.35);
}

