/* ===================================================
   I.me의원 — Premium Aesthetic Clinic
   Mobile-First CSS | Cream & Beige Medical Aesthetic
   =================================================== */

/* ── CSS Variables ── */
:root {
  --cream:    #f8f5f0;
  --beige:    #e8ddd0;
  --warm:     #c9b49a;
  --gold:     #b8975a;
  --dark:     #1a1714;
  --charcoal: #2d2926;
  --gray:     #6b6560;
  --light-gray: #f0ece6;
  --white:    #ffffff;

  --font-serif: 'Cormorant Garamond', 'Noto Serif KR', serif;
  --font-sans:  'Noto Sans KR', sans-serif;

  --header-h: 64px;
  --consult-h: 64px;
  --radius: 2px;
  --transition: 0.3s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  padding-bottom: var(--consult-h);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
.section-eyebrow {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
}
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header--light .section-title,
.section-header--light .section-desc { color: var(--white); }
.section-header--light .section-desc { color: rgba(255,255,255,0.7); }

/* ===================================================
   HEADER
   =================================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 900;
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(248,245,240,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.logo-main {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  transition: color var(--transition);
  letter-spacing: 0.05em;
}
.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  text-transform: uppercase;
}
.header.scrolled .logo-main { color: var(--dark); }
.header.scrolled .logo-sub  { color: var(--gray); }

.header__nav { display: none; }
@media (min-width: 1024px) {
  .header__nav { display: flex; }
  .header__nav ul { display: flex; gap: 2rem; }
  .header__nav a {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.85);
    transition: color var(--transition);
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
  }
  .header__nav a:hover { color: var(--white); border-bottom-color: var(--gold); }
  .header.scrolled .header__nav a { color: var(--charcoal); }
  .header.scrolled .header__nav a:hover { color: var(--gold); }
  .header__menu-btn { display: none; }
}

.header__menu-btn {
  width: 36px; height: 36px;
  display: flex; flex-direction: column;
  justify-content: center; gap: 5px;
  padding: 4px;
}
.header__menu-btn span {
  display: block; height: 1.5px; width: 100%;
  background: var(--white);
  transition: background var(--transition);
}
.header.scrolled .header__menu-btn span { background: var(--dark); }

/* ── Mobile Nav ── */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--cream);
  z-index: 1000;
  padding: 5rem 2rem 2rem;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -4px 0 24px rgba(0,0,0,0.12);
}
.mobile-nav.open { right: 0; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 0; }
.mobile-nav__link {
  display: block;
  padding: 1rem 0;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--charcoal);
  border-bottom: 1px solid var(--beige);
  letter-spacing: 0.05em;
}
.mobile-nav__close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  font-size: 1.25rem; color: var(--gray);
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
}
.mobile-nav__overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-nav__overlay.open { opacity: 1; pointer-events: all; }

/* ===================================================
   FLOATING BUTTONS
   =================================================== */
.floating-btns {
  position: fixed;
  right: 1rem; top: 50%;
  transform: translateY(-50%);
  z-index: 800;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.float-btn {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  transition: transform var(--transition), box-shadow var(--transition);
  font-size: 0.55rem;
  letter-spacing: 0.03em;
  color: var(--charcoal);
}
.float-btn svg { width: 20px; height: 20px; }
.float-btn:hover { transform: scale(1.08); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.float-btn--call  { color: #1a73e8; }
.float-btn--naver { color: #03c75a; }
.float-btn--kakao { color: #3a1d1d; background: #fee500; }

@media (max-width: 767px) {
  .floating-btns {
    right: 0.75rem;
    top: auto; bottom: calc(var(--consult-h) + 1rem);
    transform: none;
  }
  .float-btn { width: 52px; height: 52px; font-size: 0.5rem; }
  .float-btn svg { width: 18px; height: 18px; }
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,16,12,0.35) 0%,
    rgba(20,16,12,0.2) 50%,
    rgba(20,16,12,0.55) 100%
  );
}
.hero__content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 700px;
}
.hero__eyebrow {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.hero__subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.9;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero__cta {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  border: 1px solid rgba(255,255,255,0.7);
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background var(--transition), border-color var(--transition);
}
.hero__cta:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem;
  z-index: 2;
}
.scroll-line {
  display: block; width: 1px; height: 40px;
  background: rgba(255,255,255,0.5);
  animation: scrollLine 1.5s ease-in-out infinite;
}
.scroll-text {
  font-size: 0.6rem; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6); text-transform: uppercase;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===================================================
   CONSULTATION BAR
   =================================================== */
.consult-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: auto;
  min-height: var(--consult-h);
  background: var(--dark);
  z-index: 850;
  padding: 0.75rem 1rem;
}
.consult-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.consult-bar__label {
  font-size: 0.8rem;
  color: var(--white);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
.consult-bar__label span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  display: block;
  margin-top: 1px;
}
.consult-bar__form {
  display: flex; align-items: center;
  gap: 0.5rem; flex: 1; flex-wrap: wrap;
}
.consult-bar__select,
.consult-bar__input {
  height: 38px;
  padding: 0 0.75rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.8rem;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color var(--transition);
}
.consult-bar__select { min-width: 130px; }
.consult-bar__input  { min-width: 100px; flex: 1; }
.consult-bar__select:focus,
.consult-bar__input:focus  { border-color: var(--gold); }
.consult-bar__select option { background: var(--dark); }
.consult-bar__input::placeholder { color: rgba(255,255,255,0.4); }
.consult-bar__agree {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.72rem; color: rgba(255,255,255,0.6);
  white-space: nowrap; flex-shrink: 0;
  cursor: pointer;
}
.consult-bar__btn {
  height: 38px;
  padding: 0 1.5rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  transition: background var(--transition);
  white-space: nowrap; flex-shrink: 0;
}
.consult-bar__btn:hover { background: #a0813e; }

@media (max-width: 767px) {
  .consult-bar { padding: 0.6rem 0.75rem; }
  .consult-bar__label span { display: none; }
  .consult-bar__form { gap: 0.4rem; }
  .consult-bar__select { min-width: 110px; font-size: 0.75rem; }
  .consult-bar__input  { min-width: 80px; font-size: 0.75rem; }
  .consult-bar__agree  { font-size: 0.65rem; }
}
@media (max-width: 480px) {
  .consult-bar__inner { gap: 0.5rem; }
  .consult-bar__label { font-size: 0.75rem; }
  .consult-bar__form  { gap: 0.35rem; }
  .consult-bar__select,
  .consult-bar__input { height: 34px; font-size: 0.72rem; }
  .consult-bar__btn   { height: 34px; padding: 0 1rem; font-size: 0.75rem; }
}

/* ===================================================
   TREATMENTS SLIDER
   =================================================== */
.treatments {
  padding: 5rem 1.25rem;
  background: var(--cream);
  overflow: hidden;
}
.treatments-swiper {
  padding-bottom: 3rem !important;
}
.treatment-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.treatment-card__img {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.treatment-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.treatment-card:hover .treatment-card__img img { transform: scale(1.04); }
.treatment-card__body { padding: 1.5rem; }
.treatment-card__en {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.treatment-card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.treatment-card__desc {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.treatment-card__link {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
.treatment-card__link:hover { border-bottom-color: var(--gold); }

/* Swiper custom */
.treatments-swiper .swiper-button-prev,
.treatments-swiper .swiper-button-next {
  color: var(--gold);
  width: 40px; height: 40px;
}
.treatments-swiper .swiper-button-prev::after,
.treatments-swiper .swiper-button-next::after { font-size: 1rem; }
.treatments-swiper .swiper-pagination-bullet { background: var(--warm); }
.treatments-swiper .swiper-pagination-bullet-active { background: var(--gold); }

/* ===================================================
   TRUST NUMBERS
   =================================================== */
.trust {
  position: relative;
  padding: 6rem 1.25rem;
  overflow: hidden;
}
.trust__bg {
  position: absolute; inset: 0;
}
.trust__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.trust__overlay {
  position: absolute; inset: 0;
  background: rgba(20,16,12,0.78);
}
.trust__inner {
  position: relative; z-index: 2;
  max-width: 1000px; margin: 0 auto;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .trust__grid { grid-template-columns: repeat(4, 1fr); }
}
.trust__item {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(184,151,90,0.3);
}
.trust__num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.trust__unit {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold);
}
.trust__label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}
.trust__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .trust__features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .trust__features { grid-template-columns: repeat(4, 1fr); } }
.trust__feature {
  display: flex; gap: 1rem; align-items: flex-start;
}
.trust__feature-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border: 1px solid rgba(184,151,90,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.trust__feature-icon svg { width: 18px; height: 18px; stroke: var(--gold); }
.trust__feature h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.trust__feature p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ===================================================
   BEFORE & AFTER
   =================================================== */
.before-after {
  padding: 5rem 1.25rem;
  background: var(--light-gray);
}
.ba-tabs {
  display: flex; justify-content: center; gap: 0;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--beige);
}
.ba-tab {
  padding: 0.75rem 2rem;
  font-size: 0.85rem;
  color: var(--gray);
  letter-spacing: 0.05em;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--transition), border-color var(--transition);
}
.ba-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

.ba-sliders { max-width: 600px; margin: 0 auto; }
.ba-slider { display: none; }
.ba-slider.active { display: block; }
.ba-slider__track {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: ew-resize;
  user-select: none;
}
.ba-slider__before,
.ba-slider__after {
  position: absolute; inset: 0;
}
.ba-slider__before img,
.ba-slider__after img {
  width: 100%; height: 100%; object-fit: cover;
}
.ba-slider__after {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0s;
}
.ba-slider__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 10;
}
.ba-handle-line {
  position: absolute; top: 0; bottom: 0;
  width: 2px; background: var(--white);
  left: 50%; transform: translateX(-50%);
}
.ba-handle-circle {
  width: 40px; height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  gap: 2px;
  z-index: 1;
}
.ba-handle-circle svg { width: 14px; height: 14px; stroke: var(--charcoal); }
.ba-label {
  position: absolute;
  top: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  font-weight: 500;
  color: var(--white);
  background: rgba(0,0,0,0.4);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}
.ba-label--before { left: 1rem; }
.ba-label--after  { right: 1rem; }

/* ===================================================
   DOCTOR
   =================================================== */
.doctor {
  padding: 5rem 1.25rem;
  background: var(--cream);
}
.doctor__inner {
  max-width: 1000px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .doctor__inner {
    grid-template-columns: 340px 1fr;
    align-items: center;
  }
}
.doctor__img {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
  max-height: 480px;
}
.doctor__img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.doctor__content .section-eyebrow { text-align: left; }
.doctor__name {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.doctor__title {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}
.doctor__bio {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.8;
  border-left: 2px solid var(--gold);
  padding-left: 1.25rem;
  margin-bottom: 2rem;
}
.doctor__career {
  display: flex; flex-direction: column; gap: 0.6rem;
}
.doctor__career li {
  font-size: 0.82rem;
  color: var(--gray);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}
.doctor__career li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--gold);
}

/* ===================================================
   REVIEWS
   =================================================== */
.reviews {
  padding: 5rem 1.25rem;
  background: var(--dark);
  overflow: hidden;
}
.reviews .section-title { color: var(--white); }
.reviews .section-eyebrow { color: var(--gold); }
.reviews-swiper { padding-bottom: 3rem !important; }
.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2rem;
  border-radius: var(--radius);
  height: auto;
}
.review-card__stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.review-card__treatment {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.review-card__text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.review-card__author {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}
.reviews-swiper .swiper-pagination-bullet { background: rgba(255,255,255,0.3); }
.reviews-swiper .swiper-pagination-bullet-active { background: var(--gold); }

/* ===================================================
   HOURS
   =================================================== */
.hours {
  padding: 5rem 1.25rem;
  background: var(--light-gray);
}
.hours__inner { max-width: 600px; margin: 0 auto; }
.hours__table {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.hours__row {
  display: flex;
  align-items: center;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--light-gray);
  gap: 1rem;
}
.hours__row--lunch { background: var(--light-gray); }
.hours__day {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--charcoal);
  font-weight: 500;
  min-width: 120px;
  flex-shrink: 0;
}
.hours__time {
  font-size: 0.88rem;
  color: var(--gray);
  letter-spacing: 0.03em;
}
.hours__notice {
  padding: 1rem 1.5rem;
  font-size: 0.75rem;
  color: var(--gray);
  text-align: center;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .hours__row { flex-direction: column; align-items: flex-start; gap: 0.25rem; padding: 1rem 1.25rem; }
  .hours__day { min-width: unset; font-size: 0.85rem; }
  .hours__time { font-size: 0.82rem; }
}

/* ===================================================
   LOCATION
   =================================================== */
.location {
  padding: 5rem 1.25rem;
  background: var(--cream);
}
.location__inner { max-width: 800px; margin: 0 auto; }
.map-placeholder {
  background: var(--light-gray);
  border: 1px dashed var(--beige);
  border-radius: var(--radius);
  height: 300px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.75rem;
  text-align: center;
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.map-placeholder__icon svg { width: 40px; height: 40px; stroke: var(--warm); }
.map-placeholder p { font-size: 0.9rem; color: var(--charcoal); line-height: 1.7; }
.map-placeholder__sub { font-size: 0.72rem; color: var(--gray); }
.location__links {
  display: flex; gap: 0.75rem; justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.location__link {
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--beige);
  border-radius: 2px;
  font-size: 0.8rem;
  color: var(--charcoal);
  transition: background var(--transition), border-color var(--transition);
}
.location__link:hover { background: var(--beige); }
.location__link--naver { border-color: #03c75a; color: #03c75a; }
.location__link--kakao { border-color: #fee500; background: #fee500; color: #3a1d1d; }
.location__link--google { border-color: #4285f4; color: #4285f4; }
.location__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 480px) { .location__info { grid-template-columns: 1fr; } }
.location__info-item {
  background: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--beige);
}
.location__info-item strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.location__info-item span { font-size: 0.82rem; color: var(--gray); line-height: 1.6; }

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--charcoal);
  padding: 3rem 1.25rem;
}
.footer__inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  text-align: center;
}
.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.1em;
}
.footer__tagline {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}
.footer__links {
  display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center;
}
.footer__links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }
.footer__info {
  display: flex; flex-direction: column; gap: 0.3rem;
}
.footer__info p { font-size: 0.72rem; color: rgba(255,255,255,0.35); line-height: 1.7; }
.footer__copy { font-size: 0.68rem; color: rgba(255,255,255,0.25); }

/* ===================================================
   SECTION PADDING ADJUSTMENTS
   =================================================== */
@media (min-width: 768px) {
  .treatments, .before-after, .doctor,
  .reviews, .hours, .location { padding: 6rem 2rem; }
  .trust { padding: 7rem 2rem; }
}
@media (min-width: 1024px) {
  .treatments, .before-after, .doctor,
  .reviews, .hours, .location { padding: 7rem 3rem; }
  .trust { padding: 8rem 3rem; }
}
