    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --bg:       #f9f6f0;
      --bg2:      #f2ede4;
      --green:    #4a7c59;
      --green2:   #3a6347;
      --green-lt: #e8f0eb;
      --brown:    #2c1810;
      --mid:      #6b5345;
      --soft:     #a89080;
      --white:    #ffffff;
      --border:   #ddd5c8;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--brown);
      font-family: 'Noto Sans KR', sans-serif;
      font-weight: 300;
      line-height: 1.7;
    }

    /* ── Scroll 진입 애니메이션 ── */
    .fade-up {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── 헤더 ── */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(249, 246, 240, 0.88);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
      padding: 0 6%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
      transition: background 0.3s;
    }

    .logo {
      font-family: 'Noto Serif KR', serif;
      font-size: 18px;
      font-weight: 600;
      color: var(--green);
      letter-spacing: 0.04em;
      text-decoration: none;
    }
    .logo span { color: var(--brown); font-weight: 300; font-size: 13px; margin-left: 8px; }

    nav { display: flex; gap: 28px; }
    nav a {
      text-decoration: none;
      font-size: 13.5px;
      color: var(--mid);
      font-weight: 400;
      letter-spacing: 0.02em;
      transition: color 0.2s;
    }
    nav a:hover { color: var(--green); }

    .header-cta {
      background: var(--green);
      color: var(--white);
      border: none;
      border-radius: 6px;
      padding: 8px 18px;
      font-size: 13px;
      font-family: 'Noto Sans KR', sans-serif;
      font-weight: 500;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s;
    }
    .header-cta:hover { background: var(--green2); }

    /* ── HERO ── */
    #hero {
      min-height: 92vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 80px 6%;
      background:
        linear-gradient(to bottom, rgba(249,246,240,0.3) 0%, rgba(249,246,240,0.95) 80%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Ccircle cx='200' cy='180' r='160' fill='none' stroke='%234a7c59' stroke-width='0.5' opacity='0.25'/%3E%3Ccircle cx='200' cy='180' r='110' fill='none' stroke='%234a7c59' stroke-width='0.5' opacity='0.2'/%3E%3Ccircle cx='200' cy='180' r='60' fill='none' stroke='%234a7c59' stroke-width='0.5' opacity='0.15'/%3E%3Cpath d='M200 20 Q220 100 200 180 Q180 100 200 20Z' fill='%234a7c59' opacity='0.06'/%3E%3Cpath d='M200 340 Q220 260 200 180 Q180 260 200 340Z' fill='%234a7c59' opacity='0.06'/%3E%3Cpath d='M20 180 Q100 200 180 180 Q100 160 20 180Z' fill='%234a7c59' opacity='0.06'/%3E%3Cpath d='M380 180 Q300 200 220 180 Q300 160 380 180Z' fill='%234a7c59' opacity='0.06'/%3E%3C/svg%3E") center/600px no-repeat;
    }

    .hero-inner { max-width: 700px; }

    .hero-badge {
      display: inline-block;
      background: var(--green-lt);
      color: var(--green);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.1em;
      padding: 5px 14px;
      border-radius: 20px;
      margin-bottom: 24px;
    }

    .hero-title {
      font-family: 'Noto Serif KR', serif;
      font-size: clamp(36px, 6vw, 58px);
      font-weight: 600;
      color: var(--brown);
      line-height: 1.25;
      letter-spacing: -0.01em;
      margin-bottom: 20px;
    }
    .hero-title em {
      font-style: normal;
      color: var(--green);
    }

    .hero-sub {
      font-size: 16px;
      color: var(--mid);
      max-width: 460px;
      margin: 0 auto 40px;
      line-height: 1.8;
    }

    .hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

    .btn-primary {
      background: var(--green);
      color: #fff;
      padding: 14px 32px;
      border-radius: 8px;
      font-size: 15px;
      font-family: 'Noto Sans KR', sans-serif;
      font-weight: 500;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-primary:hover { background: var(--green2); transform: translateY(-2px); }

    .btn-secondary {
      background: transparent;
      color: var(--green);
      padding: 14px 32px;
      border-radius: 8px;
      border: 1.5px solid var(--green);
      font-size: 15px;
      font-family: 'Noto Sans KR', sans-serif;
      font-weight: 500;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-secondary:hover { background: var(--green-lt); transform: translateY(-2px); }

    .hero-info {
      margin-top: 56px;
      display: flex;
      gap: 40px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .hero-info-item { text-align: center; }
    .hero-info-item .num {
      font-family: 'Noto Serif KR', serif;
      font-size: 28px;
      font-weight: 600;
      color: var(--green);
    }
    .hero-info-item .label {
      font-size: 12px;
      color: var(--soft);
      margin-top: 2px;
    }

    /* ── 공통 섹션 ── */
    section { padding: 90px 6%; }
    .section-label {
      font-size: 11.5px;
      font-weight: 500;
      letter-spacing: 0.14em;
      color: var(--green);
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Noto Serif KR', serif;
      font-size: clamp(26px, 3.5vw, 36px);
      font-weight: 600;
      color: var(--brown);
      line-height: 1.35;
      margin-bottom: 16px;
    }
    .section-desc {
      font-size: 15px;
      color: var(--mid);
      max-width: 520px;
      line-height: 1.85;
    }
    .section-head { margin-bottom: 52px; }

    /* ── 진료 항목 ── */
    #treatments { background: var(--bg2); }

    .treatments-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .treat-card {
      background: var(--white);
      border-radius: 16px;
      padding: 32px 24px 28px;
      border: 1px solid var(--border);
      transition: box-shadow 0.25s, transform 0.25s;
    }
    .treat-card:hover {
      box-shadow: 0 12px 32px rgba(74,124,89,0.12);
      transform: translateY(-4px);
    }

    .treat-icon {
      width: 64px;
      height: 64px;
      border-radius: 16px;
      overflow: hidden;
      margin-bottom: 18px;
      background: var(--bg2);
      flex-shrink: 0;
    }
    .treat-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      transition: transform 0.3s ease;
    }
    .treat-card:hover .treat-icon img {
      transform: scale(1.08);
    }
    canvas.capsule-crop {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .treat-card h3 {
      font-family: 'Noto Serif KR', serif;
      font-size: 18px;
      font-weight: 600;
      color: var(--brown);
      margin-bottom: 10px;
    }

    .treat-card p {
      font-size: 13.5px;
      color: var(--mid);
      line-height: 1.8;
    }

    p.treat-tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 500;
      color: var(--green);
      background: var(--green-lt);
      border-radius: 4px;
      padding: 2px 8px;
      margin-bottom: 10px;
      letter-spacing: 0.04em;
    }

    .treat-tags {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 14px;
    }
    .treat-tags li {
      font-size: 11.5px;
      color: var(--soft);
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 3px 10px;
    }

    /* ── 원장 소개 ── */
    #about .inner {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 72px;
      align-items: center;
      max-width: 1000px;
      margin: 0 auto;
    }

    .about-img {
      aspect-ratio: 3/4;
      border-radius: 20px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 16px 48px rgba(0,0,0,0.15);
    }
    .about-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
    }
    .about-img-label {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      white-space: nowrap;
      background: rgba(255,255,255,0.88);
      backdrop-filter: blur(8px);
      border-radius: 8px;
      padding: 10px 20px;
      font-size: 13px;
      font-weight: 500;
      color: var(--green2);
      z-index: 1;
      box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    }

    .about-content .career {
      margin-top: 28px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .career-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      font-size: 14px;
      color: var(--mid);
    }
    .career-item::before {
      content: '';
      width: 6px; height: 6px;
      background: var(--green);
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 8px;
    }

    .philosophy {
      margin-top: 32px;
      padding: 22px 24px;
      background: var(--green-lt);
      border-left: 3px solid var(--green);
      border-radius: 0 10px 10px 0;
    }
    .philosophy p {
      font-family: 'Noto Serif KR', serif;
      font-size: 15px;
      color: var(--green2);
      line-height: 1.85;
      font-style: italic;
    }

    /* ── 오시는 길 ── */
    #location { background: var(--bg2); }

    #location .inner {
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 56px;
      align-items: start;
      max-width: 1000px;
      margin: 0 auto;
    }

    .info-list { display: flex; flex-direction: column; gap: 20px; }
    .info-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }
    .info-icon {
      width: 40px; height: 40px;
      background: var(--green-lt);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }
    .info-item-body { font-size: 14px; color: var(--mid); line-height: 1.7; }
    .info-item-body strong { display: block; font-size: 13px; font-weight: 500; color: var(--soft); margin-bottom: 2px; letter-spacing: 0.04em; }

    .hours-grid {
      margin-top: 6px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4px 12px;
      font-size: 13.5px;
    }
    .hours-row { display: contents; }
    .hours-day { color: var(--soft); }
    .hours-time { color: var(--brown); }

    .map-wrap {
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: 0 8px 24px rgba(0,0,0,0.07);
    }
    /* 카카오맵 카드 */
    .kakao-map-card {
      width: 100%;
      height: 340px;
      background:
        radial-gradient(circle at 30% 60%, rgba(74,124,89,0.06) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(200,169,110,0.08) 0%, transparent 50%),
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(0,0,0,0.04) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(0,0,0,0.04) 40px),
        #f0ede6;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      position: relative;
    }
    .kakao-map-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at center, transparent 30%, rgba(249,246,240,0.3) 100%);
      pointer-events: none;
    }
    .kakao-map-pin-wrap {
      position: relative;
    }
    .kakao-map-pin-wrap .pin-dot {
      width: 48px;
      height: 48px;
      background: var(--green);
      border-radius: 50% 50% 50% 4px;
      transform: rotate(45deg);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 20px rgba(74,124,89,0.4);
    }
    .kakao-map-pin-wrap .pin-dot::after {
      content: '🏥';
      font-size: 18px;
      transform: rotate(-45deg);
      display: block;
    }
    .kakao-map-name {
      font-family: 'Noto Serif KR', serif;
      font-size: 17px;
      font-weight: 600;
      color: var(--brown);
      text-align: center;
    }
    .kakao-map-addr {
      font-size: 12.5px;
      color: var(--mid);
      text-align: center;
      line-height: 1.5;
    }
    .kakao-map-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #FEE500;
      color: #3C1E1E;
      font-size: 13.5px;
      font-weight: 700;
      padding: 10px 22px;
      border-radius: 28px;
      text-decoration: none;
      margin-top: 4px;
      box-shadow: 0 4px 14px rgba(254,229,0,0.5);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .kakao-map-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(254,229,0,0.6); }
    .kakao-map-btn svg { flex-shrink: 0; }
    .map-address {
      background: var(--white);
      padding: 14px 18px;
      font-size: 13px;
      color: var(--mid);
      display: flex;
      align-items: center;
      gap: 8px;
      border-bottom: 1px solid var(--border);
    }

    .parking-info {
      background: var(--white);
      padding: 14px 18px 16px;
    }
    .parking-title {
      font-size: 12.5px;
      font-weight: 500;
      color: var(--mid);
      margin-bottom: 10px;
      letter-spacing: 0.02em;
    }
    .parking-grid {
      display: flex;
      flex-direction: column;
      gap: 7px;
    }
    .parking-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 13px;
      color: var(--mid);
    }
    .parking-name {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .parking-name::before {
      content: '';
      width: 5px; height: 5px;
      background: var(--green);
      border-radius: 50%;
      flex-shrink: 0;
    }
    .parking-free {
      background: var(--green-lt);
      color: var(--green);
      font-size: 12px;
      font-weight: 500;
      padding: 2px 10px;
      border-radius: 20px;
      white-space: nowrap;
    }

    /* ── 예약 CTA ── */
    #cta {
      background: linear-gradient(135deg, #3a6347 0%, #4a7c59 60%, #5a9068 100%);
      text-align: center;
      padding: 90px 6%;
    }
    #cta .section-label { color: rgba(255,255,255,0.6); }
    #cta .section-title { color: #fff; }
    #cta .section-desc { color: rgba(255,255,255,0.75); margin: 0 auto 40px; }

    .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

    .btn-white {
      background: #fff;
      color: var(--green2);
      padding: 15px 34px;
      border-radius: 8px;
      font-size: 15px;
      font-family: 'Noto Sans KR', sans-serif;
      font-weight: 500;
      text-decoration: none;
      transition: transform 0.15s, box-shadow 0.15s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    }
    .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

    .btn-kakao {
      background: #FEE500;
      color: #3C1E1E;
      padding: 15px 34px;
      border-radius: 8px;
      font-size: 15px;
      font-family: 'Noto Sans KR', sans-serif;
      font-weight: 500;
      text-decoration: none;
      transition: transform 0.15s, box-shadow 0.15s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    }
    .btn-kakao:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

    .btn-kakao-booking {
      background: #3A1D96;
      color: #fff;
      padding: 15px 34px;
      border-radius: 8px;
      font-size: 15px;
      font-family: 'Noto Sans KR', sans-serif;
      font-weight: 500;
      text-decoration: none;
      transition: transform 0.15s, box-shadow 0.15s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    }
    .btn-kakao-booking:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

    .btn-naver {
      background: #03C75A;
      color: #fff;
      padding: 15px 34px;
      border-radius: 8px;
      font-size: 15px;
      font-family: 'Noto Sans KR', sans-serif;
      font-weight: 500;
      text-decoration: none;
      transition: transform 0.15s, box-shadow 0.15s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    }
    .btn-naver:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

    /* ── FAQ ── */
    #faq { background: var(--bg); padding: 80px 6%; }
    #faq .faq-inner { max-width: 720px; margin: 0 auto; }
    #faq .faq-head { text-align: center; margin-bottom: 44px; }
    .faq-item {
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }
    .faq-item:first-of-type { border-top: 1px solid var(--border); }
    .faq-q {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      padding: 20px 4px;
      cursor: pointer;
      font-size: 15px;
      font-weight: 500;
      color: var(--brown);
      list-style: none;
      user-select: none;
    }
    .faq-q::marker, .faq-q::-webkit-details-marker { display: none; }
    .faq-q .faq-icon {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--green-lt);
      color: var(--green);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: 300;
      transition: transform 0.3s, background 0.3s;
    }
    details[open] .faq-q .faq-icon {
      transform: rotate(45deg);
      background: var(--green);
      color: #fff;
    }
    .faq-a {
      padding: 0 4px 20px;
      font-size: 14px;
      line-height: 1.8;
      color: var(--mid);
    }

    /* ── 블로그 미리보기 ── */
    #blog-preview { background: var(--cream, #f9f5ee); text-align: center; }
    .blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 1100px; margin: 0 auto; text-align: left; }
    .blog-card { background: #fff; border-radius: 16px; padding: 28px 24px; display: flex; flex-direction: column; gap: 10px; text-decoration: none; color: inherit; transition: transform 0.2s, box-shadow 0.2s; }
    .blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.09); }
    .blog-card-meta { display: flex; gap: 8px; align-items: center; }
    .blog-card-cat { background: #e8f0eb; color: #4a7c59; padding: 2px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
    .blog-card-date { font-size: 0.78rem; color: #999; }
    .blog-card-title { font-size: 0.97rem; font-weight: 700; line-height: 1.55; color: #2c1810; }
    .blog-card-excerpt { font-size: 0.84rem; color: #666; line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .blog-more-btn { display: inline-block; margin-top: 44px; padding: 14px 40px; border: 2px solid #4a7c59; color: #4a7c59; border-radius: 50px; font-weight: 600; text-decoration: none; font-size: 0.95rem; transition: all 0.2s; }
    .blog-more-btn:hover { background: #4a7c59; color: #fff; }
    @media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; gap: 16px; } }

    /* ── 플로팅 버튼 ── */
    .floating-btns {
      position: fixed;
      bottom: 28px;
      right: 24px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 200;
    }
    .float-btn {
      width: 52px; height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      text-decoration: none;
      box-shadow: 0 4px 16px rgba(0,0,0,0.25);
      transition: transform 0.15s, box-shadow 0.15s;
    }
    .float-btn:hover { transform: translateY(-3px) scale(1.08); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
    .float-kakao { background: #FEE500; }
    .float-phone { background: var(--green); }
    .float-insta { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: #fff; }
    .float-kakao-reserve { background: #3A1D96; color: #fff; font-size: 18px; }
    .float-naver-reserve { background: #03C75A; color: #fff; font-weight: 700; font-size: 11px; letter-spacing: -0.5px; }
    .float-price { background: var(--brown); color: #fff; font-weight: 700; font-size: 11px; letter-spacing: -0.5px; line-height: 1.3; text-align: center; cursor: pointer; border: none; }

    /* ── 가격안내 모달 ── */
    #priceModal {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.75);
      z-index: 999;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    #priceModal.open { display: flex; }
    #priceModal .pm-inner {
      position: relative;
      max-width: 680px;
      width: 100%;
    }
    #priceModal img {
      width: 100%;
      border-radius: 12px;
      display: block;
    }
    #priceModal .pm-close {
      position: absolute;
      top: -14px;
      right: -14px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #fff;
      border: none;
      cursor: pointer;
      font-size: 18px;
      line-height: 32px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }

    .nav-insta { display: flex; align-items: center; color: var(--mid); transition: color 0.2s; }
    .nav-insta:hover { color: #e1306c; }

    /* ── Footer ── */
    footer {
      background: var(--brown);
      color: rgba(255,255,255,0.4);
      padding: 40px 6%;
      font-size: 12.5px;
      line-height: 1.9;
    }
    .footer-inner {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 24px;
      flex-wrap: wrap;
    }
    .footer-logo {
      font-family: 'Noto Serif KR', serif;
      font-size: 16px;
      font-weight: 600;
      color: rgba(255,255,255,0.8);
      margin-bottom: 6px;
    }
    footer a { color: rgba(255,255,255,0.4); text-decoration: none; }
    footer a:hover { color: rgba(255,255,255,0.7); }

    /* ── 햄버거 버튼 ── */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      background: none;
      border: none;
    }
    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--brown);
      border-radius: 2px;
      transition: all 0.25s ease;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── 모바일 드로어 메뉴 ── */
    .mobile-menu {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 64px;
      left: 0; right: 0;
      background: rgba(249,246,240,0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      padding: 16px 6%;
      gap: 0;
      z-index: 99;
      transform: translateY(-8px);
      opacity: 0;
      pointer-events: none;
      visibility: hidden;
      transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
    }
    .mobile-menu.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
      visibility: visible;
    }
    .mobile-menu a {
      display: block;
      padding: 14px 0;
      font-size: 16px;
      font-weight: 400;
      color: var(--mid);
      text-decoration: none;
      border-bottom: 1px solid var(--border);
      transition: color 0.15s;
    }
    .mobile-menu a:last-child { border-bottom: none; }
    .mobile-menu a:hover { color: var(--green); }
    .mobile-menu .mobile-tel {
      margin-top: 14px;
      display: block;
      text-align: center;
      background: var(--green);
      color: #fff;
      border-radius: 8px;
      padding: 13px;
      font-weight: 500;
      font-size: 15px;
    }

    /* ── 반응형 ── */
    @media (min-width: 901px) {
      .mobile-menu { display: none !important; }
      .hamburger { display: none !important; }
    }

    @media (max-width: 900px) {
      nav { display: none; }
      .header-cta { display: none; }
      .hamburger { display: flex; }
      .treatments-grid { grid-template-columns: repeat(2, 1fr); }
      #about .inner, #location .inner { grid-template-columns: 1fr; gap: 36px; }
      .about-img { aspect-ratio: 3/4; max-height: 340px; }
    }

    @media (max-width: 640px) {
      /* 공통 섹션 여백 */
      section { padding: 56px 5%; }

      /* Hero */
      #hero { min-height: 80vh; padding: 60px 5%; }
      .hero-sub { font-size: 14.5px; }
      .hero-btns { flex-direction: column; align-items: center; gap: 10px; }
      .hero-btns a { width: 100%; max-width: 320px; justify-content: center; }
      .hero-info { gap: 0; justify-content: space-around; width: 100%; }
      .hero-info-item .num { font-size: 22px; }

      /* 한약 소개 카드 */
      .treatments-grid { grid-template-columns: 1fr; }

      /* CTA 버튼 4개 세로 정렬 */
      .cta-btns { flex-direction: column; align-items: center; }
      .cta-btns a { width: 100%; max-width: 320px; justify-content: center; }

      /* 오시는 길 지도 높이 */
      .kakao-map-card { height: 260px; }

      /* 주차 안내 */
      .parking-item { flex-direction: column; align-items: flex-start; gap: 4px; }

      /* Footer */
      .footer-inner { flex-direction: column; gap: 12px; }
      .footer-inner > div:last-child { text-align: left; }

      /* 플로팅 버튼 크기 */
      .floating-btns { bottom: 20px; right: 16px; gap: 8px; }
      .float-btn { width: 46px; height: 46px; font-size: 19px; }
      .float-price { font-size: 9px; }
      .float-naver-reserve { font-size: 9px; }
    }

    @media (max-width: 400px) {
      .hero-info { gap: 0; }
      .hero-info-item { flex: 1; }
      .logo span { display: none; }
    }

    /* ── 언어 선택 플로팅 버튼 ── */
    .lang-wrap { position: relative; }
    .float-lang {
      background: #fff;
      color: var(--green);
      border: 1.5px solid var(--border);
      cursor: pointer;
      font-size: 22px;
    }
    .lang-menu {
      position: absolute;
      right: 60px;
      top: 50%;
      transform: translateY(-50%) translateX(8px);
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 12px;
      box-shadow: 0 8px 28px rgba(0,0,0,0.18);
      padding: 6px;
      display: flex;
      flex-direction: column;
      gap: 2px;
      min-width: 110px;
      opacity: 0;
      pointer-events: none;
      visibility: hidden;
      transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    }
    .lang-menu.open {
      opacity: 1;
      pointer-events: auto;
      visibility: visible;
      transform: translateY(-50%) translateX(0);
    }
    .lang-menu a {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 9px 12px;
      border-radius: 8px;
      font-size: 13.5px;
      font-weight: 500;
      color: var(--mid);
      text-decoration: none;
      white-space: nowrap;
      transition: background 0.15s, color 0.15s;
    }
    .lang-menu a:hover { background: var(--green-lt); color: var(--green); }
    .lang-menu a.active { background: var(--green); color: #fff; }
    @media (max-width: 640px) {
      .lang-menu { right: 54px; }
      .float-lang { font-size: 19px; }
    }
