/**
 * styles.css
 * L1-L13：:root 颜色变量
 * L43-L800：header、首页、about、地图
 * L803-L1087：booking 步骤与时间格
 * L1089-L1534：admin 表格/弹窗/时间滚轮
 * L1808+：手机响应式（graph 横向滑）
 */
:root {
  --bg: #f2f0ea;
  --surface: #f8f6f1;
  --text: #1f2e2a;
  --muted: #5f6f68;
  --line: #d7dfd8;
  --section-strong: #3f5b53;
  --section-strong-soft: #53756b;
  --brand: #2f7a73;
  --accent: #b57f61;
  --header-bg: #dfe9e2;
  --header-border: #cfdbd2;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--surface);
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 93%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--header-bg);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--header-border);
}

.nav-wrap {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 248px;
  height: 118px;
  background: var(--header-bg);
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.55rem;
}

.desktop-nav > a,
.dropbtn {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--text);
}

.desktop-nav > a:hover,
.dropbtn:hover {
  color: var(--brand);
}

.nav-cta {
  margin-left: 0.9rem;
  border: 1px solid #000000 !important;
  box-shadow: inset 0 0 0 1px #000000;
  outline: none;
  min-height: 52px;
  min-width: 172px;
  padding: 0.5rem 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: #000000 !important;
  background: transparent;
  gap: 0.42rem;
  border-radius: 0;
  font-size: 1.14rem;
  font-weight: 500;
}

.nav-cta:hover {
  background: rgba(17, 17, 17, 0.05);
}

.cta-arrow {
  position: relative;
  top: 1px;
  font-size: 1.15rem;
}

.dropdown {
  position: relative;
}

.caret {
  font-size: 0.62rem;
  margin-left: 0.22rem;
}

.dropdown-content {
  position: absolute;
  top: 140%;
  left: 0;
  width: 255px;
  background: #fcfbf8;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.45rem;
  box-shadow: 0 14px 26px rgba(31, 46, 42, 0.14);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: all 180ms ease;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-content a {
  display: block;
  font-size: 0.86rem;
  color: #3d4f49;
  border-radius: 8px;
  padding: 0.62rem;
}

.dropdown-content a:hover {
  background: #eef4ef;
}

.menu-toggle {
  display: none;
  width: 56px;
  height: 56px;
  border: 1px solid #b6c9bc;
  border-radius: 14px;
  background: #f1f7f3;
  font-size: 1.6rem;
  line-height: 1;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding: 0 4% 0.7rem;
}

.mobile-nav a {
  display: block;
  padding: 0.62rem 0.25rem;
  font-size: 1.12rem;
  font-weight: 600;
}

.hero-split {
  background: #ece9e2;
  padding: 2.2rem 0 3.2rem;
  min-height: calc(100vh - 94px);
  display: grid;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 2.2rem;
}

.hero-grid-wide {
  width: min(1420px, 98%);
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
  margin: 0;
}

.hero-panel h1 {
  font-size: clamp(3.15rem, 7vw, 5.8rem);
  letter-spacing: -0.02em;
  line-height: 1.04;
  color: var(--text);
}

.h-em {
  color: #476e63;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.eyebrow.dark {
  color: #50615a;
  font-family: "Outfit", "Manrope", sans-serif;
  letter-spacing: 0.09em;
  font-weight: 500;
}

p {
  line-height: 1.7;
  color: var(--muted);
}

.hero-panel p {
  max-width: 500px;
  font-size: 1.03rem;
  margin-top: 1rem;
}

.hero-tagline {
  font-family: "Manrope", system-ui, sans-serif;
  color: #6d8a7f;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin: 1rem 0 1.2rem;
  font-weight: 400;
}

.hero-actions {
  margin-top: 1.5rem;
}

.hero-visual {
  position: relative;
  max-width: 640px;
  justify-self: end;
}

.hero-visual img {
  width: 100%;
  min-height: 410px;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.hero-accent {
  width: 200px;
  height: 150px;
  background: #c9dbce;
  position: absolute;
  right: -20px;
  bottom: -20px;
  z-index: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  border: 0;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.btn.dark {
  color: #fff;
  background: #2d4740;
}

.btn.light {
  color: #2f433d;
  background: #f2e7dc;
}

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--section-strong-soft));
}

.btn.full {
  width: 100%;
}

.section {
  padding: 4.8rem 0;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  margin-bottom: 0.9rem;
}

h3 {
  font-size: 1.55rem;
}

.lead {
  max-width: 740px;
}

.services-showcase {
  background: var(--section-strong);
}

.services-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 1.25rem;
  align-items: stretch;
}

.services-grid-wide {
  width: min(1450px, 98%);
}

.services-intro {
  padding: 0.45rem 0.5rem;
}

.services-intro h2 {
  color: #f1f8f3;
}

.services-intro p {
  color: rgba(236, 248, 240, 0.84);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.service-tile {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(228, 241, 232, 0.18);
}

.service-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 33, 29, 0.12) 18%, rgba(19, 41, 35, 0.78) 100%);
}

.service-copy {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  color: #f2f7f3;
}

.service-copy h3 {
  font-size: 2rem;
  margin-bottom: 0.35rem;
  color: #f5eddc;
  text-shadow: 0 2px 10px rgba(13, 29, 25, 0.38);
}

.service-copy p {
  color: rgba(241, 248, 243, 0.92);
  font-size: 1rem;
  margin: 0;
  line-height: 1.55;
  text-shadow: 0 2px 8px rgba(13, 29, 25, 0.35);
}

.about-grid,
.cards,
.benefits-grid,
.cta-grid {
  display: grid;
  gap: 1rem;
}

.about-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.center-text {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.about h2 {
  text-align: center;
}

.quick-links {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 1.5rem;
}

.quick-card {
  background: #f7fbf8;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem 1rem 1.2rem;
  text-align: center;
  box-shadow: 0 10px 22px rgba(31, 46, 42, 0.08);
}

.quick-media {
  width: min(240px, 100%);
  aspect-ratio: 1 / 1;
  margin: 0 auto 1rem;
  clip-path: polygon(25% 5%, 75% 5%, 96% 32%, 96% 68%, 75% 95%, 25% 95%, 4% 68%, 4% 32%);
  border: 2px solid #d4e3da;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.newcomers-media {
  background: linear-gradient(140deg, #c8dbcf, #9bbcae 60%, #dce9e1);
}

.appointment-media {
  background: linear-gradient(140deg, #b2cdc0, #7ea999 60%, #d7e6dd);
}

.quick-overlay {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(47, 92, 80, 0.2);
  border-radius: 14px;
  padding: 0.75rem 0.9rem;
  min-width: 120px;
}

.quick-badge {
  display: block;
  font-size: 0.75rem;
  color: #58776d;
  letter-spacing: 0.12em;
}

.quick-overlay strong {
  display: block;
  color: #295a4d;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.quick-card h3 {
  margin-bottom: 0.4rem;
}

.quick-card p {
  margin: 0;
}

.quick-actions {
  margin-top: 1.2rem;
  text-align: center;
}

.about-grid article,
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.2rem 1rem;
  box-shadow: 0 12px 26px rgba(55, 32, 67, 0.08);
}

.benefits-grid {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 0.85rem 1.1rem;
  margin-top: 0.8rem;
}

.benefits-grid article {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0.4rem 0.2rem;
  box-shadow: none;
  border-bottom: 1px solid #d7e2dc;
}

.benefits-grid h3 {
  font-size: 1.34rem;
  margin-bottom: 0.4rem;
}

.location-section {
  background: #f2f6f3;
  padding-top: 1.6rem;
  padding-bottom: 0.8rem;
}

.location-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 1rem;
  align-items: stretch;
}

.location-map-wrap {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  min-height: 360px;
  background: #fff;
  position: relative;
}

.location-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.full-bleed-map {
  width: 100%;
  max-width: none;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  min-height: 560px;
}

.full-bleed-map iframe {
  min-height: 560px;
}

.location-directions {
  border: 1px solid #baccc1;
  border-radius: 14px;
  background: #ffffff;
  padding: 1rem;
  box-shadow: 0 10px 20px rgba(31, 46, 42, 0.08);
}

.location-directions.floating {
  position: absolute;
  top: 18px;
  right: 20px;
  width: min(430px, 44%);
  z-index: 3;
}

.location-directions h3 {
  margin-bottom: 0.55rem;
}

.location-directions p {
  margin: 0 0 0.7rem;
}

.location-directions ol {
  margin: 0;
  padding-left: 1.15rem;
  color: #42584f;
}

.location-directions li {
  margin: 0.38rem 0;
}

.about-us-section {
  background: #dfe9e2;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.about-us-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 5.6rem;
  align-items: center;
}

.about-us-image-panel {
  position: relative;
  padding: 0.4rem 0 0.2rem;
  order: 1;
}

.about-us-image-panel::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  border: 1.6px solid rgba(47, 97, 90, 0.24);
  background: transparent;
  top: -8px;
  right: -8px;
  z-index: 0;
}

.about-us-image-panel::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, rgba(189, 216, 199, 0.26), rgba(189, 216, 199, 0.08) 62%, transparent 74%);
  bottom: -88px;
  left: 70px;
  z-index: 0;
}

.about-us-image-wrap {
  border: 0;
  border-radius: 18px;
  overflow: visible;
  min-height: 400px;
  background: transparent;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
}

.about-us-image-wrap.award-style::before {
  content: "";
  position: absolute;
  left: -16px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid rgba(49, 101, 94, 0.36);
  background: transparent;
  opacity: 0.72;
  z-index: 1;
}

.about-us-image-wrap.award-style {
  overflow: visible;
}

.about-us-image-wrap.award-style::after {
  content: none;
}

.about-us-image-wrap img {
  width: min(440px, 100%);
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.about-us-image-wrap.award-style img {
  width: min(430px, 100%);
  filter: none;
}

.about-us-copy {
  max-width: 700px;
  order: 2;
  padding-left: 0.9rem;
  padding-right: 0.9rem;
}

.about-us-copy h2 {
  margin-bottom: 0.55rem;
}

.about-us-copy p {
  color: #2f4942;
}

.soft-bg {
  background: #f3f6f1;
}

.services-page {
  background: #e8f0ea;
}

.services-catalog {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 1rem;
}

.catalog-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(214, 228, 220, 0.8);
  min-height: 230px;
  background-size: cover;
  background-position: center;
}

.catalog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(13, 53, 51, 0.68), rgba(29, 67, 64, 0.72));
}

.catalog-body {
  position: relative;
  z-index: 2;
  padding: 1rem;
  color: #f5faf7;
}

.catalog-body h3 {
  font-size: 2rem;
  margin-bottom: 0.35rem;
}

.catalog-body p {
  color: rgba(236, 247, 241, 0.92);
  margin: 0 0 0.75rem;
}

.catalog-controls {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 0.6rem;
  align-items: center;
}

.catalog-controls select,
.catalog-price {
  min-height: 44px;
  border: 0;
  border-radius: 9px;
  font: inherit;
}

.catalog-controls select {
  padding: 0.5rem 0.55rem;
  color: #2a3f37;
}

.catalog-price {
  display: inline-grid;
  place-items: center;
  background: #f5f8f6;
  color: #2a3f37;
  font-weight: 700;
}

/* ========== 预约页 booking.html（约 L803 起）========== */
.booking-section {
  background: #eef3ef;
}

.skip-main-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-main-link:focus {
  position: static;
  width: auto;
  height: auto;
  display: inline-block;
  margin-bottom: 0.7rem;
  color: #35544a;
  text-decoration: underline;
  background: #fff;
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
}

.booking-head {
  margin-bottom: 1.25rem;
}

.booking-payment-note {
  margin-top: 0.4rem;
  color: #8c3b2d;
  font-weight: 600;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr;
  gap: 1rem;
  align-items: start;
}

.booking-flow,
.booking-summary {
  background: #f8fbf9;
  border: 1px solid #d2ddd6;
  border-radius: 16px;
  padding: 1rem;
}

.booking-step {
  margin-bottom: 1rem;
  opacity: 1;
  pointer-events: auto;
}

.booking-step.active h3 {
  color: #1f4d36;
}

.booking-step h3 {
  font-size: 1.5rem;
  margin-bottom: 0.65rem;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.7rem;
}

.option-btn,
.duration-btn,
.time-btn {
  width: 100%;
  border: 1px solid #bbcbc0;
  background: #fff;
  border-radius: 12px;
  padding: 0.7rem 0.75rem;
  text-align: left;
  font: inherit;
  color: #28473e;
  cursor: pointer;
}

.option-btn strong {
  display: block;
}

.option-btn small {
  color: #5f6f68;
}

.option-btn.active,
.duration-btn.active,
.time-btn.active {
  border-color: #2f7a73;
  box-shadow: 0 0 0 2px rgba(47, 122, 115, 0.14);
}

.duration-list {
  display: grid;
  gap: 0.55rem;
}

.duration-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.addon-list {
  display: grid;
  gap: 0.5rem;
}

.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #d2ddd6;
  border-radius: 10px;
  padding: 0.6rem 0.7rem;
  background: #fff;
}

.addon-item label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #2d4a41;
}

.addon-item input {
  accent-color: #2f7a73;
}

.booking-label {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
  color: #37564d;
}

.booking-label input {
  border: 1px solid #c6d3cb;
  border-radius: 10px;
  min-height: 42px;
  padding: 0.45rem 0.6rem;
  font: inherit;
}

.booking-label select {
  border: 1px solid #c6d3cb;
  border-radius: 10px;
  min-height: 42px;
  padding: 0.45rem 0.6rem;
  font: inherit;
  background: #fff;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0.45rem;
}

.time-btn {
  text-align: center;
}

.time-btn.disabled {
  background: #e0e0e0;
  color: #888;
  border-color: #c9c9c9;
  cursor: not-allowed;
}

.booking-form {
  display: grid;
  gap: 0.65rem;
}

.booking-form label {
  display: grid;
  gap: 0.3rem;
  color: #2f4b42;
}

.coupon-note {
  margin: -0.15rem 0 0.2rem;
  font-size: 0.9rem;
  color: #4f6a60;
}

.coupon-note strong {
  font-weight: 700;
  color: #2f4b42;
}

.booking-form input {
  border: 1px solid #c6d3cb;
  border-radius: 10px;
  min-height: 42px;
  padding: 0.45rem 0.6rem;
  font: inherit;
}

.terms-wrap {
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 0.6rem;
  font-size: 0.9rem;
}

.terms-wrap a {
  color: #2f7a73;
  text-decoration: underline;
}

.recaptcha-note {
  margin: 0;
  font-size: 0.86rem;
  color: #60756d;
}

.recaptcha-note a {
  color: #2f7a73;
  text-decoration: underline;
}

.required-star {
  color: #d11f1f;
  font-weight: 700;
}

.booking-summary {
  position: sticky;
  top: 96px;
}

.booking-summary ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.booking-summary li {
  border: 1px solid #d5ded8;
  border-radius: 10px;
  padding: 0.52rem 0.6rem;
  background: #fff;
  color: #2e4a41;
}

.booking-summary li button {
  margin-left: 0.5rem;
  border: 0;
  background: none;
  color: #2f7a73;
  text-decoration: underline;
  cursor: pointer;
}

.booking-status {
  margin-top: 0.7rem;
  color: #2f7a73;
  font-weight: 600;
}

.booking-form-status {
  min-height: 1.1rem;
  margin: 0.15rem 0 0;
  font-size: 0.92rem;
  color: #9f3e3e;
  font-weight: 600;
}

/* ========== Admin 后台（约 L1089 起）========== */
.admin-section {
  background: #e7efe9;
}

.admin-section .container {
  width: min(1520px, 98%);
}

.admin-head {
  margin-bottom: 1.1rem;
}

.admin-head .btn {
  margin-top: 0.55rem;
}

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

.admin-card {
  background: #f8fbf9;
  border: 1px solid #d2ddd6;
  border-radius: 16px;
  padding: 1rem;
}

.admin-day-row {
  border: 1px solid #d5ded8;
  border-radius: 12px;
  background: #fff;
  padding: 0.7rem;
  margin-top: 0.7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
}

.admin-day-row p {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: #4e665d;
}

.admin-actions {
  display: flex;
  gap: 0.45rem;
}

.admin-actions .btn {
  min-height: 38px;
  padding: 0.3rem 0.72rem;
}

.admin-switch {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 32px;
}

.admin-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.admin-switch-slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background: #cfd7d3;
  border: 1px solid #bdcbc4;
  border-radius: 999px;
  transition: 0.2s ease;
}

.admin-switch-slider::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.admin-switch input:checked + .admin-switch-slider {
  background: #2f7a73;
  border-color: #2f7a73;
}

.admin-switch input:checked + .admin-switch-slider::before {
  transform: translateX(24px);
}

.admin-status {
  min-height: 1.1rem;
  margin: 0.2rem 0 0;
  color: #2f7a73;
  font-weight: 600;
  font-size: 0.9rem;
}

.admin-status.error {
  color: #9f3e3e;
}

.admin-status.success {
  color: #2f7a73;
}

.admin-list-card {
  margin-top: 1rem;
}

.admin-appointments-card {
  margin-top: 1rem;
}

.admin-appointments-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.admin-appointments-head-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.admin-appt-section {
  padding: 0.65rem 0.5rem 0.2rem;
}

.admin-appt-section-title {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  color: #1f4d36;
}

.admin-appt-date-group {
  border-top: 1px solid #e1e8e4;
  padding: 0.35rem 0.5rem 0.65rem;
}

.admin-appt-date-group summary {
  cursor: pointer;
  font-weight: 700;
  color: #2f4b42;
  padding: 0.45rem 0.15rem;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.admin-appt-date-group summary::-webkit-details-marker {
  display: none;
}

.admin-appt-date-group summary::before {
  content: "▸";
  font-size: 0.85rem;
  color: #1f4d36;
}

.admin-appt-date-group[open] summary::before {
  content: "▾";
}

.admin-appt-date-count {
  font-weight: 500;
  color: #5d7369;
  font-size: 0.92rem;
}

.admin-appt-date-group .admin-appointments-table {
  margin-top: 0.35rem;
}

.admin-appointments-sub {
  margin: 0.45rem 0 0.7rem;
}

.admin-appointments-actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-bottom: 0.6rem;
}

.admin-appointments-table-wrap {
  margin-top: 0.7rem;
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid #d5ded8;
  border-radius: 10px;
  background: #fff;
}

.admin-appointments-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 0;
  table-layout: fixed;
}

.admin-appointments-table th,
.admin-appointments-table td {
  padding: 0.78rem 0.84rem;
  border-bottom: 1px solid #e1e8e4;
  text-align: left;
  color: #2f4b42;
  font-size: 0.96rem;
}

.admin-delete-btn {
  border: 1px solid #d3b8b8;
  background: #fff;
  color: #8a2e2e;
  border-radius: 8px;
  padding: 0.2rem 0.45rem;
  cursor: pointer;
  font-size: 0.9rem;
}

.admin-delete-btn:hover {
  background: #fff3f3;
}

.admin-appointments-table thead th {
  background: #f1f6f3;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(18, 38, 34, 0.48);
  z-index: 160;
  padding: 1rem;
}

body.admin-modal-open {
  overflow: hidden;
}

.admin-modal.active {
  display: flex;
}

.admin-modal-card {
  width: min(600px, 100%);
  background: #fff;
  border: 1px solid #d2ddd6;
  border-radius: 14px;
  padding: 0.95rem 1rem;
  box-shadow: 0 16px 32px rgba(20, 35, 31, 0.22);
  max-height: min(92vh, 860px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

.admin-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.admin-modal-close {
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: #4e665d;
}

.admin-modal-step {
  display: none;
  gap: 0.6rem;
}

.admin-modal-step.active {
  display: grid;
}

.admin-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.55rem;
  margin-top: 0.7rem;
}

.admin-delete-confirm-card p {
  margin: 0;
  color: #415a52;
}

.admin-time-pickers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.admin-time-wheel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.admin-time-wheel-col {
  display: grid;
  gap: 0.35rem;
}

.admin-time-wheel-col > span {
  color: #47645a;
  font-size: 0.9rem;
}

.admin-time-wheel-list-wrap {
  position: relative;
}

.admin-time-wheel-list {
  height: 170px;
  overflow-y: auto;
  border: 1px solid #d2ddd6;
  border-radius: 12px;
  background: #fff;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 58px 0;
}

.admin-time-wheel-focus {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 42px;
  border: 2px solid #2f7a73;
  border-radius: 10px;
  background: rgba(231, 244, 239, 0.25);
  pointer-events: none;
  z-index: 2;
}

.admin-time-wheel-item {
  height: 42px;
  width: 100%;
  border: 0;
  background: transparent;
  color: #486058;
  font-size: 1.02rem;
  display: grid;
  place-items: center;
  scroll-snap-align: center;
  cursor: pointer;
}

.admin-time-wheel-item.active {
  background: transparent;
  color: #165347;
  font-weight: 700;
}

.admin-addon-list {
  display: grid;
  gap: 0.45rem;
}

.admin-addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #d2ddd6;
  border-radius: 10px;
  background: #fff;
  padding: 0.48rem 0.58rem;
}

.admin-addon-item label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #2f4b42;
}

.admin-addon-item input {
  accent-color: #2f7a73;
}

.admin-price-hint {
  margin: 0;
  font-size: 0.9rem;
  color: #4e665d;
}

.admin-block-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.admin-block-list li {
  border: 1px solid #d5ded8;
  border-radius: 10px;
  background: #fff;
  padding: 0.58rem 0.68rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  color: #2e4a41;
}

.admin-block-list button {
  border: 1px solid #d3b8b8;
  background: #fff;
  color: #8a2e2e;
  border-radius: 8px;
  padding: 0.24rem 0.58rem;
  cursor: pointer;
}

.admin-login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #e7efe9, #dfe9e2);
  padding: 1rem;
}

.admin-login-card {
  width: min(460px, 100%);
  background: #fff;
  border: 1px solid #d2ddd6;
  border-radius: 16px;
  padding: 1.15rem;
  box-shadow: 0 16px 34px rgba(23, 49, 43, 0.12);
}

.admin-login-card h1 {
  margin-bottom: 0.5rem;
}

.admin-login-card p {
  margin-top: 0;
}

.admin-login-form {
  display: grid;
  gap: 0.72rem;
  margin-top: 0.8rem;
}

.admin-login-form label {
  display: grid;
  gap: 0.3rem;
  color: #2f4b42;
}

.admin-login-form input {
  border: 1px solid #c6d3cb;
  border-radius: 10px;
  min-height: 42px;
  padding: 0.45rem 0.6rem;
  font: inherit;
}

.admin-login-back {
  margin: 0.65rem 0 0;
}

.admin-login-back a {
  color: #2f7a73;
  text-decoration: underline;
}

.booking-loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 35, 31, 0.5);
  backdrop-filter: blur(1.5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 120;
}

.booking-loading-overlay.active {
  display: flex;
}

.booking-loading-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.2rem 1.35rem;
  min-width: 260px;
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  border: 1px solid #d5e0d9;
  box-shadow: 0 16px 32px rgba(20, 35, 31, 0.2);
}

.booking-loading-card p {
  margin: 0;
  color: #2f4b42;
  font-weight: 600;
}

.booking-loading-spinner {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 4px solid #d8e5de;
  border-top-color: #2f7a73;
  animation: booking-spin 0.8s linear infinite;
}

@keyframes booking-spin {
  to {
    transform: rotate(360deg);
  }
}

.booking-alert-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(20, 35, 31, 0.48);
  z-index: 130;
  padding: 1rem;
}

.booking-alert-modal.active {
  display: flex;
}

.booking-alert-card {
  width: min(460px, 100%);
  background: #fff;
  border: 1px solid #d2ddd6;
  border-radius: 14px;
  padding: 1rem 1.1rem;
  box-shadow: 0 16px 30px rgba(20, 35, 31, 0.2);
  display: grid;
  gap: 0.7rem;
}

.booking-alert-card h3 {
  margin: 0;
  font-size: 1.3rem;
}

.booking-alert-card p {
  margin: 0;
  color: #405c53;
}

.booking-alert-card .btn {
  justify-self: end;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.cta {
  background: linear-gradient(155deg, #2f4e46, #3e695e);
}

.cta h2,
.cta p,
.cta .eyebrow {
  color: #edf8f2;
}

.map-link {
  display: inline-block;
  margin-top: 0.25rem;
  color: #d6f3e5;
  text-decoration: underline;
}

.cta-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.contact-form {
  display: grid;
  gap: 0.78rem;
  background: #fff;
  padding: 1rem;
  border-radius: 16px;
}

.contact-form label {
  display: grid;
  gap: 0.28rem;
  font-size: 0.9rem;
  color: #3f4a5d;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #c9d2df;
  border-radius: 8px;
  min-height: 42px;
  padding: 0.5rem 0.65rem;
  font: inherit;
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-status {
  min-height: 1.1rem;
  margin: 0.1rem 0 0;
  font-size: 0.9rem;
  color: #3f4a5d;
}

.contact-status.success {
  color: #1f6a53;
}

.contact-status.error {
  color: #a43d3d;
}

.contact-direct-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.1rem;
  border: 1px solid rgba(210, 226, 217, 0.85);
  display: grid;
  gap: 0.75rem;
}

.contact-direct-card h3 {
  margin: 0;
  color: #24483f;
}

.contact-direct-card p {
  margin: 0;
  color: #3f4a5d;
}

.btn.outline-light {
  border: 1px solid rgba(35, 87, 80, 0.44);
  background: transparent;
  color: #1f4f45;
}

.btn.outline-light:hover {
  background: rgba(35, 87, 80, 0.08);
}

.book-now-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 122px;
  height: 122px;
  border-radius: 50%;
  z-index: 40;
  display: grid;
  place-items: center;
  text-decoration: none;
}

.book-now-fab::before,
.book-now-fab::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.book-now-fab::before {
  inset: -10px;
  border: 2px solid rgba(37, 91, 86, 0.48);
}

.book-now-fab::after {
  inset: -22px;
  border: 1.5px solid rgba(37, 91, 86, 0.3);
  border-style: dashed;
}

.fab-core {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 28%, #f6fbf8, #dce9e1 72%);
  border: 3px solid #2c6760;
  color: #1d5b56;
  display: grid;
  place-items: center;
  text-align: center;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
  font-family: "Outfit", sans-serif;
  font-size: 1.85rem;
  box-shadow: 0 12px 30px rgba(15, 42, 37, 0.22);
}

.book-now-fab:hover .fab-core {
  transform: scale(1.03);
}

.site-footer {
  background: #1f302b;
  color: #cfddd6;
  padding: 1.15rem 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-footer a {
  color: #b9dbc9;
}

.reveal-up {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 1500ms ease, transform 1500ms ease;
}

.delay-1 {
  transition-delay: 350ms;
}

.delay-2 {
  transition-delay: 700ms;
}

.delay-3 {
  transition-delay: 1050ms;
}

.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* 平板/手机：首页单列、admin graph 可左右滑、弹窗时间轮单列 */
@media (max-width: 940px) {
  .hero-grid,
  .services-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .logo {
    width: 198px;
    height: 94px;
  }

  .logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .hero-visual {
    justify-self: stretch;
  }

  .hero-visual img {
    min-height: 320px;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .quick-links {
    grid-template-columns: 1fr;
  }

  .services-catalog {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .location-directions.floating {
    position: static;
    width: auto;
    margin: 0.9rem;
  }

  .full-bleed-map,
  .full-bleed-map iframe {
    min-height: 420px;
  }

  .about-us-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-us-image-panel::before,
  .about-us-image-panel::after {
    display: none;
  }

  .about-us-image-wrap {
    min-height: 260px;
  }

  .about-us-image-wrap.award-style::before,
  .about-us-image-wrap.award-style::after {
    display: none;
  }

  .about-us-image-wrap img {
    width: min(320px, 100%);
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-summary {
    position: static;
  }

  .admin-grid {
    grid-template-columns: 1fr;
  }

  .admin-day-row {
    align-items: start;
    flex-direction: column;
  }

  .admin-appointments-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-appointments-table-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .admin-appointments-table {
    min-width: 1320px;
    table-layout: auto;
  }

  .admin-appointments-table th,
  .admin-appointments-table td {
    white-space: nowrap;
  }

  .admin-time-pickers {
    grid-template-columns: 1fr;
  }

  .admin-time-wheel {
    grid-template-columns: 1fr;
  }

  .book-now-fab {
    width: 98px;
    height: 98px;
    right: 14px;
    bottom: 14px;
  }

  .fab-core {
    font-size: 1.35rem;
  }
}

@media (max-width: 760px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav.open {
    display: block;
  }

  .nav-wrap {
    min-height: 84px;
  }
}
