:root {
  --brand: #7ad9bb;
  --brand-soft: #b9e2c2;
  --brand-pale: #eefaf6;
  --brand-deep: #183832;
  --ink: #1d302c;
  --muted: #61726e;
  --line: #d8e9e3;
  --white: #ffffff;
  --shadow-sm: 0 8px 26px rgba(24, 56, 50, 0.08);
  --shadow-lg: 0 24px 70px rgba(24, 56, 50, 0.14);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --page: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 8%, rgba(122, 217, 187, 0.13), transparent 28%),
    radial-gradient(circle at 92% 34%, rgba(185, 226, 194, 0.18), transparent 30%);
  z-index: -1;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--brand-deep);
  transform: translateY(-140%);
}
.skip-link:focus { transform: translateY(0); }

.container { width: var(--page); margin-inline: auto; }
.section { padding: 96px 0; }
.section-soft { background: var(--brand-pale); }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: #2c6d5f;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.section-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--brand);
}

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.28; letter-spacing: -0.025em; line-break: strict; word-break: normal; text-wrap: balance; }
h1 { font-size: clamp(40px, 6vw, 72px); }
h2 { margin-bottom: 18px; font-size: clamp(30px, 4vw, 48px); }
h3 { margin-bottom: 10px; font-size: 22px; }
.lead { color: var(--muted); font-size: clamp(17px, 2vw, 20px); }
.lead, .section-head p { text-wrap: pretty; }
.no-break { white-space: nowrap; }
.title-line { display: block; }
.hero-points { display: grid; gap: 7px; max-width: 720px; margin: 0 0 28px; padding-left: 1.25em; color: var(--muted); font-size: clamp(17px, 2vw, 20px); list-style: disc; }
.hero-points li { padding-left: 3px; text-wrap: pretty; }
.hero-points li::marker { color: #318b74; font-size: 1.1em; }
.section-points { margin-bottom: 0; font-size: 16px; }
.mini-points { display: grid; gap: 2px; margin: 5px 0 0; padding-left: 1.15em; color: var(--muted); font-size: 13px; font-weight: 500; line-height: 1.55; list-style: disc; }
.mini-points li { padding-left: 2px; text-wrap: pretty; }
.mini-points li::marker { color: #318b74; }
.muted { color: var(--muted); }
.center { text-align: center; }
.section-head { max-width: 700px; margin-bottom: 40px; }
.section-head.center { margin-inline: auto; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--brand-deep);
  background: var(--brand);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(24, 56, 50, 0.16); }
.button:focus-visible, .nav-link:focus-visible, .menu-toggle:focus-visible {
  outline: 3px solid rgba(24, 56, 50, 0.28);
  outline-offset: 3px;
}
.button-secondary { border-color: var(--line); background: var(--white); }
.button-dark { color: var(--white); background: var(--brand-deep); }
.button-sm { min-height: 42px; padding: 8px 17px; font-size: 14px; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(216, 233, 227, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}
.header-inner {
  display: grid;
  min-height: 78px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 188px; height: auto; }
.desktop-nav { display: flex; justify-content: center; gap: 2px; }
.nav-link {
  padding: 9px 11px;
  border-radius: 999px;
  color: #40534e;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--brand-deep); background: var(--brand-pale); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--brand-deep);
}
.mobile-menu { display: none; padding: 8px 0 20px; }
.mobile-menu.is-open { display: grid; }
.mobile-menu .nav-link { padding: 12px 14px; border-radius: 12px; }

.hero { padding: 52px 0 74px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: start; gap: 48px; }
.hero-grid > div:first-child { padding-top: 16px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 7px 13px;
  border: 1px solid rgba(122, 217, 187, 0.55);
  border-radius: 999px;
  color: #285e52;
  background: var(--brand-pale);
  font-size: 14px;
  font-weight: 800;
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 5px rgba(122,217,187,.2); }
.hero h1 { max-width: 700px; margin-bottom: 22px; }
.hero h1 span { color: #408d7b; }
.hero-copy { max-width: 590px; margin-bottom: 28px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 18px; margin: 28px 0 0; padding: 0; list-style: none; }
.trust-list li { display: inline-flex; align-items: center; gap: 8px; color: #40534e; font-size: 14px; font-weight: 700; }
.trust-list li::before { content: "✓"; display: grid; width: 22px; height: 22px; place-items: center; border-radius: 50%; color: var(--brand-deep); background: var(--brand-soft); }
.hero-visual { position: relative; width: 100%; max-width: 500px; justify-self: end; padding: 16px 16px 0 0; }
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0 0 8% 9%;
  border-radius: 44px;
  background: var(--brand-soft);
  transform: rotate(3deg);
}
.hero-visual > img { position: relative; width: 100%; aspect-ratio: 4 / 4.25; object-fit: cover; border-radius: 32px; box-shadow: var(--shadow-lg); }
.hero-note {
  position: absolute;
  right: -12px;
  bottom: 28px;
  z-index: 2;
  max-width: 230px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 20px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}
.hero-note strong { display: block; font-size: 18px; }
.hero-note span { color: var(--muted); font-size: 13px; }

.quick-booking { margin-top: -34px; position: relative; z-index: 3; }
.quick-booking-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}
.quick-booking h2 { margin: 0 0 2px; font-size: 22px; }
.quick-booking p { margin: 0; color: var(--muted); font-size: 14px; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card, .price-card, .location-card, .content-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.feature-card { padding: 28px; }
.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 15px;
  color: var(--brand-deep);
  background: var(--brand-soft);
  font-size: 22px;
  font-weight: 900;
}
.feature-card p { margin-bottom: 0; color: var(--muted); }

.split { display: grid; grid-template-columns: 0.92fr 1.08fr; align-items: center; gap: 64px; }
.image-stack { position: relative; min-height: 520px; }
.image-stack img { position: absolute; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow-lg); }
.image-stack img:first-child { inset: 0 20% 15% 0; width: 80%; height: 85%; }
.image-stack img:last-child { right: 0; bottom: 0; width: 45%; height: 46%; border: 8px solid var(--white); }
.check-list { display: grid; gap: 14px; margin: 26px 0 30px; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 30px 1fr; gap: 10px; align-items: start; }
.check-list li::before { content: "✓"; display: grid; width: 26px; height: 26px; place-items: center; border-radius: 8px; background: var(--brand-soft); font-weight: 900; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-card { position: relative; padding: 28px; }
.price-card.is-featured { border: 2px solid var(--brand); transform: translateY(-8px); }
.price-badge { display: inline-block; margin-bottom: 18px; padding: 5px 10px; border-radius: 999px; color: var(--brand-deep); background: var(--brand-soft); font-size: 12px; font-weight: 900; }
.price-time { font-size: 26px; font-weight: 900; }
.price { margin: 7px 0 10px; color: #2f7464; font-size: 36px; font-weight: 900; line-height: 1; }
.price small { font-size: 15px; }
.price-card p { color: var(--muted); }

.location-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.location-card { overflow: hidden; }
.location-card img { width: 100%; height: 260px; object-fit: cover; }
.location-body { padding: 26px; }
.location-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.pill { display: inline-flex; padding: 5px 10px; border-radius: 999px; color: #365a52; background: var(--brand-pale); font-size: 13px; font-weight: 800; }

.testimonial-strip {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: center;
  padding: 42px;
  border-radius: var(--radius-lg);
  color: var(--brand-deep);
  background: linear-gradient(135deg, var(--brand-soft), #eaf8f1);
}
.quote { margin: 0; font-size: clamp(22px, 3vw, 34px); font-weight: 800; line-height: 1.5; }

.site-footer { padding: 70px 0 110px; color: #dfeee9; background: var(--brand-deep); }
.footer-grid { display: grid; grid-template-columns: 1.1fr 0.8fr 1.1fr; gap: 44px; }
.footer-brand { color: var(--white); font-size: 24px; font-weight: 900; }
.footer-title { color: var(--white); font-size: 15px; font-weight: 900; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: #dfeee9; text-decoration: none; }
.footer-links a:hover { color: var(--brand); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); color: #aac2bb; font-size: 13px; }

.mobile-actions { display: none; }

/* Inner pages */
.page-hero {
  padding: 72px 0 64px;
  background: linear-gradient(145deg, var(--brand-pale), rgba(185, 226, 194, 0.42));
}
.page-hero-grid { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 32px; }
.page-hero h1 { max-width: 820px; margin-bottom: 16px; font-size: clamp(38px, 5vw, 62px); }
.page-hero p { max-width: 720px; margin-bottom: 0; }
.page-hero .hero-points { margin-bottom: 0; }
.breadcrumb { margin-bottom: 14px; color: #376b60; font-size: 14px; font-weight: 800; }
.breadcrumb a { text-decoration: none; }
.stat-row { display: flex; flex-wrap: wrap; gap: 10px; }
.stat-chip { padding: 10px 14px; border: 1px solid rgba(24,56,50,.1); border-radius: 14px; background: rgba(255,255,255,.72); font-size: 13px; font-weight: 800; }

.notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--brand-pale);
}
.notice-icon { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 11px; background: var(--brand-soft); font-weight: 900; }
.notice p:last-child { margin-bottom: 0; }

.tab-shell { border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: var(--shadow-sm); overflow: hidden; }
.service-tab-shell { overflow: visible; }
.service-tab-shell > .tab-list { border-radius: 24px 24px 0 0; }
.tab-list { display: flex; gap: 8px; padding: 10px; border-bottom: 1px solid var(--line); background: var(--brand-pale); overflow-x: auto; }
.tab-button, .filter-button {
  min-height: 44px;
  padding: 9px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #40534e;
  background: transparent;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}
.tab-button[aria-selected="true"], .filter-button[aria-pressed="true"] { color: var(--brand-deep); background: var(--white); box-shadow: 0 5px 16px rgba(24,56,50,.1); }
.tab-button:focus-visible, .filter-button:focus-visible { outline: 3px solid rgba(122,217,187,.4); outline-offset: 2px; }
.tab-panel { padding: 34px; }
.tab-panel[hidden] { display: none; }
.filter-wrap { display: grid; gap: 18px; margin-bottom: 32px; }
.filter-group { display: flex; align-items: center; gap: 12px; }
.filter-label { min-width: 74px; font-size: 14px; font-weight: 900; }
.filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-button { min-height: 40px; border-color: var(--line); background: var(--white); }
.filter-button[aria-pressed="true"] { border-color: var(--brand); background: var(--brand-soft); }
.result-count { margin: 0 0 18px; color: var(--muted); font-size: 14px; }

.staff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.staff-card { overflow: hidden; padding-top: 22px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: var(--shadow-sm); }
.staff-card[hidden] { display: none; }
.staff-photo { position: relative; overflow: hidden; width: min(74%, 210px); margin: 0 auto; aspect-ratio: 1; border: 4px solid var(--white); border-radius: 50%; background: var(--brand-pale); box-shadow: 0 0 0 1px var(--line), 0 12px 28px rgba(24,56,50,.12); }
.staff-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; transition: transform 350ms ease; }
.staff-card:hover .staff-photo img { transform: scale(1.025); }
.staff-name-row { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; }
.staff-shift { display: inline-flex; align-items: center; padding: 4px 9px; border-radius: 999px; color: var(--brand-deep); background: var(--brand-soft); font-size: 11px; font-weight: 900; white-space: nowrap; }
.staff-body { padding: 18px; }
.staff-head { display: flex; align-items: start; justify-content: space-between; gap: 8px; }
.staff-head h2 { margin-bottom: 4px; font-size: 24px; }
.staff-name-row h2 { margin: 0; }
.staff-branch { color: #377164; font-size: 13px; font-weight: 900; }
.staff-time { margin: 10px 0; color: var(--muted); font-size: 14px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0 16px; }
.tag { padding: 4px 8px; border-radius: 8px; color: #38564f; background: var(--brand-pale); font-size: 11px; font-weight: 800; }
.staff-card .button { width: 100%; }
.empty-state { padding: 48px 24px; border: 1px dashed var(--line); border-radius: 20px; text-align: center; background: var(--brand-pale); }

/* Services and calculator */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-guide-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin: -8px 0 28px; }
.service-guide-tab { min-height: 48px; padding: 11px 20px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--ink); font: inherit; font-weight: 800; cursor: pointer; transition: .2s ease; }
.service-guide-tab:hover, .service-guide-tab:focus-visible { border-color: var(--primary); transform: translateY(-1px); }
.service-guide-tab.is-active, .service-guide-tab[aria-selected="true"] { border-color: var(--primary); background: var(--primary); color: #153a31; box-shadow: 0 10px 24px rgba(54, 133, 111, .15); }
.service-guide-panel[hidden] { display: none; }
.service-card { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: 0 14px 36px rgba(42, 91, 78, .06); }
.service-card img { width: 100%; height: 210px; object-fit: cover; }
.service-video-trigger { position: relative; display: block; width: 100%; padding: 0; overflow: hidden; border: 0; background: #dff4eb; cursor: pointer; }
.service-video-trigger img { display: block; transition: transform .28s ease, filter .28s ease; }
.service-video-trigger:hover img, .service-video-trigger:focus-visible img { transform: scale(1.025); filter: brightness(.86); }
.service-video-trigger:focus-visible { outline: 3px solid #24745f; outline-offset: -3px; }
.service-video-badge { position: absolute; right: 14px; bottom: 14px; display: inline-flex; align-items: center; gap: 7px; padding: 8px 12px; border-radius: 999px; background: rgba(17, 50, 42, .9); color: #fff; font-size: 14px; font-weight: 900; box-shadow: 0 8px 24px rgba(0, 0, 0, .22); }
.service-video-badge span { display: grid; place-items: center; width: 24px; height: 24px; padding-left: 2px; border-radius: 50%; background: var(--primary); color: #153a31; font-size: 11px; }
.service-card-body { padding: 22px; }
.service-card-body h3 { margin-bottom: 9px; }
.service-card-body p { margin-bottom: 0; color: var(--muted); }
.service-card-meta { display: inline-flex; margin-bottom: 12px; padding: 6px 10px; border-radius: 999px; background: var(--primary-soft); color: #246f5d; font-size: 14px; font-weight: 800; }
.service-card.no-image { position: relative; min-height: 230px; background: linear-gradient(145deg, #fff 0%, #f4fcf8 100%); }
.service-card.no-image::before { content: ""; display: block; width: 48px; height: 4px; margin: 24px 22px -4px; border-radius: 999px; background: var(--primary); }
.service-card.no-image .service-card-body { padding-top: 24px; }
.service-video-text-button { margin-top: 18px; padding: 10px 14px; border: 1px solid var(--primary); border-radius: 999px; background: var(--primary-soft); color: #205f50; font: inherit; font-weight: 900; cursor: pointer; }
.service-video-text-button:hover, .service-video-text-button:focus-visible { background: var(--primary); }
.modal-open { overflow: hidden; }
.service-video-modal[hidden] { display: none; }
.service-video-modal { position: fixed; z-index: 1000; inset: 0; display: grid; place-items: center; padding: 24px; }
.service-video-backdrop { position: absolute; inset: 0; background: rgba(10, 30, 25, .78); backdrop-filter: blur(5px); }
.service-video-dialog { position: relative; z-index: 1; width: min(900px, 100%); max-height: calc(100vh - 48px); overflow: auto; padding: 26px; border: 1px solid rgba(255, 255, 255, .28); border-radius: 24px; background: #fff; box-shadow: 0 28px 80px rgba(0, 0, 0, .34); }
.service-video-close { position: absolute; z-index: 2; top: 16px; right: 16px; display: grid; place-items: center; width: 44px; height: 44px; border: 0; border-radius: 50%; background: #173b32; color: #fff; font: inherit; font-size: 30px; line-height: 1; cursor: pointer; }
.service-video-close:hover, .service-video-close:focus-visible { background: #287763; }
.service-video-heading { padding-right: 58px; }
.service-video-heading span { color: #2d7e69; font-size: 13px; font-weight: 900; letter-spacing: .08em; }
.service-video-heading h2 { margin: 5px 0 18px; font-size: clamp(24px, 4vw, 34px); }
.service-video-dialog video { display: block; width: 100%; max-height: 68vh; border-radius: 16px; background: #0c1714; }
.service-video-dialog > p { margin: 16px 0 0; color: var(--muted); font-size: 14px; }
.service-flow-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; counter-reset: service-flow; }
.service-flow-card { position: relative; min-height: 210px; padding: 72px 20px 22px; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(145deg, #fff 0%, #eefaf5 100%); }
.service-flow-card::before { content: attr(data-step); position: absolute; top: 20px; left: 20px; display: grid; place-items: center; min-width: 38px; height: 38px; padding: 0 8px; border-radius: 12px; background: var(--primary); color: #153a31; font-size: 14px; font-weight: 900; }
.service-flow-card h3 { margin-bottom: 10px; font-size: 20px; }
.service-flow-card p { margin: 0; color: var(--muted); font-size: 15px; }
.builder-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 26px; align-items: start; }
.builder-main { display: grid; gap: 20px; }
.menu-program-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 24px; border-radius: 20px; color: var(--white); background: var(--brand-deep); }
.menu-program-head.facial { margin-top: 18px; background: #306f60; }
.menu-program-head h3 { margin: 2px 0 0; color: inherit; font-size: 25px; }
.menu-program-head p { max-width: 380px; margin: 0; color: rgba(255,255,255,.78); font-size: 14px; text-align: right; }
.menu-program-kicker, .summary-eyebrow { font-size: 11px; font-weight: 900; letter-spacing: .14em; }
.builder-section { padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.builder-section-head { display: flex; align-items: start; gap: 12px; margin-bottom: 18px; }
.step-badge { display: grid; flex: 0 0 auto; width: 30px; height: 30px; place-items: center; border-radius: 10px; background: var(--brand-soft); font-size: 13px; font-weight: 900; }
.builder-section h3 { margin: 0; }
.option-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.option-grid.one { grid-template-columns: 1fr; }
.option-grid.three, .body-part-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.option-card { position: relative; display: grid; grid-template-columns: auto 1fr; gap: 11px; align-items: start; padding: 15px; border: 1px solid var(--line); border-radius: 14px; cursor: pointer; }
.option-card:hover { border-color: var(--brand); }
.option-card:has(input:checked) { border-color: #4cb899; background: var(--brand-pale); box-shadow: inset 0 0 0 1px #4cb899; }
.option-card input { width: 18px; height: 18px; margin: 3px 0 0; accent-color: #2c8f73; }
.option-card.compact { padding: 12px 14px; }
.option-card.is-recommended::after { content: "店家推薦"; position: absolute; top: -8px; right: 10px; padding: 3px 7px; border-radius: 999px; color: var(--brand-deep); background: var(--brand); font-size: 10px; font-weight: 900; }
.option-title { display: flex; justify-content: space-between; gap: 12px; font-weight: 900; }
.option-note { color: var(--muted); font-size: 13px; line-height: 1.55; }
.choice-heading { margin: 22px 0 10px; font-size: 15px; }
.choice-heading:first-of-type { margin-top: 0; }
.custom-input-row { display: flex; align-items: center; gap: 8px; margin: 9px 0 5px; }
.custom-duration-card .custom-input-row input { width: 110px; height: 40px; margin: 0; }
.number-field, .single-line-field { padding: 9px 11px; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); background: var(--white); }
.number-field:focus, .single-line-field:focus { outline: 3px solid rgba(122,217,187,.35); border-color: var(--brand); }
.selection-limit { margin: -3px 0 14px; padding: 10px 12px; border-radius: 10px; color: #245d50; background: var(--brand-pale); font-size: 13px; font-weight: 800; }
.supplemental-block { margin-top: 18px; padding: 17px; border-radius: 14px; background: var(--surface); }
.supplemental-block > strong { display: block; margin-bottom: 10px; }
.choice-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.choice-chips label { display: inline-flex; align-items: center; gap: 7px; min-height: 38px; padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); font-size: 13px; font-weight: 800; cursor: pointer; }
.choice-chips label:has(input:checked) { border-color: #4cb899; background: var(--brand-soft); }
.choice-chips input { accent-color: #2c8f73; }
.preference-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-bottom: 20px; }
.preference-group > strong { display: block; margin-bottom: 8px; font-size: 14px; }
.single-line-field { width: 100%; min-height: 46px; }
.menu-summary { position: sticky; top: 96px; align-self: start; max-height: calc(100vh - 116px); padding: 24px; overflow-y: auto; border-radius: 22px; color: var(--brand-deep); background: var(--brand-soft); box-shadow: var(--shadow-sm); scrollbar-width: thin; scrollbar-color: var(--brand) transparent; }
.menu-summary h3 { margin-bottom: 18px; }
.summary-line { display: flex; justify-content: space-between; gap: 14px; padding: 12px 0; border-bottom: 1px solid rgba(24,56,50,.12); }
.summary-total { display: flex; justify-content: space-between; align-items: end; gap: 14px; padding: 20px 0; }
.summary-total strong { font-size: 34px; line-height: 1; }
.selection-summary { min-height: 72px; margin: 8px 0 16px; color: #36534c; font-size: 13px; }
.menu-summary .button { width: 100%; }
.summary-line-button { margin-top: 9px; }
.menu-summary .button:disabled { cursor: not-allowed; opacity: .48; }
.clear-button { width: 100%; margin-top: 8px; padding: 9px; border: 0; color: #36534c; background: transparent; font-weight: 800; cursor: pointer; }
.field-label { display: block; margin-bottom: 7px; font-size: 14px; font-weight: 900; }
.text-field { width: 100%; min-height: 108px; padding: 13px; border: 1px solid var(--line); border-radius: 13px; color: var(--ink); background: var(--white); resize: vertical; }
.text-field:focus { outline: 3px solid rgba(122,217,187,.35); border-color: var(--brand); }

/* In-store checkout */
.checkout-modal[hidden] { display: none; }
.checkout-modal { position: fixed; z-index: 1100; inset: 0; display: grid; place-items: center; padding: 24px; }
.checkout-backdrop { position: absolute; inset: 0; background: rgba(9, 31, 26, .82); backdrop-filter: blur(6px); }
.checkout-dialog { position: relative; z-index: 1; width: min(1080px, 100%); max-height: calc(100vh - 48px); overflow-y: auto; padding: 30px; border: 1px solid rgba(255,255,255,.32); border-radius: 26px; background: #fff; box-shadow: 0 30px 90px rgba(0,0,0,.34); }
.checkout-close { position: absolute; z-index: 2; top: 18px; right: 18px; display: grid; width: 44px; height: 44px; place-items: center; border: 0; border-radius: 50%; color: #fff; background: var(--brand-deep); font: inherit; font-size: 30px; line-height: 1; cursor: pointer; }
.checkout-close:hover, .checkout-close:focus-visible { background: #287763; }
.checkout-heading { max-width: 760px; padding-right: 58px; }
.checkout-heading > span { color: #2b806a; font-size: 12px; font-weight: 900; letter-spacing: .14em; }
.checkout-heading h2 { margin: 5px 0 10px; font-size: clamp(30px, 5vw, 44px); }
.checkout-heading p { margin: 0 0 25px; color: var(--muted); }
.checkout-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: 24px; align-items: start; }
.checkout-panel { padding: 22px; border: 1px solid var(--line); border-radius: 19px; background: #fff; }
.checkout-panel.checkout-summary-panel { position: sticky; top: 0; background: var(--brand-pale); }
.checkout-panel h3 { margin: 0 0 16px; font-size: 20px; }
.checkout-branch-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 22px; }
.checkout-branch-options label { display: flex; align-items: center; gap: 9px; min-height: 48px; padding: 10px 13px; border: 1px solid var(--line); border-radius: 13px; font-weight: 900; cursor: pointer; }
.checkout-branch-options label:has(input:checked) { border-color: #4cb899; background: var(--brand-soft); box-shadow: inset 0 0 0 1px #4cb899; }
.checkout-branch-options input, .checkout-confirm input { width: 18px; height: 18px; accent-color: #2c8f73; }
.checkout-items { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.checkout-item { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--line); color: #38544d; }
.checkout-item:last-child { border-bottom: 0; }
.checkout-item strong { flex: none; color: var(--brand-deep); }
.checkout-summary-panel > div { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid rgba(24,56,50,.13); }
.checkout-total-price { align-items: end; padding: 18px 0 !important; }
.checkout-total-price strong { font-size: 31px; line-height: 1; }
.checkout-confirm { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; margin: 18px 0 10px; padding: 14px; border: 1px solid rgba(44,143,115,.24); border-radius: 13px; background: #fff; font-size: 14px; font-weight: 900; cursor: pointer; }
.checkout-payment-notice { margin: 0 0 16px; color: #6b5542; font-size: 13px; }
.checkout-methods { display: grid; gap: 10px; }
.checkout-method { display: grid; gap: 2px; min-height: 62px; padding: 12px 15px; border: 1px solid #2e7d68; border-radius: 14px; text-align: left; color: #173a31; background: #fff; font: inherit; cursor: pointer; }
.checkout-method span { font-weight: 900; }
.checkout-method small { color: var(--muted); }
.checkout-method.linepay { border-color: #04b900; }
.checkout-method:hover:not(:disabled), .checkout-method:focus-visible:not(:disabled) { transform: translateY(-1px); background: var(--brand-soft); }
.checkout-method:disabled { cursor: not-allowed; opacity: .46; }
.checkout-method[hidden] { display: none; }
.checkout-payment-state { display: grid; grid-template-columns: 230px 1fr; gap: 25px; align-items: center; margin-top: 24px; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: #f7fcfa; }
.checkout-payment-state[hidden] { display: none; }
.checkout-qr-shell { display: grid; min-height: 210px; place-items: center; padding: 12px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.checkout-qr-shell img { display: block; width: 100%; height: auto; }
.checkout-qr-placeholder { display: grid; gap: 5px; place-items: center; color: var(--muted); text-align: center; }
.checkout-qr-placeholder > span { color: #397d6b; font-size: 58px; line-height: 1; }
.checkout-qr-placeholder strong { color: var(--brand-deep); }
.checkout-status-badge { display: inline-flex; margin-bottom: 8px; padding: 5px 10px; border-radius: 999px; color: #1b5e4c; background: var(--brand-soft); font-size: 12px; font-weight: 900; }
.checkout-status-badge.is-success { color: #17643d; background: #dff6e8; }
.checkout-status-badge.is-error { color: #963f2e; background: #fde7e2; }
.checkout-payment-state h3 { margin: 0 0 8px; }
.checkout-payment-state p { margin: 0 0 15px; color: var(--muted); }
.checkout-payment-state .button { width: auto; }
.checkout-payment-state .clear-button { width: auto; margin-left: 8px; }

/* FAQ, gallery, directions, editorial */
.faq-tools { display: flex; gap: 10px; margin-bottom: 24px; }
.faq-search { width: min(100%, 520px); min-height: 50px; padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; }
.faq-jump-nav { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 36px; }
.faq-jump-nav a { display: inline-flex; align-items: center; min-height: 42px; padding: 8px 15px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--ink); font-weight: 800; text-decoration: none; }
.faq-jump-nav a:hover { border-color: var(--brand); background: var(--brand-pale); }
.faq-list { display: block; }
.faq-category { scroll-margin-top: 96px; }
.faq-category + .faq-category { margin-top: 44px; }
.faq-category h2 { margin: 0 0 18px; font-size: clamp(1.45rem, 3vw, 2rem); }
.faq-category-items { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 16px; background: var(--white); overflow: hidden; }
.faq-item summary { display: flex; justify-content: space-between; gap: 20px; padding: 19px 22px; font-weight: 900; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 24px; line-height: 1; }
.faq-item[open] summary::after { content: "−"; }
.faq-answer { padding: 0 22px 20px; color: var(--muted); }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-source { margin-top: 14px; }
.faq-source-link { display: inline-flex; align-items: center; gap: 8px; min-height: 42px; padding: 9px 14px; border: 1px solid rgba(122,217,187,.7); border-radius: 999px; background: rgba(185,226,194,.28); color: var(--ink); font-weight: 800; text-decoration: none; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.faq-source-link::before { content: ""; flex: 0 0 20px; width: 20px; height: 20px; background: currentColor; -webkit-mask: url("../images/instagram.svg") center / contain no-repeat; mask: url("../images/instagram.svg") center / contain no-repeat; }
.faq-source-link:hover { background: rgba(122,217,187,.3); border-color: var(--brand); transform: translateY(-1px); }
.faq-source-link:focus-visible { outline: 3px solid rgba(122,217,187,.45); outline-offset: 3px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { position: relative; overflow: hidden; margin: 0; border-radius: 20px; background: var(--brand-pale); }
.gallery-item:nth-child(4n+1) { grid-column: span 2; }
.gallery-trigger { position: relative; display: block; width: 100%; padding: 0; border: 0; color: inherit; background: transparent; cursor: zoom-in; }
.gallery-trigger:focus-visible { outline: 4px solid var(--brand); outline-offset: -4px; }
.gallery-item img { display: block; width: 100%; height: 330px; object-fit: cover; transition: transform 350ms ease; }
.gallery-item:hover img, .gallery-trigger:focus-visible img { transform: scale(1.03); }
.gallery-caption { position: absolute; right: 12px; bottom: 12px; left: 12px; padding: 9px 12px; border-radius: 12px; color: var(--brand-deep); background: rgba(255,255,255,.9); font-size: 13px; font-weight: 800; text-align: left; backdrop-filter: blur(10px); }
body.lightbox-open { overflow: hidden; }
.gallery-lightbox { position: fixed; z-index: 1000; inset: 0; display: grid; grid-template-columns: minmax(52px, 1fr) minmax(0, 1100px) minmax(52px, 1fr); align-items: center; padding: 72px 24px 28px; background: rgba(9, 33, 29, .94); }
.gallery-lightbox[hidden] { display: none; }
.gallery-lightbox-figure { grid-column: 2; min-width: 0; max-height: calc(100vh - 100px); margin: 0; }
.gallery-lightbox-image { display: block; width: 100%; max-height: calc(100vh - 160px); border-radius: 16px; object-fit: contain; }
.gallery-lightbox-figure figcaption { display: flex; justify-content: space-between; gap: 20px; padding: 14px 4px 0; color: var(--white); font-weight: 700; }
.gallery-lightbox-count { flex: none; color: var(--brand); }
.gallery-lightbox-close, .gallery-lightbox-nav { display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); color: var(--white); background: rgba(255,255,255,.12); cursor: pointer; backdrop-filter: blur(10px); }
.gallery-lightbox-close:hover, .gallery-lightbox-nav:hover, .gallery-lightbox-close:focus-visible, .gallery-lightbox-nav:focus-visible { color: var(--brand-deep); background: var(--brand); outline: none; }
.gallery-lightbox-close { position: absolute; top: 18px; right: 22px; width: 44px; height: 44px; border-radius: 50%; font-size: 32px; line-height: 1; }
.gallery-lightbox-nav { width: 48px; height: 64px; border-radius: 16px; font-size: 42px; line-height: 1; }
.gallery-lightbox-prev { justify-self: end; margin-right: 16px; }
.gallery-lightbox-next { justify-self: start; margin-left: 16px; }
.map-card { overflow: hidden; margin-bottom: 34px; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: var(--shadow-sm); }
.map-frame { width: 100%; height: 390px; border: 0; background: var(--brand-pale); }
.map-body { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px; padding: 26px; }
.branch-switch-section { padding: 30px 0 4px; background: var(--white); }
.branch-switcher { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; max-width: 680px; margin: 0 auto; padding: 8px; border: 1px solid var(--line); border-radius: 22px; background: var(--brand-pale); box-shadow: var(--shadow-sm); }
.branch-switch { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 62px; padding: 12px 20px; border: 1px solid transparent; border-radius: 16px; color: var(--ink); background: transparent; font: inherit; cursor: pointer; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.branch-switch strong { font-size: 18px; }
.branch-switch span { color: var(--muted); font-size: 13px; font-weight: 800; }
.branch-switch:hover { transform: translateY(-1px); background: rgba(255, 255, 255, .72); }
.branch-switch.is-active { border-color: #67cdb2; background: var(--white); box-shadow: 0 8px 20px rgba(46, 122, 103, .13); }
.branch-switch.is-active strong { color: #216858; }
.branch-switch:focus-visible { outline: 3px solid rgba(51, 155, 129, .3); outline-offset: 2px; }
.space-branch-switch-section { padding-top: 44px; }
.space-switch-head { max-width: 760px; margin: 0 auto 28px; text-align: center; }
.space-switch-head h2 { margin-bottom: 12px; }
.space-switch-head p:last-child { margin-bottom: 0; color: var(--muted); }
.space-gallery-section { padding-top: 56px; }
.space-branch-panel[hidden] { display: none; }
.space-branch-panel:focus { outline: none; }
.space-branch-panel:focus-visible { outline: 3px solid rgba(51,155,129,.28); outline-offset: 8px; border-radius: 20px; }
.space-branch-intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(270px, 390px); align-items: end; gap: 42px; margin-bottom: 34px; }
.space-branch-intro h2 { margin-bottom: 0; }
.space-photo-note { display: grid; gap: 5px; margin: 0; padding: 18px 20px; border: 1px solid var(--line); border-radius: 18px; color: var(--muted); background: var(--brand-pale); }
.space-photo-note[hidden] { display: none; }
.space-photo-note strong { color: var(--brand-deep); }
.space-photo-note span { font-size: 14px; line-height: 1.7; }
.gallery-empty { grid-column: 1 / -1; display: grid; place-items: center; gap: 8px; min-height: 280px; padding: 36px; border: 1px dashed #8acdbb; border-radius: 20px; color: var(--muted); background: var(--brand-pale); text-align: center; }
.gallery-empty strong { color: var(--brand-deep); font-size: 20px; }
.branch-map-panel[hidden] { display: none; }
.parking-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 20px; }
.parking-card { padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.parking-card h3 { font-size: 18px; }
.parking-facts { display: grid; grid-template-columns: auto 1fr; gap: 5px 12px; margin: 12px 0 0; font-size: 14px; }
.parking-facts dt { font-weight: 900; }
.parking-facts dd { margin: 0; color: var(--muted); }
.parking-nav-link { display: inline-flex; margin-top: 14px; color: #286e5e; font-size: 14px; font-weight: 800; text-underline-offset: 3px; }
.notice[hidden] { display: none; }
.steps { display: grid; gap: 18px; counter-reset: guide; }
.step-card { counter-increment: guide; display: grid; grid-template-columns: 64px 1fr; gap: 20px; padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.step-card::before { content: counter(guide, decimal-leading-zero); display: grid; width: 56px; height: 56px; place-items: center; border-radius: 18px; background: var(--brand-soft); font-size: 20px; font-weight: 900; }
.job-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.job-card { padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: var(--shadow-sm); }
.job-meta { display: flex; flex-wrap: wrap; gap: 7px; margin: 14px 0 20px; }

/* One-to-one massage course */
.course-hero { padding: 64px 0 84px; overflow: hidden; }
.course-hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 68px; }
.course-hero-copy h1 { margin: 16px 0 22px; }
.course-hero-copy h1 span { color: #408d7b; }
.course-hero-copy .lead { max-width: 650px; }
.course-facts { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 0; padding: 0; list-style: none; }
.course-facts li { padding: 7px 11px; border-radius: 999px; color: #315b51; background: var(--brand-pale); font-size: 13px; font-weight: 800; }
.course-hero-media { overflow: hidden; margin: 0; padding: 12px; border: 1px solid var(--line); border-radius: 30px; background: var(--white); box-shadow: var(--shadow-lg); transform: rotate(1.2deg); }
.course-hero-media img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; border-radius: 22px; }
.course-hero-media figcaption { padding: 12px 8px 2px; color: var(--muted); font-size: 12px; text-align: center; }
.course-audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.course-info-card { padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: var(--shadow-sm); }
.course-card-icon { display: grid; width: 42px; height: 42px; margin-bottom: 18px; place-items: center; border-radius: 13px; color: var(--brand-deep); background: var(--brand-soft); font-size: 13px; font-weight: 900; }
.course-info-card p, .course-feature-card p, .course-price-card p { margin-bottom: 0; color: var(--muted); }
.course-feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.course-feature-card { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 27px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); }
.course-feature-card > span { display: grid; width: 54px; height: 54px; place-items: center; border-radius: 17px; color: var(--white); background: var(--brand-deep); font-weight: 900; }
.course-price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.course-price-card { position: relative; padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: var(--shadow-sm); }
.course-price-card.featured { border: 2px solid var(--brand); background: linear-gradient(145deg, var(--white), var(--brand-pale)); }
.course-price-top { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.course-price-top > span { color: #408d7b; font-size: 24px; font-weight: 900; }
.course-price-top strong { color: var(--brand-deep); font-size: 29px; line-height: 1; white-space: nowrap; }
.course-price-top small { font-size: 13px; }
.course-price-card h3 { font-size: 19px; }
.course-best { position: absolute; top: -12px; right: 22px; padding: 4px 10px; border-radius: 999px; color: var(--white); background: var(--brand-deep); font-size: 11px; font-weight: 900; }
.course-curriculum-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 28px 64px; align-items: start; }
.course-topic-list { display: flex; flex-wrap: wrap; gap: 10px; }
.course-topic-list span { padding: 9px 14px; border: 1px solid var(--brand); border-radius: 999px; color: #275d50; background: var(--brand-pale); font-size: 14px; font-weight: 800; }
.course-topic-list span:nth-child(3n) { border-color: var(--brand-soft); background: var(--white); }
.course-legal-note { grid-column: 1 / -1; padding: 19px 22px; border-left: 4px solid var(--brand); border-radius: 0 16px 16px 0; background: var(--brand-pale); }
.course-legal-note p { margin: 5px 0 0; color: var(--muted); font-size: 14px; }
.course-steps .step-card h3 { margin-bottom: 5px; }
.course-steps .step-card p { margin-bottom: 0; color: var(--muted); }
.course-final-cta { padding-top: 0; }
.course-cta-panel { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 44px; border-radius: 30px; background: var(--brand-soft); }
.course-cta-panel h2 { margin-bottom: 10px; }
.course-cta-panel p:last-child { max-width: 720px; margin-bottom: 0; }
.course-cta-panel .button { flex: 0 0 auto; }
.course-keywords { margin-top: 18px; color: var(--muted); font-size: 13px; text-align: center; }

.instagram-video-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.recommendation-filter { position: relative; z-index: 8; padding: 22px 0; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.96); }
.recommendation-tabs { display: inline-flex; gap: 8px; padding: 6px; border: 1px solid var(--line); border-radius: 999px; background: var(--brand-pale); }
.recommendation-tabs .filter-button { min-width: 112px; }
.recommendation-content { display: flex; flex-direction: column; }
.recommendation-video-section { order: 1; }
.recommendation-article-section { order: 2; }
.recommendation-content > section[hidden] { display: none; }
.instagram-video-card { overflow: hidden; min-width: 0; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: var(--shadow-sm); }
.instagram-embed-shell { width: 100%; height: 640px; background: linear-gradient(145deg, var(--brand-pale), #fff); }
.instagram-embed-shell iframe { width: 100%; height: 100%; border: 0; background: var(--white); }
.instagram-video-meta { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 15px 18px; border-top: 1px solid var(--line); }
.instagram-creator { display: inline-flex; align-items: center; min-width: 0; color: var(--ink); font-weight: 900; overflow-wrap: anywhere; }
.instagram-creator::before { content: ""; flex: 0 0 20px; width: 20px; height: 20px; margin-right: 8px; color: #bc2a8d; background: currentColor; -webkit-mask: url("../images/instagram.svg") center / contain no-repeat; mask: url("../images/instagram.svg") center / contain no-repeat; }
.instagram-video-meta a { flex: 0 0 auto; color: #377164; font-size: 13px; font-weight: 900; }
.instagram-video-actions { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; margin-top: 28px; text-align: center; }
.instagram-video-actions p { margin: 0; }
.instagram-video-actions .button[hidden] { display: none; }
.instagram-video-notice { margin-top: 28px; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.article-card { display: flex; overflow: hidden; flex-direction: column; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.article-card img { width: 100%; height: 220px; object-fit: cover; }
.article-body { display: flex; flex: 1; flex-direction: column; padding: 22px; }
.article-date { color: #438170; font-size: 12px; font-weight: 900; letter-spacing: .05em; }
.article-card h2 { margin: 8px 0 10px; font-size: 21px; }
.article-card p { color: var(--muted); font-size: 14px; }
.article-card .button { align-self: flex-start; margin-top: auto; }
.prose { max-width: 820px; }
.prose h2 { margin-top: 44px; font-size: 30px; }
.prose h3 { margin-top: 28px; }
.prose a { color: #286e5e; }

/* AI support widget */
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.ai-support { position: fixed; z-index: 950; right: 24px; bottom: 24px; display: grid; justify-items: end; font-family: inherit; }
.ai-support-launcher { display: inline-flex; align-items: center; gap: 10px; min-height: 56px; padding: 10px 18px 10px 10px; border: 1px solid rgba(255,255,255,.5); border-radius: 999px; color: #173a31; background: var(--brand); font: inherit; font-weight: 900; box-shadow: 0 16px 42px rgba(20,67,55,.24); cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
.ai-support-launcher:hover, .ai-support-launcher:focus-visible { transform: translateY(-2px); box-shadow: 0 19px 48px rgba(20,67,55,.3); }
.ai-support-launcher-icon { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; color: #fff; background: var(--brand-deep); font-size: 19px; }
.ai-support.is-open .ai-support-launcher { display: none; }
.ai-support-panel { display: grid; grid-template-rows: auto minmax(170px, 1fr) auto auto auto; width: min(390px, calc(100vw - 28px)); height: min(620px, calc(100vh - 48px)); overflow: hidden; border: 1px solid rgba(36,113,92,.22); border-radius: 24px; background: #fff; box-shadow: 0 28px 80px rgba(13,52,42,.28); }
.ai-support-panel[hidden] { display: none; }
.ai-support-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px; color: #fff; background: linear-gradient(135deg, #276e5c, #3d9178); }
.ai-support-header > div:first-child { display: flex; align-items: center; gap: 11px; min-width: 0; }
.ai-support-avatar { display: grid; flex: none; width: 43px; height: 43px; place-items: center; border: 1px solid rgba(255,255,255,.46); border-radius: 50%; color: #183d33; background: var(--brand); font-weight: 900; }
.ai-support-header strong, .ai-support-header small { display: block; }
.ai-support-header strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ai-support-header small { margin-top: 2px; color: rgba(255,255,255,.82); font-size: 12px; }
.ai-support-header small i { display: inline-block; width: 7px; height: 7px; margin-right: 5px; border-radius: 50%; background: #9af2bd; box-shadow: 0 0 0 3px rgba(154,242,189,.16); }
.ai-support-header-actions { display: flex; gap: 5px; }
.ai-support-header-actions button { display: grid; width: 36px; height: 36px; place-items: center; border: 0; border-radius: 50%; color: #fff; background: rgba(255,255,255,.13); font: inherit; font-size: 23px; cursor: pointer; }
.ai-support-header-actions button:hover, .ai-support-header-actions button:focus-visible { background: rgba(255,255,255,.26); }
.ai-support-messages { display: flex; overflow-y: auto; flex-direction: column; gap: 10px; padding: 18px 15px 10px; background: linear-gradient(180deg, #f6fcf9, #fff); scrollbar-width: thin; scrollbar-color: var(--brand) transparent; }
.ai-support-message { display: flex; }
.ai-support-message p { max-width: 86%; margin: 0; padding: 11px 13px; border-radius: 16px 16px 16px 5px; color: #28453e; background: #e8f7f1; font-size: 14px; line-height: 1.65; white-space: pre-wrap; box-shadow: 0 5px 15px rgba(30,83,69,.06); }
.ai-support-message.is-user { justify-content: flex-end; }
.ai-support-message.is-user p { border-radius: 16px 16px 5px 16px; color: #fff; background: #317a67; }
.ai-support-message.is-loading p { color: #647c75; animation: ai-support-pulse 1.2s ease-in-out infinite; }
@keyframes ai-support-pulse { 50% { opacity: .5; } }
.ai-support-quick { display: flex; overflow-x: auto; gap: 7px; padding: 9px 14px; border-top: 1px solid #edf4f1; scrollbar-width: none; }
.ai-support-quick::-webkit-scrollbar { display: none; }
.ai-support-quick button { flex: none; max-width: 250px; padding: 7px 10px; border: 1px solid rgba(54,142,117,.34); border-radius: 999px; color: #286b59; background: #fff; font: inherit; font-size: 12px; font-weight: 800; cursor: pointer; }
.ai-support-quick button:hover, .ai-support-quick button:focus-visible { background: var(--brand-pale); }
.ai-support-form { display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 10px 12px; border-top: 1px solid var(--line); background: #fff; }
.ai-support-form textarea { width: 100%; min-height: 46px; max-height: 104px; padding: 11px 13px; border: 1px solid var(--line); border-radius: 14px; color: var(--ink); background: #fbfdfc; font: inherit; font-size: 14px; resize: none; }
.ai-support-form textarea:focus { outline: 3px solid rgba(122,217,187,.32); border-color: var(--brand); }
.ai-support-form button { align-self: end; width: 45px; height: 45px; border: 0; border-radius: 14px; color: #fff; background: #286f5d; font: inherit; font-size: 18px; cursor: pointer; }
.ai-support-form button:disabled { cursor: wait; opacity: .48; }
.ai-support-privacy { margin: 0; padding: 0 14px 12px; color: #71827d; background: #fff; font-size: 10px; line-height: 1.45; }

@media (max-width: 1020px) {
  .desktop-nav, .header-cta { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .menu-toggle { display: block; }
  .hero-grid, .split { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .staff-grid { grid-template-columns: repeat(3, 1fr); }
  .service-flow-grid { grid-template-columns: repeat(2, 1fr); }
  .builder-layout { grid-template-columns: 1fr; }
  .menu-summary { position: static; }
  .course-hero-grid { gap: 38px; }
  .course-price-grid { grid-template-columns: 1fr; }
  .instagram-video-grid, .article-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  :root { --page: min(100% - 28px, 680px); }
  body { padding-bottom: 72px; }
  .section { padding: 68px 0; }
  .header-inner { min-height: 68px; }
  .brand img { width: 158px; }
  .hero { padding: 42px 0 70px; }
  .hero-grid, .split, .testimonial-strip { grid-template-columns: 1fr; }
  .hero-grid { gap: 36px; }
  .hero-grid > div:first-child { padding-top: 0; }
  .hero h1 { font-size: clamp(39px, 13vw, 58px); }
  .hero-visual { max-width: 520px; justify-self: center; padding: 12px 12px 0 0; }
  .hero-visual > img { aspect-ratio: 4 / 4.2; border-radius: 28px; }
  .hero-note { right: 0; bottom: 18px; max-width: 205px; }
  .quick-booking { margin-top: -22px; }
  .quick-booking-inner { grid-template-columns: 1fr; padding: 22px; }
  .quick-booking .button { width: 100%; }
  .card-grid, .price-grid, .location-grid { grid-template-columns: 1fr; }
  .price-card.is-featured { transform: none; }
  .image-stack { min-height: 410px; }
  .testimonial-strip { padding: 28px; gap: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .page-hero { padding: 50px 0; }
  .page-hero-grid, .map-body { grid-template-columns: 1fr; align-items: start; }
  .course-hero { padding: 42px 0 68px; }
  .course-hero-grid, .course-curriculum-layout { grid-template-columns: 1fr; }
  .course-hero-media { max-width: 520px; margin-inline: auto; transform: none; }
  .course-audience-grid, .course-feature-grid { grid-template-columns: 1fr; }
  .course-feature-card { grid-template-columns: 46px 1fr; padding: 21px; }
  .course-feature-card > span { width: 46px; height: 46px; border-radius: 14px; }
  .course-price-top { align-items: start; flex-direction: column; }
  .course-cta-panel { align-items: stretch; flex-direction: column; padding: 28px 22px; }
  .course-cta-panel .button { width: 100%; }
  .tab-panel { padding: 20px 14px; }
  .filter-group { align-items: start; flex-direction: column; }
  .staff-grid, .service-grid, .gallery-grid, .parking-grid, .job-grid, .instagram-video-grid, .article-grid, .service-flow-grid { grid-template-columns: 1fr; }
  .service-guide-tabs { display: grid; grid-template-columns: 1fr 1fr; }
  .service-guide-tab { padding-inline: 12px; }
  .service-video-modal { padding: 12px; }
  .service-video-dialog { max-height: calc(100vh - 24px); padding: 18px; border-radius: 18px; }
  .service-video-close { top: 10px; right: 10px; }
  .service-video-dialog video { max-height: 62vh; }
  .checkout-modal { padding: 10px; }
  .checkout-dialog { max-height: calc(100vh - 20px); padding: 22px 16px; border-radius: 18px; }
  .checkout-close { top: 10px; right: 10px; }
  .checkout-heading { padding-right: 48px; }
  .checkout-layout, .checkout-payment-state { grid-template-columns: 1fr; }
  .checkout-panel.checkout-summary-panel { position: static; }
  .checkout-branch-options { grid-template-columns: 1fr; }
  .checkout-payment-state { padding: 18px; }
  .checkout-qr-shell { width: min(230px, 100%); margin-inline: auto; }
  .checkout-payment-state .button, .checkout-payment-state .clear-button { width: 100%; margin: 8px 0 0; }
  .ai-support { right: 14px; bottom: 86px; }
  .ai-support-launcher { min-height: 52px; padding-right: 15px; }
  .ai-support-panel { width: calc(100vw - 28px); height: min(610px, calc(100vh - 112px)); border-radius: 20px; }
  .ai-support-header { padding: 13px; }
  .ai-support-messages { padding-inline: 12px; }
  .instagram-embed-shell { height: min(690px, 168vw); }
  .instagram-video-meta { align-items: flex-start; flex-direction: column; }
  .recommendation-filter { position: sticky; top: 68px; padding: 12px 0; box-shadow: 0 8px 22px rgba(24,56,50,.08); }
  .recommendation-tabs { display: grid; width: 100%; grid-template-columns: repeat(3, 1fr); }
  .recommendation-tabs .filter-button { min-width: 0; padding-inline: 8px; }
  .recommendation-content[data-recommendation-view="all"] .recommendation-article-section { order: 1; }
  .recommendation-content[data-recommendation-view="all"] .recommendation-video-section { order: 2; }
  .space-branch-switch-section { padding-top: 34px; }
  .space-switch-head { margin-bottom: 20px; }
  .branch-switcher { gap: 7px; padding: 6px; }
  .branch-switch { min-height: 56px; padding: 10px 8px; }
  .branch-switch strong { font-size: 16px; }
  .branch-switch span { font-size: 11px; }
  .space-gallery-section { padding-top: 44px; }
  .space-branch-intro { grid-template-columns: 1fr; align-items: start; gap: 22px; margin-bottom: 26px; }
  .space-photo-note { padding: 15px 16px; }
  .gallery-item:nth-child(4n+1) { grid-column: auto; }
  .gallery-item img { height: 280px; }
  .gallery-lightbox { grid-template-columns: 1fr 1fr; align-content: center; padding: 68px 16px 24px; }
  .gallery-lightbox-figure { grid-column: 1 / -1; grid-row: 1; }
  .gallery-lightbox-image { max-height: calc(100vh - 190px); }
  .gallery-lightbox-nav { grid-row: 2; width: 52px; height: 48px; margin-top: 18px; }
  .gallery-lightbox-prev { justify-self: start; margin-right: 0; }
  .gallery-lightbox-next { justify-self: end; margin-left: 0; }
  .option-grid, .option-grid.three, .body-part-grid, .preference-grid { grid-template-columns: 1fr; }
  .option-title { flex-direction: column; gap: 2px; }
  .builder-section { padding: 20px 16px; }
  .menu-program-head { align-items: start; flex-direction: column; padding: 20px; }
  .menu-program-head p { text-align: left; }
  .step-card { grid-template-columns: 48px 1fr; padding: 20px; }
  .step-card::before { width: 44px; height: 44px; border-radius: 14px; font-size: 16px; }
  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 9px 12px max(9px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(255,255,255,.96);
    box-shadow: 0 -8px 28px rgba(24,56,50,.12);
    backdrop-filter: blur(16px);
  }
  .mobile-actions .button { min-height: 48px; padding: 8px 12px; font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
