.page-appointment {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 162, 74, 0.12), transparent 55%),
    var(--cream, #f6f1e4);
}
.apt-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 640px;
  margin: 0 auto;
  padding: 20px 18px 8px;
}
.apt-top__brand img {
  height: 48px;
  width: auto;
}
.apt-top__meta {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep, #a88b45);
}
.apt-main {
  max-width: 640px;
  padding-bottom: 48px;
}
.apt-card {
  background: #fff;
  border: 1px solid var(--line, rgba(30, 61, 40, 0.12));
  border-radius: 16px;
  padding: 28px 22px 24px;
  box-shadow: 0 18px 40px -24px rgba(20, 40, 28, 0.35);
}
.apt-eyebrow {
  margin: 0 0 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep, #a88b45);
}
.apt-card h1 {
  margin: 0 0 10px;
  font-family: var(--display, inherit);
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  color: var(--forest, #1e3d28);
  line-height: 1.2;
}
.apt-lede {
  margin: 0 0 20px;
  color: var(--ink-soft, #3d4a42);
  line-height: 1.5;
}
.apt-form {
  display: grid;
  gap: 16px;
}
.apt-field label,
.apt-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft, #3d4a42);
  margin-bottom: 6px;
}
.apt-req {
  color: #a33;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.85em;
}
.apt-field input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1.5px solid var(--line, rgba(30, 61, 40, 0.15));
  border-radius: 10px;
  font-size: 16px;
  background: var(--cream, #f6f1e4);
}
.apt-field input:focus {
  outline: none;
  border-color: var(--gold-deep, #a88b45);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201, 162, 74, 0.2);
}
.apt-field small {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--muted, #6a756e);
  line-height: 1.4;
}
.apt-days,
.apt-times {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.apt-chip {
  border: 1.5px solid var(--line, rgba(30, 61, 40, 0.15));
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--forest, #1e3d28);
  cursor: pointer;
  min-height: 44px;
}
.apt-chip.is-on {
  border-color: var(--forest, #1e3d28);
  background: rgba(30, 61, 40, 0.08);
  box-shadow: 0 0 0 1px rgba(30, 61, 40, 0.12);
}
.apt-chip:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.apt-fine {
  margin: 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted, #6a756e);
  line-height: 1.45;
}
.apt-alert {
  padding: 12px 14px;
  border-radius: 10px;
  background: #fdecea;
  border: 1px solid #f5c2c0;
  color: #8a1f11;
  margin-bottom: 14px;
  font-size: 0.92rem;
}
.apt-ok {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(30, 61, 40, 0.08);
  border: 1px solid rgba(30, 61, 40, 0.15);
  color: var(--forest, #1e3d28);
  margin-bottom: 14px;
  line-height: 1.5;
}
.apt-ok strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.05rem;
}
