/*
Theme Name: 연세두리치과
Theme URI: https://yonsei-duri.com
Author: Yonsei Doori Dental Clinic
Description: Precision Care theme for 연세두리치과 — 우리동네 안심주치의
Version: 1.0.6
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.0
Text Domain: yonsei-duri
*/

/* ============================================================
   DESIGN TOKENS — Precision Care
   ============================================================ */
:root {
  --c-hero-bg:      #0D1F4E;
  --c-primary:      #1B3A6B;
  --c-secondary:    #8C9BAD;
  --c-accent:       #3B9EE0;
  --c-accent-hover: #2d8ed0;
  --c-accent-bright:#64C7FF;
  --c-blue-line:    rgba(100,199,255,0.10);
  --c-blue-wash:    rgba(100,199,255,0.14);
  --c-white:        #FFFFFF;
  --c-text-dark:    #0D1522;
  --c-surface:      #F0F3F7;
  --c-border:       #D1D9E6;

  --font-heading: 'Barlow Condensed', 'Noto Sans KR', sans-serif;
  --font-body:    'Barlow', 'Noto Sans KR', sans-serif;
  --font-korean:  'Noto Sans KR', 'Barlow', sans-serif;

  --transition:   0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --card-radius:  4px;
  --content-size: 800px;
  --wide-size:    1500px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}
body {
  font-family: var(--font-body);
  background: var(--c-white);
  color: var(--c-text-dark);
  font-size: 16px;
  line-height: 1.65;
  max-width: 100%;
  overflow-x: clip;
}
@supports not (overflow-x: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.wide-width {
  max-width: var(--wide-size);
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.is-visible,
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 140px;
  background: linear-gradient(135deg, #0D1F4E 0%, #123A78 100%);
  padding: 0 max(40px, calc((100vw - 1500px) / 2 + 40px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(59,158,224,0.15);
  overflow: visible;
}
.nav-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(100,199,255,0.14) 1px, transparent 1px),
    linear-gradient(rgba(100,199,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100,199,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px, 72px 72px, 72px 72px;
  pointer-events: none;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 100%;
  position: relative;
  z-index: 1;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 76px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  width: 174px;
}

body.admin-bar .nav-bar {
  top: var(--wp-admin--admin-bar--height, 32px);
}
.nav-brand-ko {
  font-family: var(--font-korean);
  font-size: 24px;
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: 0;
  line-height: 1.2;
  white-space: nowrap;
}
.nav-brand-en {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  color: var(--c-accent);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}
nav.nav-links {
  display: flex;
  gap: clamp(24px, 2.5vw, 40px);
  align-items: center;
  position: relative;
  z-index: 1;
  flex: 1;
  justify-content: center;
  height: 100%;
}
nav.nav-links a {
  font-family: var(--font-korean);
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color var(--transition);
  white-space: nowrap;
}
nav.nav-links a:hover { color: var(--c-accent); }
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-item > a {
  display: inline-flex;
  align-items: center;
}
.nav-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 190px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transform: translate(-50%, 10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: rgba(9, 21, 50, 0.96);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 36px rgba(0,0,0,0.18);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.nav-submenu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}
.nav-submenu a {
  display: block;
  padding: 10px 12px;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  color: rgba(255,255,255,0.78) !important;
  white-space: nowrap;
}
.nav-submenu a:hover {
  color: var(--c-accent) !important;
  background: rgba(255,255,255,0.04);
}
.nav-item:hover .nav-submenu,
.nav-item:focus-within .nav-submenu {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
a.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--c-accent);
  color: var(--c-white);
  padding: 12px 28px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  transition: all var(--transition);
  flex-shrink: 0;
}
a.nav-cta:hover {
  background: var(--c-accent-hover);
  box-shadow: 0 0 16px rgba(59,158,224,0.45);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: clamp(7rem,12vw,10rem) 40px clamp(4rem,7vw,6rem);
  background: linear-gradient(135deg, #0D1F4E 0%, #123A78 100%);
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 70px;
  background: var(--c-white);
  clip-path: polygon(0 100%, 100% 40%, 100% 100%);
  z-index: 2;
}
.page-hero__dots {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(100,199,255,0.14) 1px, transparent 1px),
    linear-gradient(rgba(100,199,255,0.08) 1px, transparent 1px);
  background-size: 28px 28px, 88px 88px;
  pointer-events: none;
}
.page-hero__scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to bottom, transparent 0px, transparent 7px, rgba(100,199,255,0.08) 7px, rgba(100,199,255,0.08) 8px);
  pointer-events: none;
}
.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--wide-size);
  margin: 0 auto;
}
.page-hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeInDown 0.8s ease 0.2s both;
}
.page-hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--c-accent);
  flex-shrink: 0;
}
.page-hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(42px,6vw,80px);
  font-weight: 800;
  line-height: 1.0;
  color: var(--c-white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  animation: fadeInUp 0.8s ease 0.35s both;
}
.page-hero__heading-ko {
  font-family: var(--font-korean);
  font-size: clamp(18px,2.5vw,28px);
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  animation: fadeInUp 0.8s ease 0.45s both;
}

/* ============================================================
   HERO — CINEMATIC FULL VIEWPORT
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--c-hero-bg);
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/wp-content/themes/yonsei-duri/assets/v1.jpg');
  background-size: cover;
  background-position: center top;
  opacity: 0.38;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,31,78,0.25) 0%,
    rgba(13,31,78,0.15) 40%,
    rgba(13,31,78,0.75) 85%,
    rgba(13,31,78,0.95) 100%
  );
}
.hero__dots {
  position: absolute;
  inset: 0;
  display: none;
  background: none;
  pointer-events: none;
}
.hero__scan {
  position: absolute;
  inset: 0;
  display: none;
  background: none;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--c-white);
  clip-path: polygon(0 100%, 100% 40%, 100% 100%);
  z-index: 3;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(5rem,10vw,8rem) 40px clamp(7rem,12vw,10rem);
  max-width: var(--wide-size);
  margin: 0 auto;
  width: 100%;
}
.hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeInDown 0.8s ease 0.2s both;
}
.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--c-accent);
  flex-shrink: 0;
}
.hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(52px,8vw,100px);
  font-weight: 800;
  line-height: 1.0;
  color: var(--c-white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  animation: fadeInUp 0.8s ease 0.35s both;
}
.hero__heading-ko {
  font-family: var(--font-korean);
  font-size: clamp(22px,3.5vw,38px);
  font-weight: 700;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  line-height: 1.3;
  animation: fadeInUp 0.8s ease 0.45s both;
}
.hero__sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease 0.55s both;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.65s both;
}
.hero__scroll-indicator {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 1s ease 1s both;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero__scroll-text {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, #1B3A6B 0%, #1E5795 100%);
  padding: 64px 40px 76px;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: -2px; left: 0; right: 0;
  height: 50px;
  background: var(--c-white);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.stats-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(100,199,255,0.16) 1px, transparent 1px),
    linear-gradient(rgba(100,199,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100,199,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px, 96px 96px, 96px 96px;
  pointer-events: none;
}
.stats-bottom-cut {
  position: relative;
  height: 60px;
  background: linear-gradient(135deg, #0D1F4E 0%, #123A78 100%);
  overflow: hidden;
}
.stats-bottom-cut::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--c-white);
  clip-path: polygon(0 100%, 100% 40%, 100% 100%);
}
.stats-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
  max-width: var(--wide-size);
  margin-left: auto;
  margin-right: auto;
}
.stats-label::after {
  content: '';
  display: block;
  flex: 1;
  height: 1px;
  background: rgba(59,158,224,0.2);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
  border: 1px solid rgba(59,158,224,0.14);
  background: rgba(13,31,78,0.08);
}
.stat-item {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(59,158,224,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.0;
  letter-spacing: -0.02em;
  display: block;
}
.stat-accent { color: var(--c-accent); font-size: 36px; }
.stat-label-ko {
  font-family: var(--font-korean);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
  display: block;
}
.stat-label-en {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-accent);
  opacity: 0.7;
  display: block;
  margin-top: 2px;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header { text-align: center; margin-bottom: 48px; }
.section-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--c-border);
}
.section-label-left {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label-left::after {
  content: '';
  display: block;
  flex: 1;
  height: 1px;
  background: var(--c-border);
}
.section-heading-en {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: var(--c-hero-bg);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 6px;
}
.section-heading-ko {
  font-family: var(--font-korean);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 14px;
}
.section-sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--c-secondary);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  background: var(--c-white);
  padding: 80px 40px;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--wide-size);
  margin: 0 auto;
}
.card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(13,31,78,0.06);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(13,31,78,0.12), 0 0 0 1px rgba(59,158,224,0.2);
  border-color: rgba(59,158,224,0.3);
}
.card__img-wrap { overflow: hidden; position: relative; }
.card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.card:hover .card__img { transform: scale(1.04); }
.card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(13,31,78,0.45) 100%);
}
.card__body { padding: 22px 24px 8px; }
.card__tag {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 8px;
  background: rgba(59,158,224,0.08);
  border-radius: 2px;
}
.card__heading {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--c-hero-bg);
  line-height: 1.2;
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}
.card__heading-ko {
  font-family: var(--font-korean);
  font-size: 15px;
  font-weight: 700;
  color: var(--c-hero-bg);
  margin-bottom: 10px;
}
.card__text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--c-secondary);
  line-height: 1.6;
}
.card__footer {
  padding: 12px 24px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card__link {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}
.card__link:hover { color: var(--c-primary); gap: 10px; }
.card__link::after { content: '→'; font-size: 14px; }

/* ============================================================
   DOCTORS
   ============================================================ */
.doctors-section {
  background: #F0F3F7 !important;
  padding: 80px 40px 90px;
  position: relative;
  overflow: hidden;
}
.doctors-section::before {
  content: '';
  position: absolute;
  top: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--c-white);
  clip-path: polygon(0 100%, 100% 40%, 100% 100%);
}
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--wide-size);
  margin: 0 auto;
}
.doctor-card {
  background: var(--c-white) !important;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(13,31,78,0.08);
  transition: all var(--transition);
  border: 1px solid var(--c-border);
}
.doctor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13,31,78,0.13), 0 0 0 1px rgba(59,158,224,0.2);
}
.doctor-card__photo-wrap { position: relative; overflow: hidden; }
.doctor-card__photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}
.doctor-card:hover .doctor-card__photo { transform: scale(1.04); }
.doctor-card__accent {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-primary));
}
.doctor-card__body { padding: 18px 18px 20px; }
.doctor-card__name-en {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-hero-bg);
  letter-spacing: 0.01em;
  line-height: 1.15;
}
.doctor-card__name-ko {
  font-family: var(--font-korean);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-primary);
  margin-top: 2px;
  margin-bottom: 8px;
}
.doctor-card__title {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--c-secondary);
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.doctor-card__badge {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-accent);
  padding: 3px 8px;
  background: rgba(59,158,224,0.08);
  border-radius: 2px;
}
.doctors-section > .wp-block-group:first-child h2 {
  color: var(--c-hero-bg) !important;
}
.doctors-section > .wp-block-group:first-child p:not(:first-child) {
  color: var(--c-secondary) !important;
}
.doctors-section .doctor-card {
  border-color: #D8E2EC !important;
}
.doctors-section .doctor-card h3 {
  color: var(--c-hero-bg) !important;
}
.doctors-section .doctor-card p {
  color: var(--c-secondary) !important;
}
.doctors-section .doctor-card p:first-of-type,
.doctors-section .doctor-card p:nth-of-type(2) {
  color: var(--c-accent) !important;
}
.doctors-section .wp-block-button__link {
  color: var(--c-hero-bg) !important;
  border-color: rgba(13,31,78,0.3) !important;
}
.doctors-section .duri-doctor-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #F4F6F8;
}
.doctors-section .duri-doctor-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  visibility: visible;
}

/* Doctor profile split layout (doctors page) */
.doctor-profile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--wide-size);
  margin: 0 auto;
  padding: 60px 40px;
}
.doctor-profile:nth-child(even) { direction: rtl; }
.doctor-profile:nth-child(even) > * { direction: ltr; }
.doctor-profile__photo {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--card-radius);
  border: 1px solid rgba(59,158,224,0.2);
}
.doctor-profile__eyebrow {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.doctor-profile__eyebrow::after {
  content: '';
  display: block;
  flex: 1;
  height: 1px;
  background: var(--c-border);
}
.doctor-profile__name {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--c-hero-bg);
  letter-spacing: -0.02em;
  line-height: 1.0;
  margin-bottom: 4px;
}
.doctor-profile__name-ko {
  font-family: var(--font-korean);
  font-size: 24px;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 16px;
}
.doctor-profile__title {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--c-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}
.doctor-profile__creds {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.doctor-profile__creds li {
  font-family: var(--font-korean);
  font-size: 14px;
  color: var(--c-text-dark);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.55;
}
.doctor-profile__creds li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--c-accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

/* ============================================================
   TECHNOLOGY SPLIT
   ============================================================ */
.tech-section {
  background: linear-gradient(135deg, #0D1F4E 0%, #123A78 100%);
  padding: 72px 0 78px;
  position: relative;
  overflow: hidden;
}
.tech-section::before {
  content: '';
  position: absolute;
  top: -2px; left: 0; right: 0;
  height: 50px;
  background: var(--c-surface);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.tech-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(100,199,255,0.14) 1px, transparent 1px),
    linear-gradient(rgba(100,199,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100,199,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px, 88px 88px, 88px 88px;
  pointer-events: none;
}
.tech-inner {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.tech-inner > .wp-block-column { min-width: 0; }
.tech-eyebrow {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 14px;
}
.tech-heading {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.tech-heading-ko {
  font-family: var(--font-korean);
  font-size: 22px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  margin-bottom: 18px;
}
.tech-body {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 28px;
}
.tech-text-col h2,
.tech-text-col p {
  max-width: 100%;
  overflow-wrap: anywhere;
}
.tech-equipment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 30px;
}
.tech-equipment-list span,
.tech-equipment-tab {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 12px;
  border: 1px solid rgba(100,199,255,0.34);
  border-radius: 4px;
  background: rgba(59,158,224,0.12);
  color: rgba(255,255,255,0.9);
  font-family: var(--font-korean);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}
.tech-equipment-tab {
  cursor: pointer;
  appearance: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.tech-equipment-tab:hover,
.tech-equipment-tab:focus-visible,
.tech-equipment-tab.is-active {
  border-color: rgba(100,199,255,0.78);
  background: rgba(59,158,224,0.28);
  color: #FFFFFF;
}
.tech-equipment-tab:focus-visible {
  outline: 2px solid rgba(100,199,255,0.78);
  outline-offset: 3px;
}
.tech-equipment-tab.is-active {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
}
.tech-equipment-preview {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(59,158,224,0.2);
  border-radius: 4px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.tech-equipment-preview__img {
  display: block;
  width: 100%;
  height: clamp(330px, 36vw, 460px) !important;
  max-height: 460px;
  object-fit: contain !important;
  padding: 18px;
  box-sizing: border-box;
  transition: opacity 0.18s ease, transform 0.28s ease;
}
.tech-equipment-preview__img.is-changing {
  opacity: 0.35;
  transform: scale(1.015);
}
.tech-equipment-preview__img.is-contain {
  object-fit: contain;
}
.tech-equipment-preview__caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0 18px 18px;
  padding: 14px 16px;
  border-radius: 4px;
  background: rgba(13,31,78,0.86);
  color: #FFFFFF;
  text-align: left;
}
.tech-equipment-preview__caption strong {
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.02em;
}
.tech-equipment-preview__caption span {
  font-family: var(--font-korean);
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,0.82);
}
.tech-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tech-features li {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 10px;
}
.tech-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--c-accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.tech-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(59,158,224,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  display: block;
}
.progress-label {
  font-family: var(--font-heading);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  margin-top: 20px;
}
.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 8px;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--c-accent), #7dd4ff);
  border-radius: 2px;
  animation: slideProgress 2.5s ease-in-out infinite alternate;
}

/* ============================================================
   VALUES
   ============================================================ */
.values-section {
  background: var(--c-white);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}
.values-section::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50px;
  background: var(--c-hero-bg);
  clip-path: polygon(0 60%, 100% 100%, 0 100%);
}
.values-inner { max-width: var(--wide-size); margin: 0 auto; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.value-item {
  text-align: center;
  padding: 28px 16px;
  border: 1px solid var(--c-border);
  border-radius: var(--card-radius);
  background: var(--c-white);
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(13,31,78,0.06);
}
.value-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(13,31,78,0.12), 0 0 0 1px rgba(59,158,224,0.2);
  border-color: rgba(59,158,224,0.3);
}
.value-icon {
  width: 48px;
  height: 48px;
  background: rgba(59,158,224,0.1);
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(59,158,224,0.25);
}
.value-icon svg { width: 22px; height: 22px; }
.value-title {
  font-family: var(--font-korean);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-hero-bg);
  line-height: 1.5;
  margin-bottom: 6px;
}
.value-sub {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--c-secondary);
  line-height: 1.5;
}

/* ============================================================
   CONTACT / CTA SECTION
   ============================================================ */
.contact-section {
  background: var(--c-hero-bg);
  padding: 80px 40px 90px;
  position: relative;
  overflow: hidden;
}
.contact-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(59,158,224,0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: var(--wide-size);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.contact-heading {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.contact-heading-ko {
  font-family: var(--font-korean);
  font-size: 22px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}
.contact-body {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 28px;
}
.contact-info { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.contact-info-item strong {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-accent);
  font-weight: 700;
  min-width: 60px;
  padding-top: 2px;
}

/* ============================================================
   NAVER BOOKING PANEL
   ============================================================ */
.booking-panel {
  background: var(--c-hero-bg);
  border-radius: var(--card-radius);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(59,158,224,0.15);
}
.booking-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(59,158,224,0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.booking-panel__content { position: relative; z-index: 1; width: 100%; }
.booking-panel__eyebrow {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 8px;
}
.booking-panel__heading {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: -0.02em;
  line-height: 1.0;
  margin-bottom: 8px;
}
.booking-panel__heading-ko {
  font-family: var(--font-korean);
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.booking-panel__desc {
  font-family: var(--font-korean);
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}
.naver-booking-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #03C75A;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 6px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(3,199,90,0.35);
}
.naver-booking-btn:hover {
  background: #02b350;
  box-shadow: 0 0 32px rgba(3,199,90,0.55), 0 6px 20px rgba(3,199,90,0.3);
  transform: translateY(-2px);
}
.booking-sub {
  font-family: var(--font-korean);
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
  line-height: 1.6;
}
.or-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0;
  color: rgba(255,255,255,0.2);
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.2em;
}
.or-divider::before,
.or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(59,158,224,0.15);
}
.phone-booking { display: flex; align-items: center; justify-content: center; gap: 10px; }
.phone-booking__label {
  font-family: var(--font-korean);
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.phone-booking__number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--c-accent);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color var(--transition);
}
.phone-booking__number:hover { color: #fff; }

/* Homepage clinic hours schedule */
.clinic-hours-schedule {
  max-width: 1040px;
  margin: 0 auto 64px;
  text-align: center;
}
.clinic-hours-schedule__eyebrow {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 10px;
}
.clinic-hours-schedule__title {
  font-family: var(--font-korean);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--c-hero-bg);
  margin-bottom: 28px;
}
.clinic-hours-schedule__card {
  background: #fff;
  border: 1px solid #D8E2EC;
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(13,31,78,0.08);
  overflow: hidden;
}
.clinic-hours-schedule__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.clinic-hours-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  table-layout: fixed;
  font-family: var(--font-korean);
}
.clinic-hours-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.clinic-hours-table th,
.clinic-hours-table td {
  border: 1px solid #D8E2EC;
  padding: 18px 12px;
  text-align: center;
  vertical-align: middle;
  color: var(--c-hero-bg);
}
.clinic-hours-table thead th {
  background: #F7FAFD;
  border-top: 0;
  font-size: 15px;
  font-weight: 800;
}
.clinic-hours-table thead th:first-child { border-left: 0; }
.clinic-hours-table thead th:last-child { border-right: 0; }
.clinic-hours-table tbody th {
  background: #EAF6FC;
  font-size: 15px;
  font-weight: 800;
  word-break: keep-all;
}
.clinic-hours-table tbody th[scope="row"] {
  background: #F7FAFD;
  font-size: 14px;
  font-weight: 700;
}
.clinic-hours-table tbody tr:last-child th,
.clinic-hours-table tbody tr:last-child td { border-bottom: 0; }
.clinic-hours-table tbody th:first-child { border-left: 0; }
.clinic-hours-table tbody td:last-child { border-right: 0; }
.hours-open,
.hours-time-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 34px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(59,158,224,0.1);
  color: var(--c-hero-bg);
  font-weight: 800;
}
.hours-open small {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  line-height: 1.1;
}
.hours-open--time {
  min-width: 70px;
}
.hours-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 34px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(229,83,83,0.1);
  color: #D71920;
  font-weight: 800;
}
.hours-muted {
  color: #AAB5C3;
  font-weight: 700;
}
.hours-night {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(59, 158, 224, 0.1);
  color: var(--c-hero-bg);
  font-weight: 800;
  line-height: 1.25;
  box-shadow: inset 0 0 0 1px rgba(59, 158, 224, 0.16);
}
.hours-night::before {
  content: '화';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  font-family: var(--font-korean);
  font-size: 12px;
  font-weight: 800;
}
.hours-night strong {
  color: var(--c-hero-bg);
  font-weight: 900;
}
.clinic-hours-doctors {
  padding: 28px 34px 30px;
  border-top: 1px solid #D8E2EC;
  background: linear-gradient(180deg, #FFFFFF 0%, #F7FAFD 100%);
}
.clinic-hours-doctors__title {
  margin: 0 0 18px;
  font-family: var(--font-korean);
  font-size: 22px;
  font-weight: 800;
  color: var(--c-hero-bg);
}
.clinic-hours-doctors__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.clinic-hours-doctor-cards {
  display: none;
}
.clinic-hours-table--doctors {
  min-width: 780px;
  border: 0;
}
.clinic-hours-table--doctors thead th {
  border-top: 3px solid var(--c-primary);
  border-bottom: 3px solid var(--c-primary);
  background: #FFFFFF;
  font-size: 18px;
  color: var(--c-primary);
}
.clinic-hours-table--doctors tbody th,
.clinic-hours-table--doctors tbody td {
  background: #FFFFFF;
}
.clinic-hours-table--doctors tbody th[scope="rowgroup"] {
  width: 120px;
  background: #C8F0FF;
  font-size: 22px;
  color: var(--c-primary);
}
.clinic-hours-table--doctors tbody th[scope="row"] {
  width: 72px;
  background: #FFFFFF;
  color: var(--c-primary);
}
.clinic-hours-table--doctors .hours-open,
.clinic-hours-table--doctors .hours-close {
  flex-direction: column;
  min-width: 50px;
  min-height: 42px;
  padding: 4px 8px;
  background: transparent;
  font-family: var(--font-heading);
  font-size: 26px;
  line-height: 1;
}
.clinic-hours-table--doctors .hours-open {
  color: var(--c-primary);
}
.clinic-hours-table--doctors .hours-open--night {
  color: var(--c-primary);
  background: rgba(59, 158, 224, 0.1);
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(59, 158, 224, 0.18);
}
.clinic-hours-table--doctors .hours-close {
  color: #D71920;
}
.clinic-hours-table--doctors .hours-open--time {
  font-family: var(--font-korean);
  font-size: 18px;
}
.clinic-hours-table--doctors .hours-muted {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  color: #B6C2D0;
}
.clinic-hours-schedule__notes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 20px 24px;
  background: #F7FAFD;
  border-top: 1px solid #D8E2EC;
  font-family: var(--font-korean);
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-secondary);
}
.clinic-hours-schedule__notes p { margin: 0; }
.clinic-hours-schedule__notes strong {
  color: var(--c-hero-bg);
  font-weight: 800;
}
.clinic-hours-schedule__notes span { color: #D71920; }

@media (max-width: 640px) {
  .clinic-hours-schedule {
    width: 100%;
    max-width: 100%;
    margin-bottom: 48px;
  }
  .clinic-hours-schedule__card {
    width: 100%;
  }
  .clinic-hours-schedule__scroll {
    overflow-x: visible;
    max-width: 100%;
  }
  .clinic-hours-table {
    min-width: 0;
    width: 100%;
    table-layout: fixed;
  }
  .clinic-hours-table--simple th:nth-child(1),
  .clinic-hours-table--simple td:nth-child(1) {
    width: 22%;
  }
  .clinic-hours-table--simple th:nth-child(2),
  .clinic-hours-table--simple td:nth-child(2) {
    width: 34%;
  }
  .clinic-hours-table--simple th:nth-child(3),
  .clinic-hours-table--simple td:nth-child(3) {
    width: 44%;
  }
  .clinic-hours-table th,
  .clinic-hours-table td {
    padding: 12px 4px;
    font-size: 12px;
    line-height: 1.45;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
  .clinic-hours-table thead th {
    font-size: 12px;
  }
  .clinic-hours-table--simple tbody th[scope="row"] {
    font-size: 12px;
  }
  .hours-open,
  .hours-time-small {
    min-width: 0;
    min-height: 28px;
    padding: 4px 6px;
    border-radius: 4px;
    font-size: clamp(11px, 3.1vw, 12px);
    white-space: nowrap;
  }
  .hours-muted {
    display: inline-block;
    font-size: 12px;
    white-space: nowrap;
  }
  .hours-night {
    display: inline-grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 4px 6px;
    max-width: 100%;
    padding: 5px 6px;
    border-radius: 6px;
    font-size: 12px;
    line-height: 1.25;
    text-align: left;
    white-space: normal;
  }
  .hours-night strong {
    display: block;
  }
  .hours-night::before {
    width: 18px;
    height: 18px;
    font-size: 10px;
    flex: 0 0 auto;
  }
  .clinic-hours-doctors {
    padding: 22px 8px 24px;
  }
  .clinic-hours-doctors__title {
    font-size: 18px;
  }
  .clinic-hours-doctors__scroll {
    overflow-x: visible;
    margin: 0;
  }
  .clinic-hours-table--doctors {
    min-width: 0;
    width: 100%;
    table-layout: fixed;
  }
  .clinic-hours-table--doctors thead th {
    padding: 9px 2px;
    font-size: 12px;
  }
  .clinic-hours-table--doctors th,
  .clinic-hours-table--doctors td {
    padding: 8px 2px;
    font-size: 11px;
  }
  .clinic-hours-table--doctors tbody th[scope="rowgroup"] {
    width: 48px;
    padding: 8px 3px;
    font-size: 16px;
    line-height: 1.15;
  }
  .clinic-hours-table--doctors tbody th[scope="row"] {
    width: 31px;
    padding: 8px 2px;
    font-size: 12px;
  }
  .clinic-hours-table--doctors .hours-open,
  .clinic-hours-table--doctors .hours-close {
    min-width: 0;
    min-height: 30px;
    padding: 3px 1px;
    font-size: 16px;
  }
  .clinic-hours-table--doctors .hours-open--time {
    font-size: 10px;
    line-height: 1.15;
    white-space: normal;
  }
  .clinic-hours-table--doctors .hours-open small {
    display: block;
    font-size: 8px;
    line-height: 1.05;
  }
  .clinic-hours-schedule__notes {
    justify-content: flex-start;
    padding: 16px 14px;
    font-size: 13px;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .clinic-hours-schedule__eyebrow {
    margin-bottom: 8px;
  }
  .clinic-hours-schedule__title {
    font-size: 34px;
    margin-bottom: 22px;
  }
  .clinic-hours-schedule__card {
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(13,31,78,0.08);
  }
  .clinic-hours-table--simple {
    display: block;
  }
  .clinic-hours-table--simple thead {
    display: none;
  }
  .clinic-hours-table--simple tbody {
    display: grid;
    gap: 10px;
    padding: 14px;
    background: #FFFFFF;
  }
  .clinic-hours-table--simple tr {
    display: grid;
    grid-template-columns: minmax(82px, 0.9fr) minmax(0, 1.2fr);
    gap: 8px 10px;
    padding: 14px;
    border: 1px solid #D8E2EC;
    border-radius: 8px;
    background: #F8FBFE;
    text-align: left;
  }
  .clinic-hours-table--simple th,
  .clinic-hours-table--simple td {
    width: auto !important;
    padding: 0;
    border: 0;
    background: transparent !important;
    text-align: left;
    font-size: 14px;
    line-height: 1.45;
    overflow-wrap: normal;
  }
  .clinic-hours-table--simple tbody th[scope="row"] {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 800;
    color: var(--c-primary);
  }
  .clinic-hours-table--simple td:last-child {
    grid-column: 1 / -1;
    color: var(--c-secondary);
  }
  .clinic-hours-table--simple .hours-time-small,
  .clinic-hours-table--simple .hours-muted {
    width: 100%;
    min-height: 34px;
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 14px;
  }
  .clinic-hours-table--simple .hours-night {
    width: 100%;
    justify-content: flex-start;
    padding: 9px 10px;
    border-radius: 8px;
    font-size: 14px;
  }
  .clinic-hours-doctors {
    padding: 24px 14px;
  }
  .clinic-hours-doctors__title {
    margin-bottom: 14px;
    font-size: 22px;
    line-height: 1.3;
  }
  .clinic-hours-table--doctors {
    display: none;
  }
  .clinic-hours-doctor-cards {
    display: grid;
    gap: 12px;
  }
  .clinic-hours-doctor-card {
    padding: 16px;
    border: 1px solid #D8E2EC;
    border-radius: 8px;
    background: #FFFFFF;
    text-align: left;
  }
  .clinic-hours-doctor-card h4 {
    margin: 0 0 12px;
    font-family: var(--font-korean);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--c-primary);
  }
  .clinic-hours-doctor-card dl {
    display: grid;
    gap: 10px;
    margin: 0;
  }
  .clinic-hours-doctor-card dl div {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
  }
  .clinic-hours-doctor-card dt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    border-radius: 999px;
    background: rgba(59,158,224,0.1);
    color: var(--c-primary);
    font-size: 13px;
    font-weight: 800;
  }
  .clinic-hours-doctor-card dd {
    margin: 0;
    color: var(--c-hero-bg);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.55;
    word-break: keep-all;
  }
  .clinic-hours-doctor-card dd span {
    display: block;
    margin-top: 3px;
    color: #8391A4;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
  }
  .clinic-hours-schedule__notes {
    display: grid;
    gap: 8px;
    padding: 18px 16px;
    font-size: 14px;
  }
}

/* Mobile hours refinement */
@media (max-width: 640px) {
  .contact-cta-section {
    padding-right: 14px !important;
    padding-left: 14px !important;
  }

  .clinic-hours-schedule {
    margin-bottom: 44px;
  }

  .clinic-hours-schedule__title {
    font-size: 36px;
    line-height: 1.15;
  }

  .clinic-hours-schedule__card {
    border-color: #D5E2EF;
    box-shadow: 0 18px 36px rgba(13, 31, 78, 0.1);
  }

  .clinic-hours-table--simple tbody {
    gap: 12px;
    padding: 16px;
  }

  .clinic-hours-table--simple tr {
    grid-template-columns: minmax(112px, 0.9fr) minmax(132px, 1.1fr);
    gap: 9px 12px;
    padding: 16px;
    border-color: #D5E2EF;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FBFE 100%);
    box-shadow: 0 10px 22px rgba(13, 31, 78, 0.055);
  }

  .clinic-hours-table--simple tbody th[scope="row"] {
    align-self: center;
    font-size: 15px;
    line-height: 1.35;
  }

  .clinic-hours-table--simple td {
    align-self: center;
  }

  .clinic-hours-table--simple td:last-child {
    padding-top: 2px;
    color: #526274;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.55;
  }

  .clinic-hours-table--simple .hours-time-small,
  .clinic-hours-table--simple .hours-muted,
  .clinic-hours-table--simple .hours-night {
    min-height: 38px;
    border-radius: 7px;
    font-size: 15px;
    line-height: 1.25;
  }

  .clinic-hours-table--simple .hours-night {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 6px;
    padding: 9px 11px;
  }

  .clinic-hours-table--simple .hours-night strong {
    display: inline;
    white-space: nowrap;
  }

  .clinic-hours-doctors {
    padding: 26px 16px 24px;
  }

  .clinic-hours-doctor-cards {
    gap: 14px;
  }

  .clinic-hours-doctor-card {
    padding: 18px;
    border-color: #D5E2EF;
    box-shadow: 0 10px 22px rgba(13, 31, 78, 0.055);
  }

  .clinic-hours-doctor-card dl div {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .clinic-hours-doctor-card dd {
    font-size: 14px;
    line-height: 1.6;
  }

  .clinic-hours-schedule__notes {
    padding: 18px;
    background: #F8FBFE;
  }
}

/* ============================================================
   HOURS TABLE
   ============================================================ */
.hours-table {
  border: 1px solid var(--c-border);
  border-radius: var(--card-radius);
  overflow: hidden;
  margin-bottom: 28px;
}
.hours-header {
  background: var(--c-hero-bg);
  padding: 12px 20px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 20px;
  border-bottom: 1px solid var(--c-border);
}
.hours-row:last-child { border-bottom: none; }
.hours-row:nth-child(even) { background: var(--c-surface); }
.hours-day { font-family: var(--font-korean); font-size: 14px; font-weight: 500; color: var(--c-text-dark); }
.hours-time { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--c-primary); letter-spacing: 0.03em; }
.hours-time.open { color: var(--c-accent); }
.hours-badge {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-white);
  background: var(--c-accent);
  padding: 2px 8px;
  border-radius: 2px;
  margin-left: 8px;
}

/* ============================================================
   INFO CARDS
   ============================================================ */
.info-cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.info-card {
  display: flex;
  gap: 16px;
  padding: 16px 20px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--card-radius);
  transition: all var(--transition);
}
.info-card:hover {
  border-color: rgba(59,158,224,0.3);
  box-shadow: 0 4px 16px rgba(13,31,78,0.08);
}
.info-card__icon {
  width: 40px;
  height: 40px;
  background: rgba(59,158,224,0.1);
  border: 1.5px solid rgba(59,158,224,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-card__icon svg { width: 18px; height: 18px; }
.info-card__label {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 3px;
}
.info-card__text { font-family: var(--font-korean); font-size: 14px; color: var(--c-text-dark); line-height: 1.55; font-weight: 500; }
.info-card__sub { font-family: var(--font-body); font-size: 12px; color: var(--c-secondary); margin-top: 2px; }

/* ============================================================
   MAP & TRANSPORT
   ============================================================ */
.map-section { background: var(--c-surface); padding: 72px 40px 80px; position: relative; overflow: hidden; }
.map-section::before {
  content: '';
  position: absolute;
  top: -2px; left: 0; right: 0;
  height: 50px;
  background: var(--c-white);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}
.map-inner { max-width: var(--wide-size); margin: 0 auto; }
.map-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.map-placeholder {
  width: 100%;
  height: 320px;
  background: var(--c-hero-bg);
  border-radius: var(--card-radius);
  border: 1px solid rgba(59,158,224,0.2);
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(59,158,224,0.12) 1px, transparent 1px), linear-gradient(rgba(59,158,224,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(59,158,224,0.06) 1px, transparent 1px);
  background-size: 32px 32px, 40px 40px, 40px 40px;
  pointer-events: none;
}
.map-center-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; }
.map-pin-dot {
  width: 20px; height: 20px;
  background: var(--c-accent);
  border-radius: 50%;
  margin: 0 auto 8px;
  box-shadow: 0 0 0 6px rgba(59,158,224,0.2), 0 0 0 12px rgba(59,158,224,0.1);
}
.map-pin-label {
  font-family: var(--font-korean);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-white);
  background: rgba(13,31,78,0.85);
  padding: 4px 12px;
  border-radius: 2px;
}
.transport-grid { display: flex; flex-direction: column; gap: 16px; }
.transport-item {
  padding: 16px 20px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--card-radius);
  transition: all var(--transition);
}
.transport-item:hover { border-color: rgba(59,158,224,0.3); box-shadow: 0 4px 16px rgba(13,31,78,0.08); }
.transport-type {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 5px;
}
.transport-desc { font-family: var(--font-korean); font-size: 14px; color: var(--c-text-dark); line-height: 1.55; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--c-white); padding: 72px 40px 80px; }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--c-border); padding: 20px 0; }
.faq-item:first-of-type { border-top: 1px solid var(--c-border); }
.faq-q {
  font-family: var(--font-korean);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-hero-bg);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.faq-q::before {
  content: 'Q';
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: var(--c-accent);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  padding-top: 2px;
}
.faq-a {
  font-family: var(--font-korean);
  font-size: 15px;
  color: var(--c-secondary);
  line-height: 1.75;
  margin-top: 10px;
  padding-left: 26px;
}

/* ============================================================
   BADGE STRIP
   ============================================================ */
.badge-strip { background: var(--c-accent); padding: 18px 40px; }
.badge-strip-inner {
  max-width: var(--wide-size);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.badge-strip__text { font-family: var(--font-heading); font-size: 16px; font-weight: 700; letter-spacing: 0.05em; color: var(--c-white); }
.badge-strip__items { display: flex; gap: 20px; flex-wrap: wrap; }
.badge-strip__item { display: flex; align-items: center; gap: 8px; font-family: var(--font-korean); font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.9); }
.badge-strip__dot { width: 6px; height: 6px; background: rgba(255,255,255,0.7); border-radius: 50%; flex-shrink: 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--c-accent);
  color: var(--c-white);
  padding: 13px 32px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(59,158,224,0.2);
}
.btn-primary:hover {
  background: var(--c-accent-hover);
  box-shadow: 0 0 24px rgba(59,158,224,0.5), 0 4px 16px rgba(59,158,224,0.3);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--c-white);
  padding: 12px 30px;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  box-shadow: 0 0 12px rgba(59,158,224,0.25);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(135deg, #0C1D46 0%, #12366F 100%);
  border-top: 1px solid rgba(59,158,224,0.12);
  padding: 64px 40px 48px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(100,199,255,0.12) 1px, transparent 1px),
    linear-gradient(rgba(100,199,255,0.07) 1px, transparent 1px);
  background-size: 20px 20px, 88px 88px;
  pointer-events: none;
}
.footer-inner { max-width: var(--wide-size); margin: 0 auto; position: relative; z-index: 1; padding: 56px 40px 40px; }

/* Footer columns layout */
.footer-cols.wp-block-columns { gap: 40px !important; align-items: flex-start; margin-bottom: 0; }
.footer-col--brand { max-width: 220px; }

/* Logo */
.footer-logo { margin-bottom: 16px !important; }
.footer-logo img { width: 56px !important; height: 56px !important; object-fit: contain; }

/* Brand text */
.footer-brand-name { font-family: var(--font-korean) !important; font-size: 15px !important; font-weight: 700 !important; color: var(--c-white) !important; margin: 0 0 3px !important; }
.footer-brand-en { font-family: var(--font-heading) !important; font-size: 10px !important; font-weight: 600 !important; letter-spacing: 0.18em !important; text-transform: uppercase !important; color: var(--c-accent) !important; margin: 0 0 10px !important; }
.footer-tagline { font-family: var(--font-korean) !important; font-size: 12px !important; color: rgba(255,255,255,0.4) !important; line-height: 1.6 !important; margin: 0 !important; }

/* Column titles */
.footer-col-title { font-family: var(--font-heading) !important; font-size: 10px !important; font-weight: 700 !important; letter-spacing: 0.2em !important; text-transform: uppercase !important; color: var(--c-accent) !important; margin: 0 0 14px !important; }

/* Footer links */
.footer-links.wp-block-list { list-style: none !important; padding: 0 !important; margin: 0 !important; display: flex; flex-direction: column; gap: 7px; }
.footer-links li { padding: 0 !important; border: none !important; }
.footer-links li::before { display: none !important; }
.footer-links a { font-family: var(--font-korean) !important; font-size: 13px !important; color: rgba(255,255,255,0.5) !important; text-decoration: none !important; transition: color var(--transition) !important; }
.footer-links a:hover { color: var(--c-accent) !important; }

/* Contact col */
.footer-address { font-family: var(--font-korean) !important; font-size: 13px !important; color: rgba(255,255,255,0.7) !important; line-height: 1.75 !important; margin: 0 0 10px !important; }
.footer-phone { margin: 0 0 10px !important; }
.footer-phone a { font-family: var(--font-heading) !important; font-size: 16px !important; font-weight: 700 !important; color: var(--c-white) !important; text-decoration: none !important; letter-spacing: 0.04em; }
.footer-hours { font-family: var(--font-korean) !important; font-size: 12px !important; color: rgba(255,255,255,0.45) !important; line-height: 1.8 !important; margin: 0 0 16px !important; }
.footer-booking .wp-block-button__link { font-size: 13px !important; padding: 9px 20px !important; background: var(--c-accent) !important; color: #fff !important; border-radius: var(--card-radius) !important; font-family: var(--font-korean) !important; font-weight: 600 !important; }

/* Divider */
.footer-divider { margin: 32px 0 !important; border-color: rgba(255,255,255,0.08) !important; }

/* Bottom bar */
.footer-bottom.wp-block-group { padding: 0 !important; }
.footer-copy { font-family: var(--font-heading) !important; font-size: 11px !important; font-weight: 500 !important; color: rgba(255,255,255,0.25) !important; letter-spacing: 0.06em !important; margin: 0 !important; }
.footer-legal { font-family: var(--font-korean) !important; font-size: 11px !important; color: rgba(255,255,255,0.25) !important; margin: 0 !important; }

.duri-footer {
  background-color: #0D1522;
  color: #FFFFFF;
  border-top: 1px solid rgba(59,158,224,0.12);
}
.duri-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 40px 36px;
}
.duri-footer-cols {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 220px;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
}
.duri-footer-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  margin-bottom: 14px;
}
.duri-footer-brand-name {
  font-family: var(--font-korean);
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 3px;
}
.duri-footer-brand-en {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3B9EE0;
  margin: 0 0 10px;
}
.duri-footer-tagline {
  font-family: var(--font-korean);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  margin: 0;
}
.duri-footer-col-title {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3B9EE0;
  margin: 0 0 14px;
}
.duri-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.duri-footer-links a {
  font-family: var(--font-korean);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.duri-footer-links a:hover { color: #3B9EE0; }
.duri-footer-address {
  font-family: var(--font-korean);
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin: 0 0 8px;
}
.duri-footer-address span {
  color: rgba(255,255,255,0.4);
  font-size: 12px;
}
.duri-footer-phone { margin: 0 0 8px; }
.duri-footer-phone a {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  letter-spacing: 0.04em;
}
.duri-footer-hours {
  font-family: var(--font-korean);
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin: 0 0 16px;
}
.duri-footer-btn {
  display: inline-block;
  background: #3B9EE0;
  color: #FFFFFF;
  font-family: var(--font-korean);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 4px;
}
.duri-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.duri-footer-bottom p {
  font-family: var(--font-korean);
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  margin: 0;
}

/* ============================================================
   SERVICE DETAIL PAGES
   ============================================================ */
.service-detail { background: #fff; }
.service-detail-hero {
  position: relative;
  padding: 180px 40px 90px;
  background: var(--c-hero-bg);
  overflow: hidden;
}
.service-detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(59,158,224,0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.service-detail-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--wide-size);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.74fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.service-detail-hero__eyebrow,
.service-detail-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--c-accent);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.service-detail-hero__eyebrow::before,
.service-detail-section__eyebrow::before {
  content: '';
  width: 34px;
  height: 2px;
  background: currentColor;
}
.service-detail-hero h1 {
  margin: 18px 0 24px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 800;
  line-height: 0.98;
}
.service-detail-hero p {
  max-width: 640px;
  color: rgba(255,255,255,0.72);
  font-family: var(--font-korean);
  font-size: 18px;
  line-height: 1.8;
}
.service-detail-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.service-detail-hero__tags span {
  padding: 8px 13px;
  border: 1px solid rgba(59,158,224,0.35);
  color: var(--c-accent);
  background: rgba(59,158,224,0.08);
  font-family: var(--font-korean);
  font-size: 13px;
  font-weight: 700;
}
.service-detail-hero__photo,
.service-detail-section__photo {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  box-shadow: 0 26px 60px rgba(0,0,0,0.22);
}
.service-detail-hero__photo img,
.service-detail-section__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.service-detail-section {
  padding: 96px 40px;
}
.service-detail-section--soft {
  background: var(--c-surface);
}
.service-detail-section--airflow {
  background: #fff;
}
.service-detail-section__inner {
  max-width: var(--wide-size);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.service-detail-section__content h2 {
  margin: 14px 0 20px;
  color: var(--c-hero-bg);
  font-family: var(--font-heading);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
}
.service-detail-section__content p {
  color: #536174;
  font-family: var(--font-korean);
  font-size: 16px;
  line-height: 1.85;
}
.service-detail-section--airflow .service-detail-section__inner {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
}
.service-detail-section__photo--contain {
  background: linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
  border-color: var(--c-border);
  box-shadow: 0 24px 52px rgba(13, 31, 78, 0.12);
}
.service-detail-section__photo--contain img {
  object-fit: contain;
  padding: clamp(24px, 4vw, 48px);
  background: transparent;
}
.service-detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  list-style: none;
  padding: 0;
}
.service-detail-list li {
  padding: 16px;
  border: 1px solid var(--c-border);
  background: #fff;
  color: var(--c-hero-bg);
  font-family: var(--font-korean);
  font-size: 14px;
  font-weight: 700;
}
.service-detail-list--airflow li {
  background: #f8fbff;
}
.service-detail-cta {
  padding: 72px 40px;
  text-align: center;
  background: #0a1427;
}
.service-detail-cta h2 {
  margin: 0 0 14px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
}
.service-detail-cta p {
  margin: 0 auto 28px;
  max-width: 560px;
  color: rgba(255,255,255,0.64);
  font-family: var(--font-korean);
}
.service-detail-cta__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.service-detail-cta__buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-family: var(--font-korean);
  font-weight: 800;
}
.service-detail-cta__primary {
  background: #03C75A;
  color: #fff;
}
.service-detail-cta__secondary {
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
}

/* ============================================================
   CONTACT MAIN PAGE
   ============================================================ */
.contact-main { background: var(--c-white); padding: 80px 40px; }
.contact-main-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; max-width: var(--wide-size); margin: 0 auto; align-items: start; }
.contact-label { font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--c-accent); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.contact-label::after { content: ''; display: block; flex: 1; height: 1px; background: var(--c-border); }
.contact-info-panel .contact-heading { font-family: var(--font-heading); font-size: 48px; font-weight: 800; color: var(--c-hero-bg); letter-spacing: -0.02em; line-height: 1.0; margin-bottom: 4px; }
.contact-info-panel .contact-heading-ko { font-family: var(--font-korean); font-size: 24px; font-weight: 700; color: var(--c-primary); margin-bottom: 24px; }
.contact-info-panel .contact-body { font-family: var(--font-korean); font-size: 15px; color: var(--c-secondary); line-height: 1.75; margin-bottom: 32px; }

/* ============================================================
   HERO SLIDESHOW
   ============================================================ */
.hero-slideshow {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0D1F4E 0%, #123A78 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slideshow__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
.hero-slideshow__slide.active { opacity: 1; }
.hero-slideshow__slide:nth-child(1) { background-image: url('/wp-content/themes/yonsei-duri/assets/duri-hero-waiting.jpg'); }
.hero-slideshow__slide:nth-child(2) { background-image: url('/wp-content/themes/yonsei-duri/assets/duri-hero-clinic.jpg'); background-position: center top; }
.hero-slideshow__slide:nth-child(3) { background-image: url('/wp-content/themes/yonsei-duri/assets/duri-hero-reception.jpg'); }
.hero-slideshow__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,31,78,0.88) 0%,
    rgba(18,58,120,0.68) 50%,
    rgba(100,199,255,0.18) 100%
  );
  z-index: 1;
}
.hero-slideshow__dots {
  position: absolute;
  inset: 0;
  display: none;
  background: none;
  z-index: 1;
  pointer-events: none;
}
.hero-slideshow__scan {
  position: absolute;
  inset: 0;
  display: none;
  background: none;
  z-index: 1;
  pointer-events: none;
}
.hero-slideshow::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--c-white);
  clip-path: polygon(0 100%, 100% 40%, 100% 100%);
  z-index: 4;
}
.hero-slideshow__content {
  position: relative;
  z-index: 3;
  padding: 0 80px;
  max-width: var(--wide-size);
  margin: 0 auto;
  width: 100%;
}
.hero-slideshow__indicators {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
  align-items: center;
}
.hero-slideshow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.hero-slideshow__dot.active {
  background: var(--c-accent);
  width: 24px;
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(59,158,224,0.6);
}
.hero-slideshow__scroll {
  position: absolute;
  bottom: 115px;
  right: 60px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-slideshow__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero-slideshow__scroll-text {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}

/* ============================================================
   HERO SPLIT LAYOUT
   ============================================================ */
.hero-split {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  padding-top: 140px;
}
.hero-split__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 0 100px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-split__eyebrow {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.hero-split__eyebrow span {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--c-accent);
  flex-shrink: 0;
}
.hero-split__heading {
  font-family: var(--font-heading);
  font-size: clamp(56px, 7vw, 108px);
  font-weight: 800;
  line-height: 1.0;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-split__sub {
  font-family: var(--font-korean);
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 28px;
}
.hero-split__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.hero-split__badges span {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-accent);
  background: rgba(59,158,224,0.12);
  border: 1px solid rgba(59,158,224,0.3);
  padding: 5px 14px;
  border-radius: 2px;
  white-space: nowrap;
}
.hero-split__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-split__btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 15px 36px;
  border-radius: 4px;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.hero-split__btn--naver {
  background: #03C75A;
  color: #fff;
  box-shadow: 0 4px 24px rgba(3,199,90,0.4);
}
.hero-split__btn--naver:hover {
  background: #02b350;
  box-shadow: 0 0 32px rgba(3,199,90,0.6);
  transform: translateY(-2px);
}
.hero-split__btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
}
.hero-split__btn--ghost:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
}
.hero-split__photo {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0;
  animation: fadeInUp 0.9s ease 0.4s both;
}
.hero-split__photo img {
  width: 100%;
  max-width: 560px;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(-20px 0 60px rgba(13,31,78,0.6));
  display: block;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-split__photo { display: none; }
  .hero-split__text { padding: 40px 0 80px; }
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes heroZoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.07); }
}
@keyframes countPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.88; }
}
@keyframes slideProgress {
  from { width: 25%; }
  to   { width: 90%; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 0.8; transform: scaleY(1.1); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ============================================================
   MOBILE TOGGLE BUTTON
   ============================================================ */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  position: relative;
  z-index: 101;
  flex-shrink: 0;
}
.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-toggle.is-active .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active .nav-toggle__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-active .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-cta--mobile { display: none; }

/* ============================================================
   FLOATING QUICK MENU
   ============================================================ */
.duri-floating {
  position: fixed;
  right: 52px;
  top: 66%;
  z-index: 90;
  transform: translateY(-50%);
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.14);
  background: #fff;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.12);
}
.duri-floating a,
.duri-floating button {
  width: 72px;
  min-height: 66px;
  border: 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 0;
  background: #fff;
  color: #111827;
  box-shadow: none;
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 9px 7px;
  text-align: center;
  font-family: var(--font-korean);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.duri-floating a:hover,
.duri-floating button:hover {
  background: #111827;
  color: #fff;
}
.duri-floating__mark {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  margin: 0 auto 1px;
  border-radius: 3px;
  border: 1px solid currentColor;
  background: transparent;
  color: currentColor;
  font-size: 14px;
  line-height: 1;
}
.duri-floating__svg {
  display: block;
  width: 22px;
  height: 22px;
  margin-bottom: 1px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.duri-floating button {
  background: #111827;
  color: #fff;
  border-bottom: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .nav-bar {
    height: 96px;
    padding: 0 18px;
    overflow: visible;
  }
  .nav-logo {
    gap: 8px;
    min-width: 0;
    max-width: calc(100vw - 78px);
  }
  .nav-logo img { height: 48px; }
  .nav-brand-text { width: 142px; }
  .nav-brand-ko { font-size: 19px; }
  .nav-brand-en {
    font-size: 8px;
    letter-spacing: 0.09em;
  }
  .nav-toggle {
    display: flex;
    z-index: 10001;
  }
  .nav-cta:not(.nav-cta--mobile) { display: none; }
  nav.nav-links {
    display: flex !important;
    flex: unset;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    position: fixed;
    top: 96px;
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    width: 100vw;
    max-width: 100vw;
    min-height: calc(100dvh - 96px);
    background: var(--c-hero-bg);
    padding: 28px 24px 110px;
    gap: 0;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease, visibility 0.3s;
    z-index: 10000;
    overflow-y: auto;
    overflow-x: hidden;
    border-top: 1px solid rgba(59,158,224,0.15);
  }

  body.admin-bar nav.nav-links {
    top: calc(var(--wp-admin--admin-bar--height, 46px) + 96px);
    min-height: calc(100dvh - var(--wp-admin--admin-bar--height, 46px) - 96px);
  }

  nav.nav-links.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  html.duri-menu-open,
  body.duri-menu-open {
    overflow: hidden;
  }

  nav.nav-links a {
    font-size: 18px;
    font-weight: 600;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
  }
  .nav-item {
    width: 100%;
    display: block;
    height: auto;
  }
  .nav-item > a {
    display: flex;
    align-items: center;
    min-height: 54px;
  }
  .nav-submenu {
    position: static;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 4px 0 18px;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .nav-item:hover .nav-submenu,
  .nav-item:focus-within .nav-submenu {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-submenu::before { display: none; }
  .nav-submenu a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 8px;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 4px;
    background: rgba(255,255,255,0.035);
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.25;
    text-align: center;
    color: rgba(255,255,255,0.72) !important;
  }
  nav.nav-links > a:last-child { border-bottom: none; }
  nav.nav-links a:hover { color: var(--c-accent); }

  .nav-cta--mobile {
    display: inline-flex;
    margin-top: 24px;
    background: var(--c-accent);
    color: var(--c-white);
    justify-content: center;
    padding: 14px 24px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: none !important;
  }

  .hero__content { padding: 6rem 24px 5rem; }
  .hero__heading { font-size: 52px; }
  .hero-slideshow { min-height: 100svh; }
  .hero-slideshow__content { padding: 96px 24px 120px; }
  .hero-slideshow__scroll { display: none; }
  .hero-split {
    min-height: auto;
    padding-top: 0;
  }
  .hero-split__text {
    padding: 56px 0 78px;
  }
  .hero-split__eyebrow {
    font-size: 10px;
    letter-spacing: 0.22em;
    margin-bottom: 18px;
  }
  .hero-split__heading {
    font-size: clamp(46px, 14vw, 58px);
    line-height: 1.04;
    margin-bottom: 18px;
  }
  .hero-split__sub {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 22px;
  }
  .hero-split__badges {
    justify-content: center;
    margin-bottom: 28px;
  }
  .hero-split__actions {
    width: 100%;
    justify-content: center;
    gap: 10px;
  }
  .hero-split__btn {
    justify-content: center;
    padding: 13px 18px;
    min-width: min(100%, 280px);
  }
  .stats-section {
    padding: 28px 14px 30px;
  }
  .stats-section::before {
    height: 22px;
  }
  .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }
  .stat-item {
    padding: 18px 4px 14px;
    border-right: 1px solid rgba(59,158,224,0.12);
    border-bottom: 0;
    opacity: 1 !important;
    transform: none !important;
  }
  .stat-number {
    font-size: clamp(26px, 8vw, 34px);
  }
  .stat-accent {
    font-size: 16px;
  }
  .stat-label-en {
    display: none;
  }
  .stat-label-ko {
    font-size: 10px;
    line-height: 1.35;
    margin-top: 4px;
    word-break: keep-all;
  }
  .cards-grid { grid-template-columns: 1fr; }
  .doctors-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .tech-section { padding: 56px 0 64px; }
  .tech-text-col h2 {
    font-size: clamp(34px, 11vw, 40px) !important;
    line-height: 1.06 !important;
  }
  .tech-text-col p {
    font-size: 15px !important;
    line-height: 1.75 !important;
  }
  .tech-text-col .wp-block-button__link {
    width: auto;
    max-width: 100%;
    padding: 13px 24px !important;
    font-size: 15px !important;
  }
  .tech-heading { font-size: 36px; }
  .tech-heading-ko { font-size: 20px; }
  .tech-body { max-width: none; }
  .tech-img { height: 240px; }
  .tech-equipment-list {
    gap: 7px;
  }
  .tech-equipment-tab {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 12px;
  }
  .tech-equipment-preview {
    min-height: 0;
  }
  .tech-equipment-preview__img {
    height: clamp(260px, 70vw, 420px) !important;
    max-height: 420px;
    padding: 12px;
  }
  .tech-equipment-preview__caption {
    margin: 0 12px 12px;
    padding: 12px;
  }
  .tech-equipment-preview__caption strong {
    font-size: 17px;
  }
  .tech-equipment-preview__caption span {
    font-size: 12px;
  }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-main-inner { grid-template-columns: 1fr; }
  .map-layout { grid-template-columns: 1fr; }
  .service-detail-hero {
    padding: 130px 24px 56px;
  }
  .service-detail-hero__inner,
  .service-detail-section__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .service-detail-section--airflow .service-detail-section__inner {
    grid-template-columns: 1fr;
  }
  .service-detail-hero h1 {
    font-size: clamp(44px, 14vw, 58px);
  }
  .service-detail--surgery .service-detail-hero h1 {
    max-width: 360px;
    font-size: clamp(54px, 15vw, 64px);
    line-height: 1.06;
    word-break: keep-all;
  }
  .service-detail-hero p,
  .service-detail-section__content p {
    font-size: 15px;
  }
  .service-detail-section {
    padding: 56px 24px;
  }
  .service-detail-list {
    grid-template-columns: 1fr;
  }
  .service-detail-section__photo--contain img {
    padding: 24px;
  }
  .service-detail-cta {
    padding: 56px 24px;
  }
  .service-detail-cta__buttons a {
    width: 100%;
  }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .duri-footer-inner { padding: 40px 20px 28px; }
  .duri-footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
  .duri-footer-brand { grid-column: 1 / -1; }
  .duri-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .wide-width { padding-left: 24px; padding-right: 24px; }
  .doctor-profile { grid-template-columns: 1fr; gap: 32px; }
  .doctor-profile:nth-child(even) { direction: ltr; }
  .badge-strip-inner { flex-direction: column; gap: 12px; }

  .duri-floating {
    left: 12px;
    right: 12px;
    bottom: max(10px, env(safe-area-inset-bottom));
    top: auto;
    transform: none;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: auto;
    max-width: 420px;
    margin: 0 auto;
    z-index: 10050;
    border-color: rgba(17, 24, 39, 0.16);
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.16);
  }
  .duri-floating a,
  .duri-floating button {
    width: auto;
    min-width: 0;
    min-height: 56px;
    height: 56px;
    padding: 0 5px;
    border-bottom: 0;
    border-right: 1px solid rgba(17, 24, 39, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    font-size: 0;
    line-height: 1;
  }
  .duri-floating a > span:not(.duri-floating__mark) { display: none; }
  .duri-floating button {
    font-size: 10px;
    border-right: 0;
  }
  .duri-floating__mark {
    width: 20px;
    height: 20px;
    margin-bottom: 0;
    font-size: 13px;
  }
  .duri-floating__svg {
    width: 20px;
    height: 20px;
    margin-bottom: 0;
  }
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 480px) {
  .duri-footer-cols { grid-template-columns: 1fr; }
}

/* ============================================================
   ACCESSIBILITY — FOCUS & MOTION
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-slideshow__slide { animation: none; }
  .fade-up { opacity: 1; transform: none; }
}

/* ============================================================
   INNER PAGE STYLES
   ============================================================ */
.page-hero {
  padding-top: 160px;
  padding-bottom: 80px;
  text-align: center;
}

/* Services page */
.wp-block-column .wp-block-list {
  padding-left: 0;
  list-style: none;
}
.wp-block-column .wp-block-list li {
  padding: 6px 0;
  border-bottom: 1px solid #F0F3F7;
  font-family: 'Noto Sans KR', sans-serif;
}
.wp-block-column .wp-block-list li::before {
  content: '— ';
  color: var(--c-accent);
  font-weight: 700;
}

/* Contact page map */
.wp-block-group iframe {
  display: block;
}

.surgery-hero-title span {
  display: block;
  white-space: nowrap;
}

.contact-hero-address {
  word-break: keep-all;
}

.contact-hero-address span {
  display: block;
}

.about-intro-section {
  padding-left: clamp(40px, 5vw, 72px) !important;
  padding-right: clamp(40px, 5vw, 72px) !important;
}
.about-intro-section > .wp-block-columns {
  max-width: 1280px;
  margin-left: auto !important;
  margin-right: auto !important;
}
.about-intro-section p {
  word-break: keep-all;
  overflow-wrap: break-word;
}

.duri-contact-map {
  position: relative;
  width: 100%;
  height: min(620px, 62vh);
  min-height: 420px;
  overflow: hidden;
  border: 1px solid #E8EDF3;
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(59,158,224,0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(59,158,224,0.12) 1px, transparent 1px),
    #F4F8FC;
  background-size: 56px 56px;
}

.duri-contact-map iframe {
  position: relative;
  z-index: 1;
}

.duri-contact-map__label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  max-width: calc(100% - 40px);
  padding: 14px 16px;
  border: 1px solid rgba(13,31,78,0.1);
  border-radius: 4px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 14px 32px rgba(13,31,78,0.14);
  font-family: var(--font-korean);
}

.duri-contact-map__label strong,
.duri-contact-map__label span {
  display: block;
}

.duri-contact-map__label strong {
  color: var(--c-hero-bg);
  font-size: 16px;
}

.duri-contact-map__label span {
  margin-top: 4px;
  color: var(--c-secondary);
  font-size: 13px;
  line-height: 1.55;
  word-break: keep-all;
}

@media (max-width: 768px) {
  .page-hero { padding-top: 96px; padding-bottom: 48px; }
  .wp-block-columns { flex-direction: column !important; }
  .wp-block-column[style*="flex-basis:300px"] { flex-basis: auto !important; }
  .wp-block-column[style*="flex-basis:380px"] { flex-basis: auto !important; }
  .wp-block-column[style*="flex-basis:40%"] { flex-basis: auto !important; }
  .about-intro-section {
    padding: 64px 30px !important;
  }
  .about-intro-section > .wp-block-columns {
    gap: 32px !important;
  }
  .about-intro-section h2 {
    font-size: clamp(34px, 10vw, 42px) !important;
  }
  .about-intro-section p {
    font-size: 15px !important;
    line-height: 1.8 !important;
  }
  .duri-contact-map {
    height: 360px;
    min-height: 360px;
  }
  .duri-contact-map__label {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
  }
}

@media (max-width: 390px) {
  .about-intro-section {
    padding-left: 26px !important;
    padding-right: 26px !important;
  }
}

/* ============================================================
   AOS-STYLE SCROLL ANIMATIONS
   ============================================================ */
:root { --aos-easing: cubic-bezier(0.22, 1, 0.36, 1); --aos-dur: 0.72s; --aos-dist: 40px; }

[data-aos] {
  transition-property: opacity, transform;
  transition-duration: var(--aos-dur);
  transition-timing-function: var(--aos-easing);
  will-change: opacity, transform;
}

/* fade-up (default) */
[data-aos="fade-up"],
.reveal,
.fade-up {
  opacity: 0;
  transform: translateY(var(--aos-dist));
}
[data-aos="fade-up"].aos-animate,
.reveal.is-visible,
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* fade-down */
[data-aos="fade-down"] { opacity: 0; transform: translateY(calc(var(--aos-dist) * -1)); }
[data-aos="fade-down"].aos-animate { opacity: 1; transform: translateY(0); }

/* fade-right */
[data-aos="fade-right"] { opacity: 0; transform: translateX(calc(var(--aos-dist) * -1)); }
[data-aos="fade-right"].aos-animate { opacity: 1; transform: translateX(0); }

/* fade-left */
[data-aos="fade-left"] { opacity: 0; transform: translateX(var(--aos-dist)); }
[data-aos="fade-left"].aos-animate { opacity: 1; transform: translateX(0); }

/* fade-in */
[data-aos="fade-in"] { opacity: 0; transform: none; }
[data-aos="fade-in"].aos-animate { opacity: 1; }

/* zoom-in */
[data-aos="zoom-in"] { opacity: 0; transform: scale(0.88); }
[data-aos="zoom-in"].aos-animate { opacity: 1; transform: scale(1); }

/* zoom-up */
[data-aos="zoom-up"] { opacity: 0; transform: scale(0.92) translateY(24px); }
[data-aos="zoom-up"].aos-animate { opacity: 1; transform: scale(1) translateY(0); }

/* stagger via data-aos-delay */
[data-aos-delay="120ms"] { transition-delay: 0.12s; }
[data-aos-delay="240ms"] { transition-delay: 0.24s; }
[data-aos-delay="360ms"] { transition-delay: 0.36s; }
[data-aos-delay="480ms"] { transition-delay: 0.48s; }
[data-aos-delay="600ms"] { transition-delay: 0.60s; }

/* reveal-group children */
.reveal-group > *:nth-child(1) { transition-delay: 0s; }
.reveal-group > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-group > *:nth-child(3) { transition-delay: 0.24s; }
.reveal-group > *:nth-child(4) { transition-delay: 0.36s; }
.reveal-group > *:nth-child(5) { transition-delay: 0.48s; }
.reveal-group > *:nth-child(6) { transition-delay: 0.60s; }

/* image hover zoom */
.img-hover { overflow: hidden; border-radius: 4px; }
.img-hover img {
  transition: transform 0.6s var(--aos-easing);
  will-change: transform;
}
.img-hover:hover img { transform: scale(1.06); }

/* service card hover */
.service-card {
  transition: transform 0.35s var(--aos-easing), box-shadow 0.35s var(--aos-easing);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(13,31,78,0.12);
}

/* Hero slideshow Ken Burns per-slide */
.hero-slideshow__slide.active .hero-slideshow__bg {
  animation: kenBurns 7s ease-out forwards;
}
@keyframes kenBurns {
  from { transform: scale(1.0) translate(0, 0); }
  to   { transform: scale(1.08) translate(-1%, 1%); }
}

/* ============================================================
   SERVICES SECTION — redesigned cards
   ============================================================ */
.svc-section {
  background: #FFFFFF;
  padding: 88px 0;
  width: 100%;
  box-sizing: border-box;
}
.svc-header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 40px;
}
.svc-header__label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 14px;
  position: relative;
}
.svc-header__label::before,
.svc-header__label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--c-accent);
  opacity: 0.4;
}
.svc-header__label::before { right: calc(100% + 14px); }
.svc-header__label::after  { left:  calc(100% + 14px); }
.svc-header__title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  color: var(--c-hero-bg);
  letter-spacing: -0.02em;
  line-height: 1.0;
  margin-bottom: 16px;
}
.svc-header__sub {
  font-family: var(--font-korean);
  font-size: 15px;
  color: var(--c-secondary);
  line-height: 1.75;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
  border-top: 1px solid var(--c-border);
  border-left: 1px solid var(--c-border);
}
.svc-grid--five {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 0;
}
.svc-grid--five .svc-card {
  grid-column: span 2;
  border: 1px solid var(--c-border);
  margin: 0 -1px -1px 0;
}
.svc-grid--five .svc-card:nth-child(4) {
  grid-column: 2 / span 2;
}
.svc-grid--five .svc-card:nth-child(5) {
  grid-column: 4 / span 2;
}
.svc-card {
  position: relative;
  padding: 44px 40px 40px;
  border-right: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  background: #FFFFFF;
  overflow: hidden;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.svc-card:hover {
  background: #F7FAFD;
  box-shadow: inset 0 0 0 1px rgba(59,158,224,0.25);
  z-index: 1;
}
.svc-card__bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-accent), #7dd4ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.svc-card:hover .svc-card__bar { transform: scaleX(1); }
.svc-card__num {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(59,158,224,0.4);
  margin-bottom: 20px;
}
.svc-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}
.svc-card__icon svg { width: 48px; height: 48px; }
.svc-card__tag {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 8px;
}
.svc-card__title {
  font-family: var(--font-korean);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-hero-bg);
  margin-bottom: 12px;
  line-height: 1.3;
}
.svc-card__desc {
  font-family: var(--font-korean);
  font-size: 14px;
  color: var(--c-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
  flex: 1;
}
.svc-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
}
.svc-card__features span {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--c-accent);
  background: rgba(59,158,224,0.08);
  border: 1px solid rgba(59,158,224,0.18);
  padding: 3px 10px;
  border-radius: 2px;
  white-space: nowrap;
}
.svc-card__features--compact {
  gap: 4px;
}
.svc-card__features--compact span {
  padding-inline: 7px;
  font-size: 10px;
  letter-spacing: 0.04em;
}
.svc-card__link {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-hero-bg);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.22s ease, gap 0.22s ease;
  margin-top: auto;
}
.svc-card__link span { transition: transform 0.22s ease; }
.svc-card:hover .svc-card__link { color: var(--c-accent); gap: 10px; }
.svc-card:hover .svc-card__link span { transform: translateX(4px); }

@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid--five { grid-template-columns: repeat(2, 1fr); }
  .svc-grid--five .svc-card,
  .svc-grid--five .svc-card:nth-child(4),
  .svc-grid--five .svc-card:nth-child(5) {
    grid-column: auto;
  }
}
@media (max-width: 640px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-grid--five { grid-template-columns: 1fr; }
  .svc-card { padding: 32px 24px; }
  .svc-card__features--compact {
    gap: 3px;
  }
  .svc-card__features--compact span {
    padding-inline: 3px;
    letter-spacing: 0.02em;
  }
  .svc-header__label::before,
  .svc-header__label::after { display: none; }
}

/* ============================================================
   BEFORE & AFTER SLIDER
   ============================================================ */
.ba-section {
  display: none !important;
  padding: 88px 0 96px;
  background: #F0F3F7;
}
.ba-section__header {
  text-align: center;
  margin-bottom: 44px;
}
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 40px;
}
.ba-slider {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  aspect-ratio: 16/10;
  min-height: 320px;
  box-shadow: 0 12px 40px rgba(13,31,78,0.12);
}
.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.ba-after {
  clip-path: inset(0 0 0 50%);
  transition: clip-path 0.02s linear;
}
.ba-before { background-color: #C5D0DD; }
.ba-after  { background-color: #0D1F4E; }
.ba-before--placeholder { background: linear-gradient(135deg, #C5D0DD 0%, #9BAAB8 100%); }
.ba-after--placeholder  { background: linear-gradient(135deg, #0D1F4E 0%, #1B3A6B 100%); }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 4px;
  background: #FFFFFF;
  transform: translateX(-50%);
  cursor: col-resize;
  z-index: 10;
}
.ba-handle::before,
.ba-handle::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 40px;
  background: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  top: 50%;
  margin-top: -20px;
}
.ba-handle::after {
  background: #FFFFFF url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%230D1F4E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'/%3E%3Cpolyline points='9 18 15 12 9 6' transform='translate(6,0)'/%3E%3C/svg%3E") center/18px no-repeat;
  width: 40px; height: 40px;
}
.ba-handle::before { display: none; }
.ba-label {
  position: absolute;
  top: 16px;
  padding: 4px 12px;
  background: rgba(13,31,78,0.75);
  color: #FFFFFF;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  z-index: 5;
}
.ba-label--before { left: 16px; }
.ba-label--after  { right: 16px; }
.ba-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 24px 16px;
  background: linear-gradient(to top, rgba(13,31,78,0.85), transparent);
  color: #FFFFFF;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 14px;
  font-weight: 500;
  z-index: 5;
}

/* ============================================================
   MARQUEE STRIP (장비/로고 무한 루프)
   ============================================================ */
.marquee-section {
  background:
    linear-gradient(rgba(100,199,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100,199,255,0.06) 1px, transparent 1px),
    linear-gradient(135deg, #0D1F4E 0%, #123A78 100%);
  background-size: 92px 92px, 92px 92px, auto;
  padding: 56px 0;
  overflow: hidden;
  border-top: 1px solid rgba(59,158,224,0.1);
  border-bottom: 1px solid rgba(59,158,224,0.1);
}
.marquee-section__label {
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.marquee-wrap {
  overflow: hidden;
  width: 100%;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  will-change: transform;
}
.marquee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 56px;
  border-right: 1px solid rgba(59,158,224,0.15);
  min-width: 200px;
}
.marquee-item__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.marquee-item__sub {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 12px;
  color: rgba(59,158,224,0.8);
  margin-top: 4px;
  white-space: nowrap;
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  [data-aos], .reveal, .fade-up { opacity: 1 !important; transform: none !important; transition: none !important; }
  .img-hover img { transition: none; }
  .marquee-track { animation: none; }
}

/* ============================================================
   FULLBLEED PHOTO SECTIONS
   ============================================================ */
.fullbleed-photo-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.fullbleed-photo-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.02);
  transition: transform 8s ease;
}
.fullbleed-photo-section__bg--clinic {
  background-image: url('/wp-content/themes/yonsei-duri/assets/duri-hero-clinic.jpg');
}
.fullbleed-photo-section__bg--treatment {
  background-image: url('/wp-content/themes/yonsei-duri/assets/duri-treatment-room.jpg');
}
.fullbleed-photo-section__overlay {
  position: absolute;
  inset: 0;
  /* Keep texture off photo sections so clinic images stay crisp. */
  background: linear-gradient(to right, rgba(13,31,78,0.76) 0%, rgba(18,58,120,0.48) 60%, rgba(100,199,255,0.14) 100%);
}
.fullbleed-photo-section--right .fullbleed-photo-section__overlay {
  background: linear-gradient(to left, rgba(13,31,78,0.76) 0%, rgba(18,58,120,0.48) 60%, rgba(100,199,255,0.14) 100%);
}
.fullbleed-photo-section__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 84px 80px;
  width: 100%;
}
.fullbleed-photo-section__content--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
}
.fullbleed-photo-section__content--right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 1024px) {
  .ba-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .fullbleed-photo-section { min-height: 480px; }
  .fullbleed-photo-section__bg { background-attachment: scroll; }
  .fullbleed-photo-section__content { padding: 80px 30px; }
  .fullbleed-photo-section__content--right { text-align: left; align-items: flex-start; }
  .fullbleed-photo-section__overlay,
  .fullbleed-photo-section--right .fullbleed-photo-section__overlay {
    background: rgba(18,58,120,0.68);
  }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .ba-grid { grid-template-columns: 1fr; }
}

@media (max-width: 390px) {
  .fullbleed-photo-section__content {
    padding-left: 26px;
    padding-right: 26px;
  }
}

/* ============================================================
   EQUIPMENT PAGE
   ============================================================ */
.equipment-hero {
  padding: 220px 40px 88px;
  background: linear-gradient(135deg, #0D1F4E 0%, #123A78 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.equipment-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(100,199,255,0.14) 1px, transparent 1px),
    linear-gradient(rgba(100,199,255,0.08) 1px, transparent 1px);
  background-size: 28px 28px, 88px 88px;
  pointer-events: none;
}
.equipment-hero__inner {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.equipment-eyebrow,
.equipment-card__label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.equipment-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  margin: 18px 0;
}
.equipment-hero p:last-child {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255,255,255,0.72);
  font-family: var(--font-korean);
  font-size: 16px;
  line-height: 1.8;
}
.equipment-section {
  padding: 88px 40px 96px;
  background: #F0F3F7;
}
.equipment-grid {
  width: min(1320px, calc(100vw - 80px));
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}
.equipment-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #FFFFFF;
  border: 1px solid var(--c-border);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(13,31,78,0.08);
}
.equipment-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  max-height: 420px;
  margin: 0;
  background: #D1D9E6;
  overflow: hidden;
}
.equipment-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.equipment-card__media--contain {
  background: #FFFFFF;
}
.equipment-card__media--contain img {
  object-fit: contain;
  padding: 28px;
  box-sizing: border-box;
}
.equipment-card__media--top img {
  object-position: center top;
}
.equipment-card__body {
  padding: 28px 30px 32px;
}
.equipment-card__body h2 {
  color: var(--c-hero-bg);
  font-family: var(--font-korean);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.35;
  margin: 8px 0 12px;
}
.equipment-card__body p:last-child {
  color: var(--c-secondary);
  font-family: var(--font-korean);
  font-size: 15px;
  line-height: 1.8;
  max-width: none;
}

@media (max-width: 900px) {
  .equipment-hero {
    padding: 132px 24px 64px;
  }
  .equipment-section {
    padding: 56px 20px 72px;
  }
  .equipment-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .equipment-card__media {
    max-height: 360px;
  }
  .equipment-card__body {
    padding: 24px 22px 28px;
  }
  .equipment-card__body h2 {
    font-size: 22px;
  }
}

/* ============================================================
   NON-COVERED FEES
   ============================================================ */
.fee-page {
  background: #FFFFFF;
}
.fee-hero {
  padding: 160px 40px 88px;
  background: var(--c-hero-bg);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.fee-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(59,158,224,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.fee-hero__inner {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.fee-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.fee-hero h1,
.fee-section__header h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}
.fee-hero h1 {
  font-size: clamp(44px, 6vw, 72px);
  margin: 18px 0 18px;
}
.fee-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255,255,255,0.72);
  font-family: var(--font-korean);
  font-size: 16px;
  line-height: 1.8;
}
.fee-hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.fee-hero__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,0.26);
  border-radius: 4px;
  color: #FFFFFF;
  text-decoration: none;
  font-family: var(--font-korean);
  font-size: 14px;
  font-weight: 700;
}
.fee-hero__actions a:first-child {
  background: var(--c-accent);
  border-color: var(--c-accent);
}
.fee-section {
  padding: 76px 40px;
  background: #FFFFFF;
}
.fee-section--soft {
  background: #F0F3F7;
}
.fee-section__header {
  max-width: 1500px;
  margin: 0 auto 28px;
}
.fee-section__header h2 {
  color: var(--c-hero-bg);
  font-size: clamp(34px, 4vw, 54px);
  margin-top: 12px;
}
.fee-table-wrap {
  max-width: 1500px;
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid var(--c-border);
  background: #FFFFFF;
}
.fee-table {
  width: 100%;
  min-width: 1080px;
  border-collapse: collapse;
  font-family: var(--font-korean);
  color: #0D1F4E;
}
.fee-table th,
.fee-table td {
  border-right: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 14px 12px;
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
  vertical-align: middle;
}
.fee-table th {
  background: #F7FAFD;
  font-weight: 800;
  color: #061A3F;
}
.fee-table td:nth-child(4) {
  text-align: left;
  min-width: 220px;
}
.fee-table tr:last-child td {
  border-bottom: 0;
}
.fee-table th:last-child,
.fee-table td:last-child {
  border-right: 0;
}
@media (max-width: 768px) {
  .fee-hero {
    padding: 128px 22px 64px;
  }
  .fee-section {
    padding: 56px 18px;
  }
  .fee-table th,
  .fee-table td {
    padding: 12px 10px;
    font-size: 12px;
  }
}
