﻿@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Cormorant+Garamond:wght@600;700&family=Manrope:wght@400;500;600;700&family=Noto+Serif+SC:wght@500;700&display=swap');

:root {
  --jade-900: #1d5e41;
  --jade-800: #2b7554;
  --jade-700: #3f8a65;
  --sand-50: #f8fbf8;
  --mint-100: #edf5ef;
  --mint-200: #dbeadf;
  --line: rgba(28, 83, 55, 0.2);
  --gold-300: #dcc8a1;
  --gold-400: #ccb283;
  --text-900: #14251b;
  --text-700: #3a5143;
  --text-600: #5b7265;
  --shadow: 0 10px 30px rgba(15, 48, 31, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Manrope', 'Segoe UI', Tahoma, sans-serif;
  color: var(--text-900);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at 12% -8%, #e4f0e8 0%, rgba(228, 240, 232, 0) 40%),
    radial-gradient(circle at 100% 10%, #e8f5ed 0%, rgba(232, 245, 237, 0) 36%),
    var(--sand-50);
}

a {
  color: inherit;
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 252, 249, 0.92);
  backdrop-filter: blur(8px);
}

.top-inner {
  width: min(1080px, 100% - 2rem);
  margin: 0 auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.site-name {
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--jade-900);
  font-size: 1rem;
}

.call-btn {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--jade-900);
  background: #fff;
  border: 1px solid rgba(34, 100, 67, 0.34);
  border-radius: 999px;
  padding: 0.44rem 0.84rem;
  transition: background-color 140ms ease, border-color 140ms ease, color 140ms ease, transform 140ms ease;
}

.call-btn:hover {
  background: #f2faf5;
  transform: translateY(-1px);
}

.page-shell {
  width: min(1080px, 100% - 2rem);
  margin: 1.1rem auto 2.2rem;
  display: grid;
  gap: 1rem;
}

.brand-banner {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(216, 195, 154, 0.18) 0%, rgba(216, 195, 154, 0) 48%),
    linear-gradient(152deg, #0f4534 0%, #1d5e41 56%, #2a7352 100%);
  color: var(--gold-300);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  box-shadow: var(--shadow);
  min-height: clamp(170px, 36vw, 230px);
  padding: clamp(0.95rem, 3vw, 1.3rem);
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 0.12rem;
}

.brand-banner::before,
.brand-banner::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.brand-banner::before {
  inset: 8px;
  border: 1px solid rgba(214, 189, 141, 0.56);
  border-radius: 12px;
}

.brand-banner::after {
  inset: 0;
  border-radius: 16px;
  background: repeating-linear-gradient(-28deg, rgba(214, 189, 141, 0.15) 0 1px, transparent 1px 18px);
  clip-path: polygon(58% 0, 100% 0, 100% 100%, 38% 100%);
  opacity: 0.45;
}

.brand-main,
.brand-cn,
.brand-sub,
.brand-doctor {
  position: relative;
  z-index: 1;
}

.brand-main {
  font-family: 'Cinzel', 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 4.8vw, 2.7rem);
  letter-spacing: 0.04em;
  line-height: 1.02;
  text-shadow: 0 1px 0 rgba(18, 55, 39, 0.34);
}

.yin {
  font-size: 0.58em;
}

.brand-cn {
  margin-top: 0.2rem;
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(1.2rem, 3.6vw, 2rem);
  letter-spacing: 0.12em;
  color: #e2cfaa;
  text-shadow: 0 1px 0 rgba(20, 56, 40, 0.35);
}

.brand-sub {
  margin-top: 0.24rem;
  max-width: 44ch;
  font-family: 'Cinzel', 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(0.76rem, 1.4vw, 0.98rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.25;
  color: rgba(232, 214, 177, 0.95);
}

.brand-doctor {
  margin-top: 0.42rem;
  padding-top: 0.3rem;
  border-top: 1px solid rgba(214, 189, 141, 0.44);
  width: min(420px, 100%);
  font-family: 'Cinzel', 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(0.95rem, 2.3vw, 1.48rem);
  letter-spacing: 0.06em;
  color: #e1cb9f;
  text-shadow: 0 1px 0 rgba(20, 56, 40, 0.35);
}

.card {
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.menu-panel {
  background: #fff;
  padding: 0.95rem;
}

.menu-title {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--jade-900);
}

.menu-list {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.44rem;
}

.menu-list a {
  text-decoration: none;
  display: block;
  border-radius: 10px;
  border: 1px solid transparent;
  background: var(--mint-100);
  color: #1f3328;
  padding: 0.58rem 0.66rem;
  font-size: 0.96rem;
  line-height: 1.25;
  transition: border-color 120ms ease, background-color 120ms ease, transform 120ms ease;
}

.menu-list a:hover {
  border-color: rgba(38, 111, 75, 0.36);
  background: #f5faf7;
  transform: translateX(2px);
}

.menu-list a:active,
.menu-list a.current {
  border-color: #15462f;
  background: #15462f;
  color: #f3fbf6;
}

.menu-list a.current {
  font-weight: 700;
}

.content-card,
.contact-card,
.notice-card {
  background: #fff;
  padding: 1.12rem;
}

.video-gallery {
  background: #fff;
  padding: 1.12rem;
}

.video-gallery h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1.05;
  color: var(--jade-900);
}

.video-grid {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.8rem;
}

.video-grid.single {
  grid-template-columns: 1fr;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.video-item {
  margin: 0;
}

.video-item video {
  width: 100%;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(31, 90, 60, 0.24);
  background: #0b251a;
}

.video-item figcaption {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--text-600);
}

.content-card h1 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 5vw, 2.9rem);
  font-weight: 700;
  line-height: 0.98;
  color: #163423;
}

.subtitle {
  margin: 0.38rem 0 0;
  color: var(--text-600);
  font-size: 0.99rem;
  font-weight: 600;
}

.content-card h2 {
  margin: 1rem 0 0.38rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1.05;
  color: var(--jade-900);
}

.content-card p,
.content-card li,
.contact-card p,
.notice-card p {
  margin-top: 0.5rem;
  font-size: 0.97rem;
  line-height: 1.66;
  color: var(--text-700);
}

.content-card strong,
.notice-card strong {
  color: #153826;
}

.content-card ul,
.content-card ol {
  margin: 0.3rem 0;
  padding-left: 1.2rem;
}

.content-card li::marker {
  color: var(--jade-900);
}

.practitioner-page {
  position: relative;
  overflow: hidden;
  border-color: rgba(123, 96, 72, 0.3);
  background:
    radial-gradient(circle at 100% 8%, rgba(170, 153, 132, 0.14) 0%, rgba(170, 153, 132, 0) 35%),
    radial-gradient(circle at -10% 110%, rgba(158, 141, 121, 0.14) 0%, rgba(158, 141, 121, 0) 44%),
    linear-gradient(180deg, #f7f2ec 0%, #f2ece4 100%);
}

.practitioner-page > * {
  position: relative;
  z-index: 1;
}

.practitioner-head {
  margin-bottom: 0.9rem;
  text-align: center;
}

.practitioner-head::before {
  content: '';
  display: block;
  width: 118px;
  height: 1px;
  margin: 0 auto 0.7rem;
  background: linear-gradient(90deg, rgba(108, 88, 69, 0), rgba(108, 88, 69, 0.44), rgba(108, 88, 69, 0));
}

.practitioner-head h1 {
  color: #2e4a3f;
  font-size: clamp(2.1rem, 5.1vw, 3.25rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
}

.practitioner-head .subtitle {
  margin: 0.62rem auto 0;
  max-width: 32ch;
  color: #4d6258;
  font-size: clamp(1.08rem, 2.8vw, 1.5rem);
  font-weight: 500;
  line-height: 1.42;
}

.practitioner-panel {
  margin-top: 0.9rem;
  padding: 0.68rem;
  border-radius: 16px;
  border: 1px solid rgba(71, 94, 80, 0.18);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 12px 28px rgba(35, 52, 42, 0.08);
}

.practitioner-photo {
  margin: 0;
  padding: 0.42rem;
  border-radius: 13px;
  border: 1px solid rgba(95, 116, 101, 0.2);
  background: #fbf8f4;
}

.practitioner-photo img {
  width: 100%;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(77, 104, 88, 0.2);
  object-fit: cover;
  object-position: center 34%;
  aspect-ratio: 4 / 5;
}

.practitioner-photo figcaption {
  margin-top: 0.36rem;
  color: #6d7f75;
  font-size: 0.82rem;
}

.practitioner-body {
  margin-top: 0.78rem;
}

.practitioner-body h2 {
  color: #2e4a3f;
  font-size: clamp(1.55rem, 3.4vw, 2.1rem);
}

.practitioner-body ul {
  list-style: none;
  margin: 0.26rem 0;
  padding: 0;
}

.practitioner-body li {
  position: relative;
  margin-top: 0.42rem;
  padding-left: 1.35rem;
}

.practitioner-body li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  color: #5d8068;
  font-weight: 700;
}

.practitioner-page .btn.primary {
  background: linear-gradient(135deg, #406f55 0%, #2f5f47 100%);
  border-color: rgba(44, 89, 67, 0.55);
  color: #f6fbf8;
  box-shadow: 0 8px 16px rgba(34, 67, 51, 0.18);
}

.practitioner-page .btn.primary:hover {
  background: linear-gradient(135deg, #345f49 0%, #2a523f 100%);
}

.practitioner-page + .notice-card {
  border-color: rgba(123, 96, 72, 0.24);
  background: linear-gradient(180deg, #f4eee6 0%, #eee6dc 100%);
}

.practitioner-page + .notice-card h2 {
  color: #2f4a3f;
}

.cta-row {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.btn {
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(30, 92, 61, 0.42);
  background: #f7fcf9;
  color: var(--jade-900);
  padding: 0.52rem 0.92rem;
  font-weight: 600;
  font-size: 0.93rem;
  transition: transform 120ms ease, background-color 120ms ease, border-color 120ms ease, color 120ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: #eff8f2;
}

.btn.primary {
  background: #f0f8f3;
}

.btn.secondary {
  background: #fff;
}

.contact-card {
  background: linear-gradient(180deg, #f8fcf9 0%, #edf5f0 100%);
}

.contact-card h2,
.notice-card h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--jade-900);
}

.notice-card {
  background: var(--mint-100);
}

.cn {
  font-family: 'Noto Serif SC', serif;
}

.map {
  margin-top: 0.9rem;
  width: 100%;
  min-height: 220px;
  border-radius: 12px;
  border: 1px solid rgba(31, 90, 60, 0.24);
}

.studio-page {
  background:
    radial-gradient(circle at 85% -20%, rgba(29, 94, 65, 0.09) 0%, rgba(29, 94, 65, 0) 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 251, 248, 0.95));
}

.studio-hero,
.doctor-profile,
.studio-block {
  border: 1px solid rgba(30, 92, 61, 0.18);
  border-radius: 12px;
  background: #fff;
}

.studio-hero {
  margin-top: 1rem;
  padding: 0.75rem;
  display: grid;
  gap: 0.8rem;
  animation: studio-rise 420ms ease both;
}

.studio-hero-media,
.studio-photo,
.doctor-photo {
  margin: 0;
}

.studio-hero img,
.studio-photo img,
.doctor-photo img {
  width: 100%;
  display: block;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(31, 90, 60, 0.22);
  object-fit: contain;
  background: #f2f6f3;
}

.studio-hero img {
  aspect-ratio: auto;
}

.studio-hero figcaption,
.studio-photo figcaption {
  margin-top: 0.38rem;
  color: var(--text-600);
  font-size: 0.84rem;
}

.studio-hero-copy h2,
.doctor-copy h2,
.studio-block h2 {
  margin-top: 0;
}

.studio-points,
.doctor-points {
  margin-top: 0.4rem;
  padding-left: 1.1rem;
}

.studio-points li,
.doctor-points li {
  margin-top: 0.26rem;
}

.studio-gallery {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.75rem;
}

.studio-photo {
  padding: 0.52rem;
  border-radius: 12px;
  border: 1px solid rgba(30, 92, 61, 0.16);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
  box-shadow: 0 8px 20px rgba(17, 48, 33, 0.06);
  animation: studio-rise 460ms ease both;
}

.studio-photo:nth-child(2) {
  animation-delay: 90ms;
}

.studio-photo:nth-child(3) {
  animation-delay: 140ms;
}

.studio-photo img,
.doctor-photo img {
  aspect-ratio: auto;
}

.doctor-profile {
  margin-top: 1rem;
  padding: 0.75rem;
  display: grid;
  gap: 0.85rem;
  background: linear-gradient(135deg, #ffffff 0%, #f1f8f4 100%);
  animation: studio-rise 480ms ease both;
}

.studio-contact-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.studio-block {
  padding: 0.8rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcf9 100%);
}

@keyframes studio-rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-footer {
  width: min(1080px, 100% - 2rem);
  margin: 0 auto 1.3rem;
  padding: 0.82rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(38, 107, 74, 0.25);
  background: #f5faf7;
  color: #2b4b3b;
  font-size: 0.86rem;
}

@media (min-width: 760px) {
  .top-inner {
    min-height: 66px;
  }

  .brand-banner {
    min-height: clamp(190px, 28vw, 245px);
    padding: 1.05rem 1.2rem;
  }

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

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

  .video-grid.single {
    grid-template-columns: 1fr;
  }

  .content-card,
  .contact-card,
  .notice-card,
  .video-gallery {
    padding: 1.28rem;
  }

  .practitioner-panel {
    display: grid;
    grid-template-columns: minmax(240px, 285px) 1fr;
    gap: 0.95rem;
    align-items: start;
    padding: 0.84rem;
  }

  .practitioner-body {
    margin-top: 0;
  }

  .practitioner-photo img {
    aspect-ratio: 3 / 4;
  }

  .studio-hero {
    grid-template-columns: 1.25fr 1fr;
    align-items: center;
  }

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

  .doctor-profile {
    grid-template-columns: 280px 1fr;
    align-items: center;
  }

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

@media (min-width: 1024px) {
  .page-shell {
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: start;
  }

  .brand-banner {
    grid-column: 1 / -1;
    text-align: center;
    justify-items: center;
  }

  .menu-panel {
    grid-column: 1;
    position: sticky;
    top: 5rem;
  }

  .menu-list {
    grid-template-columns: 1fr;
  }

  .site-intro,
  .content-card,
  .video-gallery,
  .notice-card,
  .pair {
    grid-column: 2;
  }

  .pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.05rem;
  }

  .pair .content-card,
  .pair .notice-card,
  .pair .contact-card {
    grid-column: auto;
  }

  .practitioner-page {
    padding: 1.45rem;
  }

  .practitioner-panel {
    grid-template-columns: minmax(280px, 320px) 1fr;
    gap: 1.1rem;
  }

  .studio-page {
    padding: 1.35rem;
  }
}
