@charset "UTF-8";

/* ============================
   Reset & Base
   ============================ */
*,
*::before,
*::after { box-sizing: border-box; }

body, div, dl, dt, dd, ul, ol, li,
h1, h2, h3, h4, h5, h6, p, pre,
form, fieldset, input, textarea, blockquote, th, td {
  margin: 0;
  padding: 0;
}
ul { list-style: none; }
table { border-collapse: collapse; border-spacing: 0; }
img { border: 0; max-width: 100%; height: auto; vertical-align: middle; }
h1, h2, h3, h4, h5, h6 { font-size: 100%; font-weight: 700; }
button { font: inherit; cursor: pointer; }

:root {
  --color-primary: #F08300;
  --color-primary-dark: #c66c00;
  --color-primary-light: #ffe9cf;
  --color-text: #2b2118;
  --color-muted: #6f5c4a;
  --color-bg: #ffffff;
  --color-bg-soft: #fff8ee;
  --color-border: #e9d8bf;
  --color-accent: #5a3b1a;
  --shadow-md: 0 4px 18px rgba(192, 110, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(192, 110, 0, 0.14);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --container: 1080px;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic UI",
               "Meiryo", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

a {
  color: var(--color-primary-dark);
  text-decoration: none;
  transition: opacity .2s, color .2s;
}
a:hover { opacity: .75; }

img.rounded { border-radius: var(--radius-md); }

/* ============================
   Layout helpers
   ============================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.section-soft { background: var(--color-bg-soft); }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .25em;
  color: var(--color-primary-dark);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.4;
  margin-bottom: 28px;
}
.section-title small {
  display: block;
  font-size: 12px;
  color: var(--color-primary);
  letter-spacing: .3em;
  margin-bottom: 6px;
  font-weight: 700;
}

.text-center { text-align: center; }
.text-right  { text-align: right; }

/* ============================
   Top bar / Header
   ============================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 20px;
  gap: 16px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--color-text);
}
.site-logo__mark {
  display: inline-flex;
  height: 56px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.site-logo__mark img {
  height: 56px;
  width: auto;
  max-width: none;
  display: block;
}
/* The logo image already contains the clinic name; hide the duplicate text label next to it */
.site-logo > span:not(.site-logo__mark) {
  display: none;
}
@media (max-width: 600px) {
  .site-logo__mark, .site-logo__mark img { height: 44px; }
  .site-logo__sub { display: none; }
}
.site-logo__sub {
  display: block;
  font-size: 11px;
  color: var(--color-muted);
  letter-spacing: .15em;
  font-weight: 500;
}

.global-nav { display: flex; align-items: center; gap: 4px; }
.global-nav ul {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: nowrap;
}
.global-nav li {
  flex: 0 0 auto;
}
.global-nav li a {
  display: inline-block;
  padding: 8px 12px;
  font-size: 14px;
  color: var(--color-text);
  border-radius: 999px;
  font-weight: 500;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.global-nav li a:hover { background: var(--color-primary-light); color: var(--color-primary-dark); opacity: 1; }
.global-nav li a.is-active {
  background: var(--color-primary);
  color: #fff;
}
.global-nav .nav-tel {
  margin-left: 12px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 12px;
  color: var(--color-muted);
  line-height: 1.4;
  white-space: nowrap;
  flex: 0 0 auto;
}
.global-nav .nav-tel a {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary-dark);
  letter-spacing: .03em;
  white-space: nowrap;
}
.global-nav .nav-tel span { white-space: nowrap; }
/* タブレット〜中型デスクトップでフォント・余白を少し縮めて1行表示を維持 */
@media (max-width: 1180px) {
  .global-nav li a { padding: 8px 10px; font-size: 13px; }
  .global-nav .nav-tel { margin-left: 8px; font-size: 11px; }
  .global-nav .nav-tel a { font-size: 16px; }
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  position: relative;
}
.menu-toggle span {
  position: absolute;
  left: 9px;
  right: 9px;
  height: 2px;
  background: var(--color-text);
  transition: .25s;
}
.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 20px; }
.menu-toggle span:nth-child(3) { top: 26px; }
.menu-toggle.is-open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* ============================
   Hero / Top
   ============================ */
.hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(40, 20, 0, 0.35), rgba(40, 20, 0, 0.55)),
    url("../images/slide/01.png") center/cover no-repeat,
    linear-gradient(135deg, #f8a04a 0%, #F08300 50%, #c66c00 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.18), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.14), transparent 45%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  padding: 60px 24px;
  max-width: 720px;
}
.hero__lead {
  font-size: 15px;
  letter-spacing: .35em;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.hero__title {
  font-size: clamp(28px, 5.4vw, 46px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .04em;
  text-shadow: 0 4px 20px rgba(0,0,0,.3);
  margin-bottom: 18px;
}
.hero__sub {
  font-size: 14px;
  letter-spacing: .15em;
  margin-bottom: 36px;
  text-shadow: 0 2px 10px rgba(0,0,0,.25);
}
.hero__cta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* page header (sub pages) */
.page-header {
  position: relative;
  padding: 80px 24px 60px;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(60, 30, 0, 0.45), rgba(60, 30, 0, 0.6)),
    url("../images/back-img2.png") center/cover no-repeat,
    linear-gradient(135deg, #f8a04a 0%, #F08300 60%, #c66c00 100%);
}
.page-header h1 {
  font-size: clamp(24px, 4vw, 36px);
  letter-spacing: .08em;
  margin-bottom: 6px;
  text-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.page-header h1 + p {
  font-size: 12px;
  letter-spacing: .35em;
  opacity: .9;
}

/* ============================
   Buttons
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
  border: 2px solid transparent;
  background: var(--color-primary);
  color: #fff !important;
  letter-spacing: .05em;
  box-shadow: var(--shadow-md);
  transition: transform .15s, box-shadow .15s, background .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); opacity: 1; background: var(--color-primary-dark); }
.btn--ghost {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255,255,255,.7);
}
.btn--ghost:hover { background: rgba(255,255,255,.15); }
.btn--outline {
  background: transparent;
  color: var(--color-primary-dark) !important;
  border-color: var(--color-primary);
}
.btn--outline:hover { background: var(--color-primary-light); }
.btn--lg { padding: 16px 36px; font-size: 16px; }
.btn--block { display: flex; width: 100%; }

/* ============================
   Card / Box
   ============================ */
.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.card + .card { margin-top: 24px; }
/* Grid 内では横並びになるので margin-top: 24px は不要（カード高さがズレる原因） */
.grid > .card + .card { margin-top: 0; }

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

@media (max-width: 768px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* ============================
   Feature blocks (top)
   ============================ */
.feature {
  text-align: center;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: transform .2s, box-shadow .2s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-size: 26px;
  margin-bottom: 14px;
}
.feature h3 { font-size: 16px; margin-bottom: 8px; }
.feature p { font-size: 14px; color: var(--color-muted); line-height: 1.7; }

/* ============================
   Steps (flow)
   ============================ */
.flow-list { display: grid; gap: 16px; }
.flow-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 20px 24px;
  align-items: start;
  position: relative;
}
.flow-item__step {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
}
.flow-item__step small { font-size: 10px; letter-spacing: .15em; margin-bottom: 4px; opacity: .85; }
.flow-item__photo {
  width: 120px;
  border-radius: var(--radius-md);
  overflow: hidden;
  align-self: stretch;
  background: var(--color-bg-soft);
  display: flex; align-items: center; justify-content: center;
}
.flow-item__photo img {
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
  display: block;
}
.flow-item--with-photo {
  grid-template-columns: 86px 1fr 120px;
}
@media (max-width: 600px) {
  .flow-item--with-photo { grid-template-columns: 86px 1fr; }
  .flow-item__photo { display: none; }
}

/* service item with photos */
.service-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.service-photos img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
}
@media (max-width: 600px) {
  .service-photos { grid-template-columns: repeat(2, 1fr); }
}
.flow-item h3 { font-size: 18px; margin-bottom: 6px; color: var(--color-primary-dark); }
.flow-item p { font-size: 14px; color: var(--color-muted); line-height: 1.8; }

/* ============================
   Service / Menu
   ============================ */
.menu-section { padding: 32px 0; }
.menu-section h2 {
  font-size: 22px;
  margin-bottom: 18px;
  padding-left: 14px;
  border-left: 5px solid var(--color-primary);
}
.menu-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 18px;
  align-items: center;
}
.menu-card__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.menu-card__title { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.menu-card__desc { font-size: 13px; color: var(--color-muted); }
.menu-card__price {
  font-size: 13px;
  color: var(--color-primary-dark);
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .menu-card { grid-template-columns: 48px 1fr; }
  .menu-card__price { grid-column: 1 / -1; }
}

/* ============================
   Info / Hours table
   ============================ */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 16px 0;
}
.info-table th, .info-table td {
  border: 1px solid var(--color-border);
  padding: 10px 6px;
  text-align: center;
}
.info-table th {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-weight: 700;
}
.info-table td.off { color: #c0392b; }

.info-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.info-card h3 { font-size: 18px; margin-bottom: 12px; }
.info-card .tel-big {
  display: inline-block;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary-dark);
  letter-spacing: .04em;
  margin: 8px 0 4px;
}
.info-card small { color: var(--color-muted); font-size: 12px; }

.map-embed {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* ============================
   Staff
   ============================ */
.staff-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 200px 1fr;
}
.staff-card__photo {
  background: linear-gradient(135deg, #ffd9a8, #F08300);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  height: 260px;
  align-self: start;
  overflow: hidden;
}
.staff-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.staff-card__body { padding: 24px; }
.staff-card__name { font-size: 22px; font-weight: 700; }
.staff-card__role { color: var(--color-primary-dark); font-size: 13px; letter-spacing: .15em; margin: 4px 0 10px; }
.staff-card__qual { font-size: 13px; color: var(--color-muted); margin-bottom: 12px; }
.staff-card__bio { font-size: 14px; line-height: 1.85; word-break: auto-phrase; line-break: strict; }

@media (max-width: 768px) {
  .staff-card { grid-template-columns: 1fr; }
  .staff-card__photo { height: auto; aspect-ratio: 16 / 10; font-size: 48px; }
}

/* ============================
   Recruitment
   ============================ */
.recruit-hero {
  padding: 56px 24px;
  background: linear-gradient(135deg, #fff3e2, #ffe1bf);
  border-radius: var(--radius-lg);
  text-align: center;
  margin-bottom: 36px;
}
.recruit-hero h2 { font-size: 26px; margin-bottom: 14px; }
.recruit-hero p { color: var(--color-accent); font-size: 15px; }

.recruit-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.recruit-table th, .recruit-table td { border: 1px solid var(--color-border); padding: 14px; vertical-align: top; }
.recruit-table th {
  background: var(--color-primary-light);
  width: 30%;
  text-align: left;
  color: var(--color-primary-dark);
  font-weight: 700;
}

@media (max-width: 768px) {
  .recruit-table thead { display: none; }
  .recruit-table th, .recruit-table td { display: block; width: 100%; }
}

/* ============================
   Activity (Instagram + Blog)
   ============================ */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ig-grid a {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffd9a8, #F08300);
  color: #fff;
  font-size: 28px;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: transform .2s, box-shadow .2s;
}
.ig-grid a:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); opacity: 1; }
@media (max-width: 600px) {
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
}

/* JSON 駆動の Instagram 埋め込みグリッド */
.ig-embed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}
.ig-embed-grid blockquote.instagram-media {
  margin: 0 !important;
}
@media (max-width: 900px) {
  .ig-embed-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .ig-embed-grid { grid-template-columns: 1fr; }
}

/* フォールバック表示時もアイコングリッドのスタイルを継承 */
.ig-fallback {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ig-fallback a {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffd9a8, #F08300);
  color: #fff;
  font-size: 28px;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: transform .2s, box-shadow .2s;
}
.ig-fallback a:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); opacity: 1; }
@media (max-width: 600px) {
  .ig-fallback { grid-template-columns: repeat(2, 1fr); }
}

/* Instagram セクションの見出し */
.ig-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin: 8px 0 16px;
}
.ig-section-head h3 {
  margin: 0;
  font-size: 20px;
  color: var(--color-heading, #5a3a1d);
}
.ig-section-head .badge-popular {
  display: inline-block;
  background: linear-gradient(135deg, #f093fb, #f5576c);
  color: #fff;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: middle;
  white-space: nowrap;
}
.ig-section-head .badge-latest {
  display: inline-block;
  background: linear-gradient(135deg, #43cea2, #185a9d);
  color: #fff;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: middle;
  white-space: nowrap;
}
.ig-section-head h3 { white-space: nowrap; }

.blog-list { display: grid; gap: 16px; }
.blog-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: start;
  transition: transform .2s, box-shadow .2s;
}
.blog-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.blog-item__date {
  font-size: 12px;
  color: var(--color-primary-dark);
  letter-spacing: .12em;
  font-weight: 700;
  padding-top: 4px;
}
.blog-item h3 { font-size: 16px; margin-bottom: 6px; color: var(--color-text); }
.blog-item p { font-size: 13px; color: var(--color-muted); line-height: 1.7; }
.blog-item__tag {
  display: inline-block;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-size: 11px;
  padding: 2px 10px;
  border-radius: 999px;
  margin-bottom: 6px;
  letter-spacing: .1em;
}
@media (max-width: 600px) { .blog-item { grid-template-columns: 1fr; } }

/* ============================
   Form
   ============================ */
.form { display: grid; gap: 18px; }
.form label { font-size: 13px; font-weight: 700; color: var(--color-text); display: block; margin-bottom: 4px; }
.form .req { color: #c0392b; margin-left: 4px; font-size: 12px; }
.form input[type=text],
.form input[type=tel],
.form input[type=email],
.form textarea,
.form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 15px;
  font-family: inherit;
  color: var(--color-text);
  transition: border-color .15s, box-shadow .15s;
}
.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

/* ============================
   Footer
   ============================ */
.site-footer {
  background: #2b2118;
  color: #ffe9cf;
  padding: 56px 24px 28px;
  text-align: center;
}
.site-footer__logo {
  display: inline-flex;
  width: 80px; height: 80px;
  align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.site-footer__logo img { max-height: 80px; width: auto; filter: brightness(0) invert(1); opacity: .9; }
.site-footer__name { font-size: 18px; font-weight: 700; margin-bottom: 6px; color: #fff; }
.site-footer__addr { font-size: 13px; line-height: 1.8; opacity: .8; }
.site-footer__sns { display: flex; justify-content: center; gap: 12px; margin: 24px 0; }
.site-footer__sns a {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08);
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  transition: background .2s, transform .2s;
}
.site-footer__sns a:hover { background: var(--color-primary); transform: translateY(-2px); opacity: 1; }
.site-footer__copy { font-size: 12px; opacity: .6; margin-top: 12px; }

/* ============================
   Floating reservation CTA (mobile)
   ============================ */
.fab-reserve {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 60;
  background: var(--color-primary);
  color: #fff !important;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.fab-reserve:hover { opacity: 1; transform: translateY(-2px); }

/* ============================
   Responsive nav
   ============================ */
@media (max-width: 1080px) {
  .menu-toggle { display: block; }
  .global-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    padding: 16px;
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-110%);
    transition: transform .25s ease;
    align-items: stretch;
    box-shadow: var(--shadow-lg);
  }
  .global-nav.is-open { transform: translateY(0); }
  .global-nav ul {
    flex-direction: column;
    gap: 4px;
    width: 100%;
  }
  .global-nav li a {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border-bottom: 1px solid var(--color-border);
  }
  .global-nav .nav-tel {
    margin: 12px 0 0;
    align-items: center;
  }
}

/* ============================
   Utility
   ============================ */
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 8px !important; }
.mt-4 { margin-top: 16px !important; }
.mt-6 { margin-top: 24px !important; }
.mt-8 { margin-top: 32px !important; }
.mb-2 { margin-bottom: 8px !important; }
.mb-4 { margin-bottom: 16px !important; }
.mb-6 { margin-bottom: 24px !important; }
.mb-8 { margin-bottom: 32px !important; }
.muted { color: var(--color-muted); }
.fs-sm { font-size: 13px; }
.fs-lg { font-size: 17px; }

/* ============================
   Price Table
   ============================ */
.table-wrap {
  overflow-x: auto;
  margin: 12px 0 4px;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 360px;
}
.price-table thead th {
  background: var(--color-primary, #c98852);
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.price-table tbody th {
  background: #faf3eb;
  color: #5a3a1d;
  text-align: left;
  padding: 10px 12px;
  border: 1px solid #ecdcc8;
  font-weight: 600;
  white-space: nowrap;
}
.price-table tbody td {
  padding: 10px 12px;
  border: 1px solid #ecdcc8;
  text-align: center;
  background: #fff;
}
.price-table tbody tr:nth-child(even) td {
  background: #fcfaf6;
}
