:root {
  color-scheme: light;
  --bg: #fbf9f4;
  --surface: #ffffff;
  --surface-soft: #f5f3ee;
  --surface-warm: #eee7dc;
  --text: #3d342b;
  --muted: #6d655b;
  --primary: #725b38;
  --primary-dark: #584423;
  --gold: #c5a880;
  --gold-light: #e0c298;
  --border: #d9d0c5;
  --error: #a43e35;
  --success: #557765;
  --shadow: 0 12px 40px rgba(62, 50, 35, 0.08);
  --header-height: 64px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --serif: "Songti SC", "STSong", "Noto Serif CJK SC", Georgia, serif;
  --sans: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  min-width: 320px;
  background: #e9e5df;
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.drawer-open {
  overflow: hidden;
  touch-action: none;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.35;
}

.site-shell {
  position: relative;
  width: min(100%, 480px);
  min-height: 100vh;
  margin-inline: auto;
  overflow: clip;
  background: var(--bg);
  box-shadow: 0 0 50px rgba(43, 36, 29, 0.08);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--text);
  color: white;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.mobile-header {
  position: sticky;
  z-index: 80;
  top: 0;
  display: flex;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 8px 18px;
  border-bottom: 1px solid rgba(197, 168, 128, 0.28);
  background: rgba(251, 249, 244, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-dark);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
}

.brand img {
  height: 36px;
  width: auto;
}

.icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--primary-dark);
  cursor: pointer;
  place-items: center;
}

.icon-button:active {
  background: var(--surface-warm);
}

.icon-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.drawer-backdrop {
  position: fixed;
  z-index: 89;
  inset: 0;
  background: rgba(39, 32, 25, 0.42);
  opacity: 0;
  transition: opacity 180ms ease;
}

.drawer-backdrop.is-open {
  opacity: 1;
}

.mobile-drawer {
  position: fixed;
  z-index: 90;
  top: 0;
  right: max(0px, calc((100vw - 480px) / 2));
  width: min(84vw, 360px);
  height: 100dvh;
  padding: max(18px, env(safe-area-inset-top)) 22px calc(24px + var(--safe-bottom));
  background: var(--surface);
  box-shadow: -12px 0 36px rgba(45, 36, 26, 0.16);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  font-family: var(--serif);
  font-size: 20px;
}

.mobile-drawer nav {
  display: grid;
  margin-top: 18px;
}

.mobile-drawer nav a {
  min-height: 52px;
  padding: 13px 4px;
  border-bottom: 1px solid #eee8df;
  color: var(--text);
  font-size: 16px;
  text-decoration: none;
}

.drawer-phone {
  display: block;
  margin-top: 28px;
  padding: 14px 16px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--primary-dark);
  text-align: center;
  text-decoration: none;
}

.section-pad {
  padding: 48px 20px;
}

.surface-section {
  background: var(--surface);
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading h2 {
  color: var(--text);
  font-size: clamp(24px, 6.2vw, 29px);
}

.section-heading > p:last-child {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

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

.eyebrow {
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.light-heading h2,
.light-heading > p:last-child {
  color: #fffaf2;
}

.hero {
  padding-top: 22px;
}

.hero-card {
  position: relative;
  aspect-ratio: 0.88;
  overflow: hidden;
  border-radius: 22px;
  background: var(--surface-warm);
  box-shadow: var(--shadow);
}

.hero-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  background: linear-gradient(180deg, transparent 36%, rgba(31, 24, 18, 0.78) 100%);
  color: white;
}

.hero-overlay h1 {
  max-width: 310px;
  font-size: clamp(29px, 8vw, 38px);
  letter-spacing: 0.01em;
}

.hero-overlay > p:last-child {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
  padding: 17px 6px;
  border: 1px solid rgba(197, 168, 128, 0.25);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 4px 18px rgba(62, 50, 35, 0.04);
}

.stat-strip div {
  display: grid;
  gap: 2px;
  padding-inline: 6px;
  text-align: center;
}

.stat-strip div + div {
  border-left: 1px solid var(--border);
}

.stat-strip strong {
  color: var(--primary);
  font-family: var(--serif);
  font-size: clamp(16px, 4.6vw, 21px);
}

.stat-strip span {
  color: var(--muted);
  font-size: 10px;
}

.hero-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

.button:active {
  transform: scale(0.985);
}

.button-primary {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
  box-shadow: 0 8px 18px rgba(88, 68, 35, 0.16);
}

.button-secondary {
  border-color: var(--gold);
  background: transparent;
  color: var(--primary-dark);
}

.button-on-dark {
  border-color: var(--gold-light);
  color: #fff2dd;
}

.button-light {
  border-color: #f7e4c4;
  background: #f7dfb6;
  color: #33291f;
}

.full-button {
  width: 100%;
}

.team-section {
  padding-bottom: 38px;
}

.team-orbit {
  position: relative;
  width: min(100%, 350px);
  aspect-ratio: 1;
  margin: 26px auto 10px;
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(197, 168, 128, 0.28);
  border-radius: 50%;
}

.orbit-ring-outer {
  inset: 4%;
}

.orbit-ring-inner {
  inset: 22%;
}

.team-center {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 96px;
  height: 96px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: #fffaf3;
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(88, 68, 35, 0.08);
  transform: translate(-50%, -50%);
  place-items: center;
}

.team-center span {
  font-family: var(--serif);
  font-size: 15px;
}

.team-role {
  position: absolute;
  z-index: 3;
  display: grid;
  min-width: 80px;
  min-height: 54px;
  padding: 8px;
  border: 1px solid rgba(197, 168, 128, 0.34);
  border-radius: 13px;
  background: var(--surface-soft);
  color: var(--text);
  box-shadow: 0 5px 15px rgba(62, 50, 35, 0.06);
  font-size: 12px;
  text-align: center;
  place-items: center;
}

.role-1 { top: 3%; left: 50%; transform: translateX(-50%); }
.role-2 { top: 24%; right: 1%; }
.role-3 { right: 1%; bottom: 24%; }
.role-4 { bottom: 3%; left: 50%; transform: translateX(-50%); }
.role-5 { bottom: 24%; left: 1%; }
.role-6 { top: 24%; left: 1%; }

.legal-note {
  margin-top: 16px;
  color: #80766c;
  font-size: 11px;
  text-align: center;
}

.legal-note-light {
  color: rgba(255, 255, 255, 0.68);
}

.service-cards {
  display: grid;
  gap: 14px;
}

.service-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 13px;
  padding: 18px;
  border: 1px solid rgba(197, 168, 128, 0.22);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 8px 26px rgba(62, 50, 35, 0.05);
}

.service-icon {
  display: grid;
  width: 56px;
  height: 56px;
  border-radius: 17px;
  background: var(--surface-warm);
  color: var(--primary);
  font-family: var(--serif);
  font-size: 22px;
  place-items: center;
}

.service-card h3 {
  margin-top: 2px;
  font-size: 19px;
}

.service-card p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.service-card a {
  grid-column: 2;
  width: max-content;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.security-section {
  background: #3d342b;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.security-grid article {
  min-height: 154px;
  padding: 18px 14px;
  border: 1px solid rgba(224, 194, 152, 0.22);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.055);
  color: #fffaf2;
}

.security-grid article > span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(197, 168, 128, 0.18);
  color: var(--gold-light);
  font-size: 12px;
  place-items: center;
}

.security-grid h3 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
}

.security-grid p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.security-grid .security-wide {
  grid-column: 1 / -1;
  min-height: 130px;
}

.photo-scroller {
  display: grid;
  grid-auto-columns: 82%;
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.photo-scroller::-webkit-scrollbar,
.timeline-tabs::-webkit-scrollbar,
.meal-stage-tabs::-webkit-scrollbar,
.tab-list::-webkit-scrollbar {
  display: none;
}

.photo-scroller figure {
  position: relative;
  overflow: hidden;
  border-radius: 17px;
  scroll-snap-align: start;
}

.photo-scroller img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-scroller figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 28px 16px 13px;
  background: linear-gradient(transparent, rgba(34, 27, 20, 0.78));
  color: white;
  font-family: var(--serif);
  font-size: 16px;
}

.support-panels {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

details {
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--surface);
}

summary {
  position: relative;
  min-height: 54px;
  padding: 15px 45px 15px 16px;
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 50%;
  right: 18px;
  content: "";
  background-color: var(--primary);
  width: 14px;
  height: 2px;
  transform: translateY(-50%);
  transition: transform 0.25s ease;
}

summary::before {
  position: absolute;
  top: 50%;
  right: 24px;
  content: "";
  background-color: var(--primary);
  width: 2px;
  height: 14px;
  transform: translateY(-50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

details[open] summary::before {
  opacity: 0;
  transform: translateY(-50%) scaleY(0);
}

details p {
  padding: 0 16px 16px;
  color: var(--muted);
  font-size: 13px;
}

.six-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.six-grid div {
  display: grid;
  min-height: 130px;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
}

.six-grid span {
  display: grid;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--primary);
  font-family: var(--serif);
  font-size: 18px;
  place-items: center;
}

.six-grid strong {
  font-size: 14px;
}

.tab-list,
.meal-stage-tabs,
.timeline-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.tab-list {
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.tab-list button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 8px 10px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.tab-list button[aria-selected="true"] {
  border-color: var(--primary);
  color: var(--primary-dark);
  font-weight: 700;
}

.care-panel {
  display: grid;
  gap: 10px;
}

.care-panel[hidden] {
  display: none;
}

.meal-section {
  background: #f8f4ed;
}

.meal-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #43372b;
  box-shadow: var(--shadow);
}

.meal-card > img {
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: cover;
}

.meal-stage-tabs {
  position: absolute;
  top: 38%;
  right: 10px;
  left: 10px;
  justify-content: space-between;
  gap: 5px;
}

.meal-stage-tabs button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
  min-height: 52px;
  padding: 6px 4px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  background: rgba(61, 52, 43, 0.55);
  color: white;
  font-family: var(--serif);
  cursor: pointer;
  backdrop-filter: blur(10px);
  gap: 1px;
  transition: background 0.2s, border-color 0.2s;
}

.meal-stage-tabs button .tab-label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.meal-stage-tabs button .tab-sub {
  font-size: 9px;
  font-weight: 400;
  opacity: 0.8;
  line-height: 1.2;
  font-family: var(--sans);
}

.meal-stage-tabs button[aria-selected="true"] {
  border-color: var(--gold-light);
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(224, 194, 152, 0.25);
}

.meal-stage-tabs button[aria-selected="true"] .tab-sub {
  opacity: 1;
}

.meal-copy {
  padding: 22px 20px 26px;
  background: #43372b;
  color: white;
}

.meal-copy > span {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
}

.meal-days {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(224, 194, 152, 0.18);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 500;
}

.meal-copy h3 {
  margin-top: 5px;
  font-size: 19px;
  line-height: 1.35;
}

.meal-detail-block {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.meal-detail-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.meal-detail-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  line-height: 1.65;
}

.timeline-tabs {
  position: relative;
  margin-bottom: 16px;
}

/* 渐隐滚动提示 */
.timeline-tabs::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 6px;
  width: 36px;
  background: linear-gradient(to right, transparent, var(--bg));
  pointer-events: none;
  z-index: 1;
}

.timeline-tabs button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 62px;
  min-height: 52px;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--muted);
  cursor: pointer;
  gap: 1px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.timeline-tabs button .time-label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.timeline-tabs button .time-sub {
  font-size: 10px;
  font-weight: 400;
  opacity: 0.7;
  line-height: 1.2;
}

.timeline-tabs button[aria-selected="true"] {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}

.timeline-tabs button[aria-selected="true"] .time-sub {
  opacity: 1;
}

.timeline-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(62, 50, 35, 0.05);
}

.timeline-card div {
  padding: 22px 20px;
}

.timeline-period {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.timeline-card span#timeline-badge {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.timeline-card h3 {
  margin-top: 4px;
  font-size: 18px;
  line-height: 1.4;
}

.timeline-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  white-space: pre-line;
}

.management-grid {
  display: grid;
  gap: 14px;
}

.management-grid article {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
}

.management-grid article > span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.management-grid h3 {
  margin-top: 3px;
  font-size: 20px;
}

.management-grid ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.management-grid li {
  padding: 10px;
  border-radius: 10px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 12px;
}

.capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
}

.capability-tags span {
  padding: 9px 13px;
  border: 1px solid rgba(197, 168, 128, 0.38);
  border-radius: 999px;
  background: #fbf8f2;
  color: var(--primary-dark);
  font-size: 12px;
}

.meetup-section {
  background: #f5efe5;
}

.meetup-card {
  padding: 26px 22px;
  border-radius: 22px;
  background:
    linear-gradient(110deg, rgba(52, 42, 32, 0.97), rgba(88, 68, 35, 0.91)),
    url("assets/club-suite.webp") center / cover;
  color: white;
  box-shadow: var(--shadow);
}

.venue {
  display: grid;
  gap: 2px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.venue strong {
  font-size: 13px;
}

.venue span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.meetup-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.process-list {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 22px;
  width: 1px;
  background: var(--border);
  content: "";
}

.process-list li {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 0 0 24px;
}

.process-list li:last-child {
  padding-bottom: 0;
}

.process-list li > span {
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--surface);
  color: var(--primary);
  font-size: 11px;
  place-items: center;
}

.process-list strong {
  display: block;
  padding-top: 2px;
  color: var(--text);
  font-size: 15px;
}

.process-list p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.guarantee-section {
  background: #f8f4ed;
}

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

.guarantee-grid article {
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: 170px;
  padding: 15px 10px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  text-align: center;
}

.guarantee-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--surface-warm);
  color: var(--primary);
  font-family: var(--serif);
  place-items: center;
}

.guarantee-grid strong {
  font-size: 13px;
}

.guarantee-grid p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.appointment-section {
  padding-bottom: 60px;
}

.appointment-card {
  padding: 26px 20px;
  border: 1px solid rgba(197, 168, 128, 0.28);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.field {
  margin-bottom: 17px;
}

.field label,
.service-options legend {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.field label > span {
  color: var(--error);
}

.field small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 400;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 49px;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 13px;
  outline: none;
  background: var(--surface-soft);
  color: var(--text);
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
}

.field-help {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
}

.service-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin: 0 0 17px;
  padding: 0;
  border: 0;
}

.service-options legend {
  grid-column: 1 / -1;
}

.service-options label {
  position: relative;
  cursor: pointer;
}

.service-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-options span {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.service-options input:checked + span {
  border-color: var(--gold);
  background: #fffaf2;
  color: var(--primary-dark);
  box-shadow: inset 0 0 0 1px var(--gold);
}

.service-options input:focus-visible + span {
  outline: 3px solid rgba(197, 168, 128, 0.25);
}

.privacy-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
  cursor: pointer;
}

.privacy-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--primary);
}

.privacy-consent a {
  color: var(--primary);
}

.form-status {
  min-height: 24px;
  margin: 10px 0 6px;
  color: var(--error);
  font-size: 12px;
  text-align: center;
}

.form-status.is-success {
  color: var(--success);
}

.submit-button {
  width: 100%;
  border: 0;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.mobile-footer {
  display: grid;
  justify-items: center;
  padding: 42px 20px calc(112px + var(--safe-bottom));
  border-top: 1px solid var(--border);
  background: #f5f2ec;
  text-align: center;
}

.mobile-footer .footer-logo-img {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
}

.mobile-footer strong {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 20px;
}

.mobile-footer > a:not(.icp-link) {
  margin-top: 5px;
  color: var(--primary-dark);
  font-size: 21px;
  font-weight: 700;
  text-decoration: none;
}

.mobile-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
}

.mobile-footer nav a,
.icp-link {
  color: var(--muted);
  font-size: 12px;
}

.mobile-footer p {
  margin-top: 20px;
  color: #8b837a;
  font-size: 11px;
}

.icp-link {
  margin-top: 4px;
}

.fixed-actions {
  position: fixed;
  z-index: 75;
  right: max(0px, calc((100vw - 480px) / 2));
  bottom: 0;
  left: max(0px, calc((100vw - 480px) / 2));
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 10px;
  padding: 10px 16px calc(10px + var(--safe-bottom));
  border-top: 1px solid rgba(197, 168, 128, 0.26);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 -8px 26px rgba(62, 50, 35, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.fixed-actions a {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.fixed-actions .fixed-primary {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}

.fixed-actions svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.success-sheet {
  width: min(calc(100% - 24px), 456px);
  max-height: 90dvh;
  margin: auto auto 0;
  padding: 28px 22px calc(24px + var(--safe-bottom));
  border: 0;
  border-radius: 24px 24px 0 0;
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 -12px 40px rgba(43, 35, 27, 0.18);
  text-align: center;
}

.success-sheet::backdrop {
  background: rgba(44, 37, 30, 0.46);
  backdrop-filter: blur(3px);
}

.sheet-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 26px;
  cursor: pointer;
}

.success-mark {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 12px auto 16px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--primary);
  font-size: 30px;
  place-items: center;
}

.success-sheet h2 {
  font-size: 26px;
}

.success-sheet > p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
}

.success-sheet dl {
  margin: 22px 0;
  padding: 4px 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface-soft);
}

.success-sheet dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  text-align: left;
}

.success-sheet dl div + div {
  border-top: 1px solid var(--border);
}

.success-sheet dt {
  color: var(--muted);
  font-size: 12px;
}

.success-sheet dd {
  overflow-wrap: anywhere;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  text-align: right;
}

.privacy-page {
  padding-bottom: 70px;
}

.privacy-main {
  padding: 32px 20px 70px;
}

.privacy-main article {
  padding: 24px 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
}

.privacy-main h1 {
  font-size: 28px;
}

.privacy-main h2 {
  margin-top: 28px;
  font-size: 19px;
}

.privacy-main p,
.privacy-main li {
  color: var(--muted);
  font-size: 13px;
}

.privacy-main p {
  margin-top: 9px;
}

.privacy-main ul {
  padding-left: 20px;
}

@media (max-width: 350px) {
  .section-pad {
    padding-right: 16px;
    padding-left: 16px;
  }

  .team-role {
    min-width: 74px;
    font-size: 11px;
  }

  .team-center {
    width: 86px;
    height: 86px;
  }

  .meal-stage-tabs button {
    min-height: 46px;
    padding: 5px 3px;
  }

  .meal-stage-tabs button .tab-label {
    font-size: 11px;
  }

  .meal-stage-tabs button .tab-sub {
    font-size: 8px;
  }

  .timeline-tabs button {
    min-width: 54px;
    min-height: 46px;
    padding: 5px 7px;
  }

  .timeline-tabs button .time-label {
    font-size: 11px;
  }

  .meetup-actions {
    grid-template-columns: 1fr;
  }

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

  .guarantee-grid article {
    min-height: 0;
  }
}

@media (min-width: 414px) {
  .section-pad {
    padding-right: 24px;
    padding-left: 24px;
  }

  .hero-card {
    aspect-ratio: 0.94;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
