:root {
  --ink: #17352f;
  --ink-soft: #31514a;
  --muted: #71857f;
  --primary: #377f70;
  --primary-dark: #245f53;
  --primary-soft: #e7f4ef;
  --mint: #d9eee6;
  --sky: #dfeaf4;
  --blush: #f3ddda;
  --cream: #f5edcf;
  --line: rgba(70, 119, 106, 0.14);
  --surface: rgba(255, 255, 255, 0.82);
  --danger: #b44b51;
  --shadow: 0 28px 80px rgba(35, 85, 72, 0.12);
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: #f3f9f6;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #f3f9f6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.24;
  background-image: radial-gradient(rgba(42, 91, 78, 0.22) 0.65px, transparent 0.65px);
  background-size: 13px 13px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

[hidden] {
  display: none !important;
}

/* Shared navigation */
.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 11px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.28), transparent 60%),
    var(--primary);
  box-shadow: 0 8px 24px rgba(37, 98, 83, 0.18);
  font-size: 14px;
  font-weight: 800;
}

.site-brand > span:last-child {
  display: grid;
  gap: 1px;
}

.site-brand strong {
  font-size: 13px;
  letter-spacing: 0.13em;
}

.site-brand small {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.12em;
}

/* Welcome page */
.home-page {
  position: relative;
  min-height: 100svh;
  background:
    linear-gradient(124deg, rgba(225, 241, 234, 0.9), rgba(243, 242, 229, 0.9) 47%, rgba(236, 226, 239, 0.86)),
    #eef7f3;
}

.home-page::after {
  display: none;
}

.home-aurora {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(4px);
}

.home-aurora-one {
  top: -170px;
  right: 0;
  width: 610px;
  height: 610px;
  opacity: 0.7;
  background: radial-gradient(circle at 38% 42%, rgba(237, 166, 189, 0.77), rgba(203, 220, 237, 0.42) 48%, transparent 72%);
}

.home-aurora-two {
  top: 235px;
  left: -200px;
  width: 570px;
  height: 570px;
  opacity: 0.72;
  background: radial-gradient(circle, rgba(166, 215, 199, 0.86), rgba(214, 231, 214, 0.4) 50%, transparent 72%);
}

.home-orbit {
  position: absolute;
  z-index: 1;
  top: 210px;
  left: calc(50% + 365px);
  display: grid;
  gap: 13px;
  pointer-events: none;
}

.home-orbit span {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(54, 121, 105, 0.42);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.22);
}

.home-orbit span:nth-child(2) {
  margin-left: 22px;
  background: rgba(207, 150, 166, 0.52);
}

.home-orbit span:nth-child(3) {
  margin-left: 4px;
  background: rgba(205, 171, 88, 0.56);
}

.home-nav {
  position: relative;
  z-index: 5;
  display: flex;
  width: min(1180px, calc(100% - 56px));
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto;
}

.home-nav nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.home-nav nav a {
  position: relative;
  padding: 9px 0;
  color: #527069;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.home-nav nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--primary);
  content: "";
  transition: transform 0.2s ease;
}

.home-nav nav a:hover::after {
  transform: scaleX(1);
}

.home-nav .nav-admin {
  padding: 8px 15px;
  border: 1px solid rgba(76, 121, 109, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
}

.home-nav .nav-admin::after {
  display: none;
}

.home-main,
.home-footer {
  position: relative;
  z-index: 2;
}

.home-main {
  display: grid;
  min-height: 100svh;
  place-items: center;
}

.welcome-hero {
  position: relative;
  display: grid;
  width: min(850px, calc(100% - 40px));
  min-height: 100svh;
  align-content: center;
  justify-items: center;
  margin: 0 auto;
  padding: 52px 20px;
  text-align: center;
}

.welcome-hero::before {
  position: absolute;
  z-index: -1;
  width: 495px;
  height: 495px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 38px rgba(255, 255, 255, 0.06),
    0 0 0 79px rgba(255, 255, 255, 0.035);
}

.home-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: #4a786c;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.24em;
}

.home-eyebrow span {
  width: 27px;
  height: 1px;
  background: #c6a85c;
}

.welcome-hero h1 {
  display: grid;
  justify-items: center;
  margin: 0;
}

.welcome-hero h1 > span {
  color: rgba(28, 64, 56, 0.92);
  font-size: clamp(54px, 10.6vw, 112px);
  font-weight: 250;
  line-height: 0.92;
  letter-spacing: 0.17em;
  text-indent: 0.17em;
}

.welcome-hero h1 strong {
  margin-top: 21px;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 620;
  letter-spacing: 0.18em;
  text-indent: 0.18em;
}

.welcome-copy {
  max-width: 570px;
  margin: 23px auto 0;
  color: #5e756f;
  font-size: 15px;
  line-height: 1.95;
}

.welcome-actions {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 32px;
}

.home-primary,
.home-secondary,
.info-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.home-primary {
  min-width: 176px;
  height: 50px;
  gap: 28px;
  padding: 0 12px 0 27px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(35, 93, 80, 0.94);
  box-shadow: 0 15px 34px rgba(35, 93, 80, 0.22);
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-primary i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 15px;
  font-style: normal;
}

.home-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 39px rgba(35, 93, 80, 0.28);
}

.home-secondary {
  height: 50px;
  padding: 0 20px;
  color: #507068;
  border: 1px solid rgba(69, 116, 104, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  font-size: 13px;
  font-weight: 650;
  backdrop-filter: blur(10px);
}

.welcome-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-top: 36px;
  color: #657d77;
  font-size: 11px;
}

.welcome-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.welcome-meta i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(54, 121, 105, 0.1);
}

.home-info {
  width: min(1120px, calc(100% - 40px));
  margin: 32px auto 0;
  padding: 82px 70px 70px;
  border: 1px solid rgba(77, 124, 111, 0.12);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 24px 70px rgba(42, 89, 77, 0.08);
  backdrop-filter: blur(18px);
}

.home-info-heading {
  display: grid;
  justify-items: center;
  text-align: center;
}

.home-info-heading > p {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.home-info-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 620;
  letter-spacing: 0.11em;
}

.home-info-heading > span {
  margin-top: 13px;
  color: var(--muted);
  font-size: 14px;
}

.home-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.home-info-grid article {
  position: relative;
  min-height: 202px;
  overflow: hidden;
  padding: 31px 29px;
  border: 1px solid rgba(77, 124, 111, 0.11);
  border-radius: 24px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.88), rgba(236, 247, 242, 0.68));
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-info-grid article::after {
  position: absolute;
  right: -35px;
  bottom: -46px;
  width: 115px;
  height: 115px;
  border: 1px solid rgba(59, 119, 103, 0.1);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 15px rgba(59, 119, 103, 0.025);
}

.home-info-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(45, 93, 80, 0.09);
}

.info-number {
  color: #8aa39c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.home-info-grid h3 {
  margin: 27px 0 10px;
  font-size: 18px;
  letter-spacing: 0.06em;
}

.home-info-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.info-cta {
  width: fit-content;
  gap: 22px;
  margin: 38px auto 0;
  padding: 13px 23px;
  color: var(--primary-dark);
  border-bottom: 1px solid rgba(54, 121, 105, 0.34);
  font-size: 13px;
  font-weight: 700;
}

.home-footer {
  display: flex;
  width: min(1120px, calc(100% - 40px));
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  padding: 38px 4px 42px;
  color: #7b8f89;
  font-size: 10px;
  letter-spacing: 0.1em;
}

/* Booking page */
.booking-page {
  position: relative;
  background:
    radial-gradient(circle at 12% 8%, rgba(201, 233, 220, 0.73), transparent 30rem),
    radial-gradient(circle at 91% 47%, rgba(235, 215, 221, 0.62), transparent 28rem),
    linear-gradient(150deg, #f8fcfa 0%, #eef7f3 55%, #f7f4ef 100%);
}

.page-glow {
  position: fixed;
  z-index: 0;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(9px);
  opacity: 0.48;
}

.page-glow-one {
  top: -130px;
  right: -90px;
  background: #cfe8df;
}

.page-glow-two {
  bottom: -140px;
  left: -100px;
  background: #efe0bd;
}

.inner-nav {
  position: relative;
  z-index: 4;
  display: flex;
  width: min(1040px, calc(100% - 40px));
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  border-bottom: 1px solid rgba(74, 120, 108, 0.11);
}

.inner-nav > div {
  display: flex;
  gap: 25px;
}

.inner-nav > div a {
  color: #617a73;
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
}

.inner-nav > div a:hover {
  color: var(--primary);
}

.booking-shell {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 36px;
}

.hero {
  margin-bottom: 31px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  color: var(--primary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.eyebrow span {
  width: 25px;
  height: 1px;
  background: #c6a85c;
}

.hero h1 {
  margin: 0;
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 650;
  letter-spacing: 0.09em;
}

.hero > p {
  margin: 15px 0 20px;
  color: var(--muted);
  font-size: 15px;
}

.hero strong,
.field b,
.choice-field b {
  color: #ce6b70;
  font-weight: 700;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 17px;
  color: #55736b;
  border: 1px solid rgba(71, 129, 112, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  backdrop-filter: blur(10px);
}

.note-icon {
  display: inline-grid;
  width: 19px;
  height: 19px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--primary);
  font-size: 11px;
}

.booking-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(75, 126, 112, 0.13);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.booking-card::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 180px;
  height: 180px;
  border-radius: 0 0 0 100%;
  background: linear-gradient(220deg, rgba(217, 238, 230, 0.58), transparent 68%);
  pointer-events: none;
  content: "";
}

.card-stitch {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 18px;
  width: 46px;
  height: 13px;
  opacity: 0.5;
  background-image: radial-gradient(var(--primary) 1px, transparent 1px);
  background-size: 7px 7px;
}

.form-section,
.submit-area,
.form-alert {
  position: relative;
  z-index: 1;
}

.form-section {
  padding: 41px 44px 44px;
}

.form-section + .form-section {
  border-top: 1px solid var(--line);
}

.attendance-section {
  background: linear-gradient(135deg, rgba(235, 247, 242, 0.54), rgba(255, 255, 255, 0.26));
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 31px;
}

.section-heading h2 {
  margin: 0 0 4px;
  font-size: 21px;
  font-weight: 680;
  letter-spacing: 0.06em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.section-number {
  display: grid;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 15px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), transparent 55%),
    var(--primary);
  box-shadow: 0 9px 23px rgba(54, 123, 109, 0.2);
  font-size: 12px;
  font-weight: 760;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px 22px;
}

.field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 9px;
}

.field > span,
.choice-field legend {
  color: #2b4942;
  font-size: 13px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--ink);
  border: 1px solid #d4e2dd;
  border-radius: 13px;
  outline: none;
  background: rgba(252, 254, 253, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.field input,
.field select {
  height: 50px;
  padding: 0 15px;
}

.field textarea {
  min-height: 114px;
  padding: 14px 15px;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #a5c5bb;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(54, 123, 109, 0.1);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a5b4af;
}

.field-wide {
  grid-column: 1 / -1;
}

.choice-field {
  margin: 0;
  padding: 0;
  border: 0;
}

.segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.segmented label,
.attendance-options label {
  position: relative;
  cursor: pointer;
}

.segmented input,
.attendance-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.segmented span {
  display: grid;
  height: 50px;
  place-items: center;
  color: #5a706a;
  border: 1px solid #d4e2dd;
  border-radius: 13px;
  background: rgba(252, 254, 253, 0.9);
  transition: 0.18s ease;
}

.segmented input:checked + span {
  color: var(--primary-dark);
  border-color: var(--primary);
  background: var(--primary-soft);
  box-shadow: inset 0 0 0 1px var(--primary);
  font-weight: 700;
}

.segmented input:focus-visible + span,
.attendance-options input:focus-visible + span {
  outline: 3px solid rgba(54, 123, 109, 0.23);
  outline-offset: 2px;
}

.attendance-choice {
  gap: 12px;
}

.attendance-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.attendance-options label > span {
  display: grid;
  min-height: 108px;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto auto;
  column-gap: 13px;
  align-content: center;
  padding: 19px;
  color: #4c625d;
  border: 1px solid #d4e2dd;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  transition: 0.18s ease;
}

.attendance-options i {
  display: grid;
  grid-row: 1 / 3;
  width: 40px;
  height: 40px;
  place-items: center;
  align-self: center;
  color: var(--primary);
  border-radius: 13px;
  background: var(--primary-soft);
  font-style: normal;
  font-weight: 800;
}

.attendance-options strong {
  align-self: end;
  font-size: 15px;
}

.attendance-options small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

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

.attendance-options input:checked + span i {
  color: #fff;
  background: var(--primary);
}

.reason-field {
  margin-top: 23px;
}

.reason-field > small {
  display: flex;
  justify-content: space-between;
  color: #899993;
}

.field-error {
  min-height: 16px;
  color: var(--danger);
  font-size: 11px;
  font-weight: 500;
}

.field.invalid input,
.field.invalid select,
.field.invalid textarea,
.choice-field.invalid .segmented span,
.choice-field.invalid .attendance-options label > span {
  border-color: #d88b8f;
}

.form-alert {
  margin: 29px 44px 0;
  padding: 13px 16px;
  border-radius: 13px;
  font-size: 13px;
}

.error-alert {
  color: #8f373d;
  border: 1px solid #efd0d2;
  background: #fff2f2;
}

.submit-area {
  padding: 32px 44px 36px;
  text-align: center;
  border-top: 1px solid var(--line);
  background: rgba(250, 253, 251, 0.78);
}

.primary-button,
.secondary-button,
.admin-button {
  border: 0;
  font-weight: 700;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.primary-button {
  display: inline-flex;
  min-width: 238px;
  height: 54px;
  align-items: center;
  justify-content: center;
  gap: 33px;
  padding: 0 20px 0 32px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 13px 29px rgba(54, 123, 109, 0.23);
}

.primary-button:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
  box-shadow: 0 17px 34px rgba(54, 123, 109, 0.28);
}

.primary-button:disabled {
  cursor: wait;
  transform: none;
  opacity: 0.72;
}

.button-arrow {
  font-size: 19px;
}

.submit-help,
.network-hint {
  margin: 10px 0 0;
  color: #8a9994;
  font-size: 11px;
}

.network-hint {
  min-height: 18px;
  margin: 0 0 8px;
  color: var(--primary);
}

.booking-shell > footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 25px;
  color: #82948e;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.06em;
}

.booking-shell > footer a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.13em;
}

.booking-shell > footer a::after {
  margin-left: 12px;
  color: #b7c5c0;
  content: "•";
}

.dialog-backdrop {
  position: fixed;
  z-index: 30;
  inset: 0;
  display: grid;
  padding: 22px;
  place-items: center;
  background: rgba(24, 51, 45, 0.4);
  backdrop-filter: blur(7px);
}

.success-dialog {
  width: min(410px, 100%);
  padding: 40px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 27px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 90px rgba(24, 51, 45, 0.28);
}

.success-mark {
  display: grid;
  width: 66px;
  height: 66px;
  margin: 0 auto 18px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 10px 25px rgba(54, 123, 109, 0.25);
  font-size: 30px;
}

.success-dialog h2 {
  margin: 0 0 10px;
}

.success-dialog > p {
  margin: 6px 0;
  color: var(--muted);
}

.success-id {
  font-size: 13px;
}

.secondary-button {
  margin-top: 22px;
  padding: 12px 24px;
  color: var(--primary-dark);
  border: 1px solid #bed6ce;
  border-radius: 999px;
  background: var(--primary-soft);
}

.secondary-button:hover {
  background: #daeee6;
}

@media (max-width: 760px) {
  .home-aurora-one {
    top: -90px;
    right: 5px;
    width: 370px;
    height: 370px;
  }

  .home-aurora-two {
    left: -140px;
    width: 420px;
    height: 420px;
  }

  .home-page::after {
    top: 94px;
    width: calc(100% - 24px);
    height: 590px;
    border-radius: 30px;
  }

  .home-nav {
    width: calc(100% - 32px);
    min-height: 76px;
  }

  .home-nav nav {
    gap: 15px;
  }

  .home-nav nav a:first-child {
    display: none;
  }

  .home-nav nav a {
    font-size: 11px;
  }

  .home-nav .nav-admin {
    padding: 7px 12px;
  }

  .welcome-hero {
    min-height: 100svh;
    padding: 48px 20px;
  }

  .welcome-hero::before {
    width: min(370px, 100vw);
    height: min(370px, 100vw);
  }

  .welcome-hero h1 > span {
    font-size: clamp(45px, 14vw, 70px);
  }

  .welcome-copy {
    max-width: 460px;
    font-size: 14px;
  }

  .home-orbit {
    display: none;
  }

  .home-info {
    padding: 58px 24px 48px;
    border-radius: 28px;
  }

  .home-info-grid {
    grid-template-columns: 1fr;
  }

  .home-info-grid article {
    min-height: 166px;
  }

  .home-info-grid h3 {
    margin-top: 20px;
  }

  .home-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .inner-nav {
    width: calc(100% - 28px);
  }

  .inner-nav > div {
    gap: 14px;
  }

  .booking-shell {
    width: min(100% - 20px, 860px);
    padding-top: 39px;
  }

  .hero > p {
    padding: 0 15px;
    font-size: 14px;
  }

  .hero-note {
    max-width: 92%;
    border-radius: 15px;
    text-align: left;
  }

  .booking-card {
    border-radius: 23px;
  }

  .form-section {
    padding: 31px 22px 35px;
  }

  .form-alert {
    margin: 22px 22px 0;
  }

  .field-grid,
  .attendance-options {
    grid-template-columns: 1fr;
  }

  .field-wide {
    grid-column: auto;
  }

  .submit-area {
    padding: 27px 22px 31px;
  }

  .primary-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .site-brand small {
    display: none;
  }

  .home-nav {
    width: calc(100% - 24px);
  }

  .welcome-hero {
    width: calc(100% - 20px);
    padding-right: 10px;
    padding-left: 10px;
  }

  .welcome-hero h1 > span {
    letter-spacing: 0.11em;
    text-indent: 0.11em;
  }

  .welcome-hero h1 strong {
    letter-spacing: 0.12em;
    text-indent: 0.12em;
  }

  .welcome-actions {
    width: min(340px, 100%);
    flex-direction: column;
  }

  .home-primary,
  .home-secondary {
    width: 100%;
  }

  .welcome-meta {
    gap: 10px 16px;
  }

  .home-info {
    width: calc(100% - 20px);
    padding-right: 16px;
    padding-left: 16px;
  }

  .inner-nav > div a:last-child {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
