﻿:root {
  color: #20342c;
  background: #fffdf8;
  font-family: "Pretendard", "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(250, 241, 225, 0.68), rgba(229, 242, 238, 0.86) 52%, rgba(247, 248, 238, 0.92)),
    #fffdf8;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(58, 90, 76, 0.16);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark,
.icon-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid rgba(58, 90, 76, 0.18);
  color: #37624f;
  background: #ffffff;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: #6d7d75;
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #3d5249;
  font-size: 14px;
}

.icon-button {
  display: none;
}

.hero {
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(420px, 1.2fr);
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
  padding: clamp(42px, 7vw, 96px) clamp(18px, 5vw, 72px) 36px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #9a6b35;
  font-size: 14px;
  font-weight: 700;
}

h1,
h2,
h3,
p {
  word-break: keep-all;
}

h1 {
  margin: 0;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.2;
  letter-spacing: 0;
}

h3 {
  margin: 14px 0 8px;
  font-size: 22px;
}

.lead {
  max-width: 650px;
  color: #445a50;
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.6;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 540px;
  margin-top: 30px;
  padding: 16px 18px;
  border: 1px solid rgba(58, 90, 76, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  color: #697a72;
}

.hero-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding: 6px 4px 18px;
  scroll-snap-type: x mandatory;
}

.hero-card {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  scroll-snap-align: start;
  border-radius: 8px;
  border: 1px solid rgba(58, 90, 76, 0.18);
  background: #ffffff;
  box-shadow: 0 18px 60px rgba(40, 63, 53, 0.12);
}

.image-slot {
  display: grid;
  place-items: center;
  min-height: 210px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(88, 128, 107, 0.12), rgba(236, 185, 118, 0.15)),
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(58, 90, 76, 0.05) 10px, rgba(58, 90, 76, 0.05) 20px);
  color: #6a7b73;
  font-weight: 700;
}

.image-slot.small {
  min-height: 135px;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0 clamp(18px, 5vw, 72px) 58px;
}

.quick-actions a,
.footer-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 72px;
  padding: 16px;
  border-radius: 8px;
  background: #315f4b;
  color: #ffffff;
  font-weight: 800;
}

.quick-actions a:nth-child(2) {
  background: #b88743;
}

.quick-actions .phone-action {
  background: #223d35;
}

.section {
  padding: 76px clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(58, 90, 76, 0.14);
}

.intro-band,
.split,
.location,
.info-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.intro-band p,
.split p,
.location p,
.clinic-card p,
.treatment-list p,
.faq-list p,
.footer {
  color: #536960;
  line-height: 1.75;
}

.section-head {
  margin-bottom: 28px;
}

.section-head.compact {
  margin-bottom: 18px;
}

.clinic-grid,
.column-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.clinic-card,
.column-card,
.treatment-list article,
.hours-card,
details {
  border: 1px solid rgba(58, 90, 76, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.clinic-card {
  padding: 16px;
}

.clinic-card a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #315f4b;
  font-weight: 800;
}

.treatments {
  background: rgba(255, 255, 255, 0.5);
}

.treatment-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.treatment-list article {
  padding: 18px;
}

.column-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.column-card span,
.text-link {
  color: #6b7f76;
}

.info-grid {
  grid-template-columns: 1.3fr 0.7fr;
}

details {
  padding: 0;
  margin-bottom: 12px;
}

summary {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 18px;
  color: #263b33;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 18px 18px 46px;
}

.hours-card {
  padding: 24px;
}

.hours-card dl,
.hours-card dd {
  margin: 0;
}

.hours-card div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(58, 90, 76, 0.12);
}

.hours-card dt {
  color: #315f4b;
  font-weight: 800;
}

.location img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(58, 90, 76, 0.16);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 38px clamp(18px, 5vw, 72px) 98px;
  background: #20342c;
  color: rgba(255, 255, 255, 0.75);
}

.footer strong,
.footer span {
  display: block;
}

.footer strong {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 8px;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-actions a {
  min-height: 44px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.12);
}

.mobile-call {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 54px;
  border-radius: 8px;
  background: #20342c;
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 14px 36px rgba(32, 52, 44, 0.24);
}

@media (max-width: 980px) {
  .desktop-nav {
    display: flex;
    flex: 1 1 100%;
    order: 3;
    gap: 12px;
    overflow-x: auto;
    padding: 8px 0 2px;
    white-space: nowrap;
  }

  .icon-button {
    display: none;
  }

  .hero,
  .intro-band,
  .split,
  .location,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .quick-actions,
  .clinic-grid,
  .column-grid {
    grid-template-columns: 1fr 1fr;
  }

  .treatment-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    flex-wrap: wrap;
    padding: 12px 16px;
  }

  .brand small {
    display: none;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-slider {
    grid-auto-columns: 84%;
  }

  .quick-actions,
  .clinic-grid,
  .column-grid,
  .treatment-list {
    grid-template-columns: 1fr;
  }

  .quick-actions {
    padding-bottom: 34px;
  }

  .section {
    padding: 54px 16px;
  }

  .hours-card div {
    display: block;
  }

  .footer {
    display: block;
    padding-bottom: 94px;
  }

  .footer-actions {
    margin-top: 18px;
  }

  .mobile-call {
    display: flex;
  }
}
.hero {
  grid-template-columns: 1fr;
  align-items: start;
  text-align: center;
}
.hero-copy {
  max-width: 980px;
  margin: 0 auto;
}
.search-box {
  margin-left: auto;
  margin-right: auto;
}
.hero-slider {
  width: min(1120px, 100%);
  margin: 12px auto 0;
  grid-auto-columns: minmax(300px, 1fr);
  align-items: stretch;
}
.hero-card {
  height: 100%;
  text-align: left;
  color: inherit;
}
.hero-card .image-slot {
  flex: 0 0 210px;
  min-height: 210px;
}
.treatment-list a {
  border: 1px solid rgba(58, 90, 76, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 18px;
  display: block;
  min-height: 190px;
}
.clinic-card span { color: #315f4b; font-weight: 800; }
.subpage {
  padding: clamp(42px, 7vw, 92px) clamp(18px, 5vw, 72px) 100px;
}
.subpage > h1,
.article > h1 {
  margin: 0 0 28px;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.08;
}
.article {
  max-width: 980px;
  margin: 0 auto;
}
.article h2 {
  margin-top: 46px;
  padding-top: 28px;
  border-top: 1px solid rgba(58, 90, 76, 0.14);
}
.article h3 { margin-top: 28px; }
.article p,
.article li {
  color: #485e54;
  line-height: 1.85;
  font-size: 17px;
}
.article ul,
.article ol { padding-left: 24px; }
.back {
  display: inline-flex;
  margin-bottom: 28px;
  color: #315f4b;
  font-weight: 800;
}
.subpage .clinic-grid { margin-top: 30px; }
@media (max-width: 640px) {
  .hero { text-align: left; }
  .hero-slider { grid-auto-columns: 84%; }
  .subpage { padding: 36px 16px 86px; }
}

.hero-card{display:grid!important;grid-template-rows:210px auto 1fr;align-content:start}
.hero-card .image-slot{height:210px!important;min-height:210px!important;max-height:210px!important;width:100%}

.card-image {
  width: 100%;
  height: 135px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(58, 90, 76, 0.12);
  background: #f6f2ea;
}
.hero-image {
  height: 210px !important;
  min-height: 210px !important;
  max-height: 210px !important;
}


.doctor-table{width:100%;border-collapse:collapse;border:1px solid rgba(58,90,76,.16);border-radius:8px;overflow:hidden;background:rgba(255,255,255,.78)}.doctor-table th,.doctor-table td{padding:16px 18px;border-bottom:1px solid rgba(58,90,76,.12);vertical-align:top;text-align:left;line-height:1.7}.doctor-table tr:last-child th,.doctor-table tr:last-child td{border-bottom:0}.doctor-table th{width:120px;color:#315f4b;background:rgba(49,95,75,.08);font-weight:800}.doctor-table td{color:#3f564c}

.doctor-table td span{display:block}.doctor-table td span+span{margin-top:4px}

.column-board-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  margin-bottom: 42px;
}

.column-board-hero img,
.column-article-hero img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(58, 90, 76, 0.16);
  object-fit: cover;
}

.column-board-hero img {
  height: 330px;
}

.column-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.column-board-card {
  overflow: hidden;
  border: 1px solid rgba(58, 90, 76, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.column-board-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  background: #f4eee4;
}

.column-board-card div {
  padding: 18px;
}

.column-board-card strong {
  display: block;
  color: #20342c;
  font-size: 19px;
  line-height: 1.45;
}

.column-board-card span {
  display: block;
  margin: 10px 0;
  color: #9a6b35;
  font-weight: 800;
  font-size: 13px;
}

.column-board-card p {
  margin: 0;
  color: #536960;
  line-height: 1.7;
}

.column-article {
  max-width: 980px;
  margin: 0 auto;
}

.column-article-hero {
  margin: 28px 0 34px;
}

.column-article-hero img {
  height: min(56vw, 460px);
}

.column-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 18px;
  color: #9a6b35;
  font-weight: 800;
}

.column-article h1 {
  margin: 0;
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1.12;
}

.column-article h2 {
  margin-top: 42px;
}

.column-article p,
.column-article li {
  color: #485e54;
  line-height: 1.9;
  font-size: 17px;
}

.column-note {
  margin: 34px 0;
  padding: 18px 20px;
  border: 1px solid rgba(58, 90, 76, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: #536960;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .column-board-hero,
  .column-board {
    grid-template-columns: 1fr;
  }

  .column-board-hero img,
  .column-article-hero img {
    height: auto;
  }
}

.brand-logo{width:30px;height:30px;object-fit:contain;display:block}


.subpage-title { margin-bottom: 28px; }
.subpage-title h1,
.subpage > h1 {
  margin: 0;
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.16;
}
.article > h1 {
  font-size: clamp(30px, 4vw, 46px);
}
.blog-image {
  margin: 28px 0;
}
.blog-image img {
  display: block;
  width: min(100%, 760px);
  max-height: none;
  margin: 0 auto;
  border-radius: 8px;
  border: 1px solid rgba(58, 90, 76, 0.12);
  background: #fff;
}
.column-index .column-board { margin-top: 18px; }
.subpage-lead {
  max-width: 780px;
  margin: 14px 0 0;
  color: #536960;
  font-size: 17px;
  line-height: 1.75;
}
.about-photo-hero {
  overflow: hidden;
  border: 1px solid rgba(58, 90, 76, 0.14);
  border-radius: 8px;
  background: #fff;
}
.about-photo-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}
.about-greeting {
  margin: 36px 0;
  padding: 34px 0;
  border-top: 1px solid rgba(58, 90, 76, 0.14);
  border-bottom: 1px solid rgba(58, 90, 76, 0.14);
}
.about-greeting h2 {
  max-width: 820px;
  margin: 0 0 20px;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.35;
  color: #315f4b;
}
.about-greeting p {
  max-width: 860px;
  color: #485e54;
  font-size: 17px;
  line-height: 1.9;
}
.about-greeting .sign {
  margin-top: 22px;
  color: #20342c;
  font-weight: 900;
}
.about-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin: 34px 0;
}
.about-summary h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.35;
}
.about-summary p {
  margin: 0;
  color: #536960;
  line-height: 1.8;
}
.about-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.about-gallery figure {
  margin: 0;
}
.about-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(58, 90, 76, 0.14);
  border-radius: 8px;
  background: #fff;
}
.about-gallery figcaption {
  margin-top: 10px;
  color: #536960;
  font-size: 14px;
  font-weight: 800;
}
.faq-page .faq-list {
  max-width: 900px;
}
.faq-topic {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-right: 10px;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(49, 95, 75, 0.1);
  color: #315f4b;
  font-size: 13px;
  font-weight: 900;
}
@media (max-width: 640px) {
  .subpage-title h1, .subpage > h1 { font-size: 34px; }
  .article > h1 { font-size: 32px; }
  .about-photo-hero img,
  .about-gallery img {
    aspect-ratio: 4 / 3;
  }
  .about-summary,
  .about-gallery {
    grid-template-columns: 1fr;
  }
}



.notice-list{display:grid;gap:14px;max-width:920px}.notice-list-item{display:grid;grid-template-columns:92px 1fr auto;gap:12px;align-items:center;padding:18px;border:1px solid rgba(58,90,76,.14);border-radius:8px;background:rgba(255,255,255,.82)}.notice-list-item span{color:#315f4b;font-size:13px;font-weight:900}.notice-list-item strong{font-size:19px}.notice-list-item time{color:#9a6b35;font-size:13px;font-weight:800}.notice-list-item p{grid-column:2 / 4;margin:0;color:#536960;line-height:1.7}.notice-preview-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}.notice-preview-item{display:flex;justify-content:space-between;gap:12px;align-items:center;padding:18px;border:1px solid rgba(58,90,76,.14);border-radius:8px;background:rgba(255,255,255,.82)}.notice-preview-item strong{font-size:17px;line-height:1.45}.notice-preview-item span{color:#9a6b35;font-size:13px;font-weight:800;white-space:nowrap}.board-error{color:#9a3d35;font-weight:800}@media(max-width:760px){.notice-list-item{grid-template-columns:1fr}.notice-list-item p{grid-column:auto}.notice-preview-grid{grid-template-columns:1fr}}
