:root {
  color-scheme: light;
  --bark: #4a2609;
  --bark-2: #6d3c11;
  --soil: #a55d28;
  --sun: #fac91f;
  --sun-soft: #ffe99a;
  --leaf: #476c33;
  --leaf-2: #6e8f43;
  --sky: #41738d;
  --cream: #fff7df;
  --paper: #fffdf5;
  --sand: #f4ead0;
  --line: #e5d7b8;
  --ink: #25180f;
  --muted: #76644d;
  --danger: #9b3325;
  --success: #2d6a43;
  --shadow: 0 22px 60px rgba(74, 38, 9, 0.16);
  --small-shadow: 0 10px 28px rgba(74, 38, 9, 0.1);
  --radius: 8px;
  --max: 1220px;
  --display-font: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(255, 247, 223, 0.94), rgba(255, 253, 245, 0.98)),
    var(--paper);
  color: var(--ink);
  font-family:
    "Segoe UI Variable", Avenir Next, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: visible;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header,
.admin-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
  padding: 12px clamp(18px, 4vw, 46px);
  border-bottom: 1px solid rgba(229, 215, 184, 0.8);
  background: rgba(255, 253, 245, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: auto;
  height: clamp(58px, 7vw, 74px);
  display: block;
}

.compact-brand img {
  height: clamp(48px, 6vw, 60px);
}

.site-nav,
.toolbar,
.dialog-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav a,
.header-link,
.subdomain-badge {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--bark);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover,
.header-link:hover,
.site-nav a:focus-visible,
.header-link:focus-visible {
  border-color: var(--line);
  background: rgba(250, 201, 31, 0.12);
  outline: none;
}

.subdomain-badge {
  margin-left: auto;
  border-color: rgba(109, 60, 17, 0.18);
  background: rgba(250, 201, 31, 0.18);
  color: var(--bark-2);
  white-space: nowrap;
}

.landing-page {
  min-height: 100svh;
  overflow-x: hidden;
  background: #2d1a0f;
}

.landing-main {
  overflow: visible;
}

.landing-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #fffdf5;
}

.landing-backdrop,
.landing-animal,
.landing-ground,
.landing-ribbon {
  position: absolute;
  pointer-events: none;
}

.landing-backdrop {
  inset: 0;
  z-index: -5;
  background:
    radial-gradient(circle at 28% 42%, rgba(255, 253, 245, 0.98) 0 24%, rgba(255, 253, 245, 0.76) 48%, transparent 72%),
    linear-gradient(90deg, #fffdf5 0 36%, rgba(255, 253, 245, 0.9) 54%, rgba(255, 253, 245, 0.2) 100%);
}

.landing-animal {
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(90deg, #fffdf5 0 37%, rgba(255, 253, 245, 0.86) 53%, rgba(255, 253, 245, 0.28) 74%, rgba(255, 253, 245, 0.02) 100%),
    linear-gradient(180deg, rgba(255, 253, 245, 0.05), rgba(45, 26, 15, 0.18) 100%),
    url("assets/onca-cerrado.jpg") right 44% / auto 90% no-repeat;
  opacity: 0.96;
}

.landing-ground {
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -3;
  height: 38%;
  background:
    linear-gradient(90deg, #2d1a0f 0 48%, rgba(45, 26, 15, 0.9) 68%, rgba(45, 26, 15, 0.34) 100%);
  clip-path: polygon(0 42%, 100% 8%, 100% 100%, 0 100%);
}

.landing-ribbon {
  display: none;
}

.landing-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.86fr);
  gap: 46px;
  align-items: center;
  padding: clamp(36px, 6vw, 68px) 0;
}

.landing-copy {
  max-width: 650px;
}

.landing-copy h1 {
  margin: 0 0 18px;
  color: var(--bark);
  font-family: var(--display-font);
  font-size: 6rem;
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0;
}

.landing-lead {
  max-width: 560px;
  margin: 0;
  color: #5d4d3b;
  font-size: 1.18rem;
  line-height: 1.55;
}

.landing-schedule {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.landing-schedule span {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border: 1px solid rgba(109, 60, 17, 0.18);
  border-radius: 6px;
  background: rgba(255, 253, 245, 0.78);
  color: var(--bark);
  font-family: var(--display-font);
  font-size: 1.08rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(74, 38, 9, 0.08);
}

.landing-schedule strong {
  color: var(--leaf);
}

.landing-cta {
  width: fit-content;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 12px 24px;
  border: 1px solid rgba(74, 38, 9, 0.22);
  border-radius: 6px;
  background: var(--bark);
  color: #fff7df;
  font-family: var(--display-font);
  font-size: 1.18rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(74, 38, 9, 0.22);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.landing-cta:hover,
.landing-cta:focus-visible {
  background: var(--bark-2);
  box-shadow: 0 20px 42px rgba(74, 38, 9, 0.28);
  transform: translateY(-2px);
  outline: none;
}

.landing-visual {
  position: relative;
  min-height: 520px;
}

.landing-logo-disk {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 3;
  width: min(430px, 35vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: visible;
  border: 12px solid #fffdf5;
  border-radius: 50%;
  background: #ffffff;
  box-shadow:
    0 28px 70px rgba(37, 24, 15, 0.2),
    0 0 0 8px rgba(255, 253, 245, 0.52),
    inset 0 0 0 1px rgba(109, 60, 17, 0.08);
  transform: translateY(-50%);
}

.landing-logo-disk::before {
  display: none;
}

.landing-logo-disk::after {
  display: none;
}

.landing-logo-disk img {
  position: relative;
  z-index: 1;
  width: 92%;
  max-width: none;
  height: auto;
  display: block;
  mix-blend-mode: normal;
  filter: drop-shadow(0 10px 18px rgba(74, 38, 9, 0.14));
}

.landing-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 12px solid #fffdf5;
  background: #fffdf5;
  box-shadow: 0 24px 58px rgba(37, 24, 15, 0.18);
}

.landing-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.landing-photo-main {
  top: 62px;
  left: 0;
  z-index: 2;
  width: 270px;
  aspect-ratio: 1;
  border-radius: 50%;
}

.landing-photo-support {
  right: 8px;
  bottom: -4px;
  z-index: 1;
  width: 310px;
  aspect-ratio: 1.45;
  border-radius: 8px;
}

.landing-info {
  width: 100%;
  margin: 0;
  padding-inline: max(18px, calc((100% - var(--max)) / 2));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(109, 60, 17, 0.18);
  background: #2d1a0f;
  color: #fff7df;
}

.landing-info div {
  min-height: 94px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 18px 24px;
  border-left: 1px solid rgba(255, 247, 223, 0.2);
}

.landing-info div:first-child {
  border-left: 0;
}

.landing-info strong {
  color: var(--sun);
  font-size: 0.98rem;
}

.landing-info span {
  color: rgba(255, 247, 223, 0.78);
  font-size: 0.92rem;
}

.landing-footer {
  background: #2d1a0f;
  color: #fff7df;
}

.public-hero {
  position: relative;
  min-height: min(760px, calc(100vh - 82px));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--bark);
}

.public-glass-header {
  position: fixed;
  width: 100%;
  border-bottom-color: rgba(255, 253, 245, 0.2);
  background: linear-gradient(180deg, rgba(255, 253, 245, 0.9), rgba(255, 253, 245, 0.56));
  box-shadow: 0 10px 30px rgba(37, 24, 15, 0.08);
}

.cinematic-hero {
  min-height: 100svh;
  isolation: isolate;
}

.hero-slider,
.hero-slide,
.hero-grain {
  position: absolute;
  inset: 0;
}

.hero-slider {
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 900ms ease, transform 5200ms ease;
  background:
    linear-gradient(90deg, rgba(33, 18, 8, 0.94), rgba(47, 25, 9, 0.62) 42%, rgba(47, 25, 9, 0.12) 82%),
    url("assets/lobo-guara-cerrado.jpg") center / cover no-repeat;
}

.hero-slide:nth-child(2) {
  background:
    linear-gradient(90deg, rgba(33, 18, 8, 0.94), rgba(71, 108, 51, 0.58) 46%, rgba(65, 115, 141, 0.14) 86%),
    url("assets/fauna-gato-mourisco.webp") center / cover no-repeat;
}

.hero-slide:nth-child(3) {
  background:
    linear-gradient(90deg, rgba(47, 25, 9, 0.95), rgba(109, 60, 17, 0.58) 45%, rgba(250, 201, 31, 0.12) 84%),
    url("assets/cerrado-palmeiras.jpg") 42% center / cover no-repeat;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-grain {
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 74% 12%, rgba(250, 201, 31, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(37, 24, 15, 0.12), transparent 38%, rgba(37, 24, 15, 0.5));
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(47, 25, 9, 0.9), rgba(47, 25, 9, 0.58) 42%, rgba(47, 25, 9, 0.18) 84%),
    url("assets/cerrado-palmeiras.jpg") center / cover no-repeat;
  transform: scale(1.01);
}

.hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(108px, 13vw, 148px) 0 clamp(72px, 9vw, 110px);
  color: #fffaf0;
}

.hero-stack {
  z-index: 2;
  display: grid;
  justify-items: start;
  align-content: end;
  min-height: 100svh;
}

.section-kicker {
  margin: 0;
  color: var(--soil);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.public-hero .section-kicker {
  color: var(--sun-soft);
}

.hero-content h1 {
  max-width: 760px;
  margin: 9px 0 12px;
  font-family: var(--display-font);
  font-size: clamp(3.2rem, 8.8vw, 8.6rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-content p:not(.section-kicker) {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 250, 240, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-schedule {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero-schedule span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 233, 154, 0.4);
  border-radius: 6px;
  background: rgba(74, 38, 9, 0.42);
  color: #fff7df;
  font-weight: 760;
}

.hero-schedule strong {
  color: var(--sun);
}

.hero-cta {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  margin-top: 28px;
  padding: 12px 18px;
  border-radius: 6px;
  background: var(--sun);
  color: var(--bark);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 15px 32px rgba(250, 201, 31, 0.22);
}

.hero-footnote {
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(430px, 100%);
  margin-top: 24px;
  color: rgba(255, 250, 240, 0.74);
  font-size: 0.82rem;
  font-weight: 760;
  text-transform: uppercase;
}

.hero-footnote i {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(250, 201, 31, 0.8), transparent);
}

.hero-slide-controls {
  position: absolute;
  right: clamp(18px, 4vw, 46px);
  bottom: clamp(36px, 6vw, 72px);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-slide-controls button {
  width: 36px;
  height: 8px;
  border: 1px solid rgba(255, 233, 154, 0.52);
  border-radius: 999px;
  background: rgba(255, 253, 245, 0.25);
  cursor: pointer;
}

.hero-slide-controls button.is-active {
  width: 58px;
  background: var(--sun);
}

.booking-band {
  padding: clamp(42px, 7vw, 82px) 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 245, 0.95), rgba(244, 234, 208, 0.5)),
    var(--paper);
}

.public-booking-flow {
  min-height: 100svh;
  scroll-margin-top: 98px;
  padding-top: clamp(54px, 7vw, 88px);
  background:
    linear-gradient(180deg, rgba(255, 253, 245, 0.98), rgba(244, 234, 208, 0.72)),
    var(--paper);
}

.booking-page .public-booking-flow {
  position: relative;
  isolation: isolate;
  padding-top: clamp(42px, 6vw, 74px);
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(255, 253, 245, 0.98) 0 30%, rgba(255, 248, 222, 0.9) 58%, rgba(250, 201, 31, 0.22)),
    url("assets/cerrado-palmeiras.jpg") 72% 28% / cover no-repeat;
}

.booking-page .public-booking-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 253, 245, 0.9), rgba(255, 253, 245, 0.58) 44%, rgba(255, 247, 223, 0.94)),
    linear-gradient(90deg, rgba(255, 253, 245, 0.98), rgba(255, 248, 216, 0.68) 70%, rgba(74, 38, 9, 0.08));
}

.booking-page .public-booking-flow::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: none;
}

.booking-page[data-flow-view="calendar"] .public-booking-flow {
  background:
    linear-gradient(106deg, rgba(38, 18, 7, 0.98) 0 35%, rgba(67, 32, 10, 0.88) 58%, rgba(122, 86, 45, 0.54) 100%),
    url("assets/cerrado-palmeiras.jpg") 72% 44% / cover no-repeat;
}

.booking-page[data-flow-view="calendar"] .public-booking-flow::before {
  background:
    linear-gradient(180deg, rgba(38, 18, 7, 0.08), rgba(38, 18, 7, 0.22) 48%, rgba(38, 18, 7, 0.38)),
    linear-gradient(112deg, rgba(38, 18, 7, 0.96) 0 34%, rgba(74, 38, 9, 0.62) 58%, rgba(255, 247, 223, 0.2) 100%);
}

.booking-page[data-flow-view="visitor"] .public-booking-flow {
  background:
    linear-gradient(112deg, rgba(38, 18, 7, 0.98) 0 32%, rgba(74, 38, 9, 0.82) 55%, rgba(126, 90, 48, 0.46) 100%),
    url("assets/lobo-guara-cerrado.jpg") 78% 48% / cover no-repeat;
}

.booking-page[data-flow-view="visitor"] .public-booking-flow::before {
  background:
    linear-gradient(180deg, rgba(38, 18, 7, 0.06), rgba(38, 18, 7, 0.18) 52%, rgba(38, 18, 7, 0.3)),
    linear-gradient(120deg, rgba(38, 18, 7, 0.92) 0 34%, rgba(74, 38, 9, 0.56) 60%, rgba(255, 247, 223, 0.22) 100%);
}

.booking-page[data-flow-view="goals"] .public-booking-flow {
  background:
    linear-gradient(126deg, rgba(45, 23, 8, 0.98) 0 39%, rgba(74, 38, 9, 0.88) 58%, rgba(109, 60, 17, 0.66)),
    url("assets/onca-cerrado.jpg") 68% center / cover no-repeat;
}

.booking-page[data-flow-view="goals"] .public-booking-flow::before {
  background:
    linear-gradient(100deg, rgba(45, 23, 8, 0.96), rgba(45, 23, 8, 0.72) 44%, rgba(255, 248, 216, 0.72) 100%),
    linear-gradient(156deg, rgba(255, 247, 223, 0.05) 0 28%, transparent 28% 100%);
}

.booking-page .public-booking-flow > * {
  position: relative;
  z-index: 1;
}

.booking-page .public-glass-header {
  border-bottom-color: rgba(74, 38, 9, 0.08);
  background: rgba(255, 253, 245, 0.78);
}

.booking-page .public-footer {
  border-top: 1px solid rgba(255, 247, 223, 0.1);
  background: #2d1a0f;
  color: #fff7df;
  font-family: var(--display-font);
  font-size: 1.05rem;
  font-weight: 700;
}

.booking-page .site-nav a,
.booking-page .primary-button,
.booking-page .ghost-button {
  font-family: var(--display-font);
  font-size: 1.02rem;
  font-weight: 700;
}

.booking-page .primary-button {
  min-height: 50px;
  padding-inline: 22px;
  box-shadow: 0 14px 30px rgba(74, 38, 9, 0.16);
}

.booking-back-link {
  width: fit-content;
  color: var(--bark);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
  opacity: 0.78;
}

.booking-back-link:hover,
.booking-back-link:focus-visible {
  opacity: 1;
  outline: none;
  text-decoration: underline;
}

.booking-intro h1 {
  max-width: 820px;
  margin: 0;
  color: var(--bark);
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 3.8rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.booking-intro,
.booking-layout,
.dashboard,
.admin-main {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

.booking-intro {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.flow-intro {
  margin-bottom: 18px;
}

.booking-intro h2 {
  max-width: 820px;
  margin: 0;
  color: var(--bark);
  font-family: var(--display-font);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.booking-intro p {
  max-width: 720px;
  margin: 0;
  color: #6c5942;
  font-size: 1.04rem;
}

.booking-page[data-flow-view="calendar"] .booking-back-link,
.booking-page[data-flow-view="calendar"] .booking-intro h1,
.booking-page[data-flow-view="calendar"] .booking-intro p,
.booking-page[data-flow-view="visitor"] .booking-back-link,
.booking-page[data-flow-view="visitor"] .booking-intro h1,
.booking-page[data-flow-view="visitor"] .booking-intro p,
.booking-page[data-flow-view="goals"] .booking-back-link,
.booking-page[data-flow-view="goals"] .booking-intro h1,
.booking-page[data-flow-view="goals"] .booking-intro p {
  color: #fff7df;
}

.booking-page[data-flow-view="calendar"] .section-kicker,
.booking-page[data-flow-view="visitor"] .section-kicker,
.booking-page[data-flow-view="goals"] .section-kicker {
  color: var(--sun);
}

.booking-page[data-flow-view="calendar"] .booking-back-link,
.booking-page[data-flow-view="visitor"] .booking-back-link,
.booking-page[data-flow-view="goals"] .booking-back-link {
  opacity: 0.86;
}

.booking-page[data-flow-view="calendar"] .flow-card,
.booking-page[data-flow-view="visitor"] .flow-card {
  border-color: rgba(255, 247, 223, 0.28);
  box-shadow: 0 34px 88px rgba(27, 13, 5, 0.24);
}

.booking-page[data-flow-view="visitor"] .flow-card {
  border-color: rgba(255, 247, 223, 0.3);
  background:
    linear-gradient(135deg, rgba(255, 253, 245, 0.98), rgba(255, 247, 222, 0.88)),
    rgba(255, 253, 245, 0.9);
}

.booking-page[data-flow-view="goals"] .flow-card {
  border-color: rgba(255, 247, 223, 0.32);
  background:
    linear-gradient(135deg, rgba(255, 253, 245, 0.98), rgba(255, 247, 223, 0.92)),
    rgba(255, 253, 245, 0.94);
  box-shadow: 0 34px 90px rgba(22, 12, 6, 0.26);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(316px, 0.86fr) minmax(0, 1.28fr);
  gap: 20px;
  align-items: start;
}

.flow-shell {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.booking-page .flow-shell {
  width: min(980px, calc(100% - 36px));
  grid-template-columns: minmax(0, 1fr);
}

.flow-rail {
  position: sticky;
  top: 28px;
  display: grid;
  gap: 12px;
}

.flow-step-indicator {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  column-gap: 12px;
  align-items: center;
  min-height: 78px;
  padding: 12px;
  border: 1px solid rgba(109, 60, 17, 0.13);
  border-radius: 8px;
  background: rgba(255, 253, 245, 0.74);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(74, 38, 9, 0.08);
}

.flow-step-indicator span {
  grid-row: span 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #efe3c8;
  color: var(--bark);
  font-family:
    "Segoe UI Variable", Avenir Next, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-weight: 900;
}

.flow-step-indicator strong {
  color: var(--bark);
  font-family:
    "Segoe UI Variable", Avenir Next, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 0.98rem;
  font-weight: 850;
}

.flow-step-indicator small {
  color: #7d664d;
  font-family:
    "Segoe UI Variable", Avenir Next, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 720;
}

.flow-step-indicator.is-active {
  border-color: rgba(250, 201, 31, 0.82);
  background: linear-gradient(135deg, rgba(255, 250, 225, 0.94), rgba(255, 246, 196, 0.72));
}

.flow-step-indicator.is-active span {
  background: var(--sun);
}

.flow-card {
  min-height: min(690px, calc(100svh - 120px));
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 245, 0.98), rgba(255, 248, 216, 0.88)),
    rgba(255, 253, 245, 0.96);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.booking-page .flow-card {
  min-height: 0;
  border-color: rgba(109, 60, 17, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 253, 245, 0.98), rgba(255, 249, 226, 0.9)),
    rgba(255, 253, 245, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 80px rgba(74, 38, 9, 0.16);
}

.flow-screen {
  display: none;
  animation: flowIn 420ms ease both;
}

.flow-screen.is-active {
  display: grid;
  gap: 20px;
}

@keyframes flowIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.calendar-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.elevated-date-summary {
  min-height: 126px;
  align-content: center;
  box-shadow: none;
}

.selected-mini-card {
  min-width: min(280px, 100%);
  padding: 13px 15px;
  border: 1px solid rgba(250, 201, 31, 0.55);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 248, 216, 0.98), rgba(255, 253, 245, 0.94)),
    #fff8d8;
  color: var(--bark);
  font-family:
    "Segoe UI Variable", Avenir Next, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(74, 38, 9, 0.08);
}

.selected-mini-card span {
  display: block;
  color: #9a6225;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.selected-mini-card strong,
.selected-mini-card small {
  display: block;
}

.selected-mini-card strong {
  margin-top: 3px;
  font-weight: 900;
}

.selected-mini-card small {
  margin-top: 2px;
  color: #70583f;
  font-weight: 750;
}

.flow-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.flow-actions .form-message {
  margin-right: auto;
}

.split-actions {
  justify-content: space-between;
}

.final-message {
  margin-top: -8px;
}

.calendar-panel,
.request-panel,
.admin-panel,
.login-card,
.dialog-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 245, 0.96);
  box-shadow: var(--shadow);
}

.calendar-panel,
.request-panel,
.admin-panel,
.dialog-shell {
  padding: clamp(18px, 3vw, 28px);
}

.calendar-panel {
  position: sticky;
  top: 100px;
}

.panel-topline,
.dashboard-titlebar,
.dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.calendar-side-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 430px;
  padding: clamp(20px, 3vw, 30px);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(155deg, rgba(74, 38, 9, 0.96), rgba(74, 38, 9, 0.78) 45%, rgba(71, 108, 51, 0.72)),
    url("assets/cerrado-palmeiras.jpg") 45% center / cover no-repeat;
  color: #fff7df;
  box-shadow: 0 24px 58px rgba(74, 38, 9, 0.18);
}

.booking-page .calendar-side-card,
.booking-page .date-summary,
.booking-page .selected-mini-card {
  display: none;
}

.calendar-side-card::before {
  content: "";
  position: absolute;
  right: -50px;
  top: -42px;
  width: 180px;
  aspect-ratio: 1;
  border: 30px solid rgba(250, 201, 31, 0.24);
  border-radius: 50%;
}

.calendar-side-card::after {
  content: "";
  position: absolute;
  left: -38px;
  right: -38px;
  bottom: -52px;
  height: 126px;
  background: var(--sun);
  transform: rotate(-8deg);
}

.calendar-side-card > * {
  position: relative;
  z-index: 1;
}

.calendar-side-kicker {
  width: fit-content;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 247, 223, 0.28);
  color: var(--sun);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.calendar-side-card h3 {
  max-width: 250px;
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(1.85rem, 2.6vw, 2.36rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.calendar-side-hours {
  display: grid;
  gap: 0;
  margin-top: 2px;
  border-top: 1px solid rgba(255, 247, 223, 0.22);
}

.calendar-side-hours div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 48px;
  border-bottom: 1px solid rgba(255, 247, 223, 0.18);
}

.calendar-side-hours strong,
.visitor-context strong {
  color: var(--sun);
  font-family:
    "Segoe UI Variable", Avenir Next, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 0.98rem;
  font-weight: 900;
}

.calendar-side-hours span,
.visitor-context span:not(.visitor-mark) {
  color: rgba(255, 247, 223, 0.82);
  font-family:
    "Segoe UI Variable", Avenir Next, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-weight: 620;
}

.calendar-side-card .date-summary {
  margin-top: 0;
  border-color: rgba(255, 247, 223, 0.48);
  border-left-color: var(--sun);
  background: rgba(255, 253, 245, 0.93);
  box-shadow: 0 16px 34px rgba(37, 24, 15, 0.18);
}

.calendar-side-card .form-message {
  min-height: 20px;
  color: #fff7df;
}

.calendar-side-card .primary-button {
  width: 100%;
  margin-top: 4px;
  background: #fff7df;
  color: var(--bark);
  box-shadow: 0 18px 34px rgba(37, 24, 15, 0.22);
}

.calendar-board {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 26px;
  padding-top: 12px;
}

.calendar-footer-row {
  width: min(620px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  justify-items: end;
}

.calendar-footer-row .form-message {
  grid-column: 1;
  grid-row: 2;
  min-height: 0;
  justify-self: start;
}

.calendar-footer-row .primary-button {
  grid-column: 1;
  grid-row: 1;
}

.calendar-time-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: #6d563d;
  font-size: 0.92rem;
  font-weight: 750;
}

.calendar-time-strip span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid rgba(109, 60, 17, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 245, 0.74);
}

.calendar-time-strip strong {
  color: var(--bark);
}

.panel-topline h2,
.panel-topline h3,
.dashboard-titlebar h1,
.dialog-header h2,
.login-card h1 {
  margin: 4px 0 0;
  color: var(--bark);
  font-family: var(--display-font);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.panel-topline h2,
.panel-topline h3 {
  font-size: 1.34rem;
}

.month-switcher {
  display: grid;
  grid-template-columns: 36px minmax(126px, 1fr) 36px;
  align-items: center;
  gap: 8px;
  min-width: 226px;
  padding: 5px;
  border: 1px solid rgba(229, 215, 184, 0.7);
  border-radius: 8px;
  background: rgba(255, 253, 245, 0.68);
}

.booking-page .month-switcher {
  width: min(360px, 100%);
  min-width: 0;
  justify-self: center;
  grid-template-columns: 38px minmax(120px, 1fr) 38px;
  border-color: transparent;
  background: transparent;
}

.booking-page #calendarStep .panel-topline {
  justify-content: center;
  margin-bottom: 10px;
}

.month-switcher strong {
  color: var(--bark);
  font-size: 0.95rem;
  text-align: center;
}

.icon-button {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
  color: var(--bark);
  cursor: pointer;
  font-size: 1.22rem;
  font-weight: 900;
}

.icon-button:hover,
.icon-button:focus-visible {
  border-color: var(--soil);
  background: rgba(250, 201, 31, 0.13);
  outline: none;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.booking-page .calendar-grid {
  width: min(620px, 100%);
  margin-inline: auto;
  gap: 10px 12px;
}

.weekday,
.calendar-day,
.calendar-empty {
  min-height: 58px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  text-align: center;
}

.booking-page .weekday,
.booking-page .calendar-day,
.booking-page .calendar-empty {
  min-height: 40px;
  border-radius: 999px;
}

.weekday {
  color: var(--bark-2);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  background: transparent;
}

.calendar-day {
  position: relative;
  border: 1px solid rgba(218, 201, 166, 0.65);
  background:
    linear-gradient(180deg, rgba(255, 253, 245, 0.78), rgba(242, 230, 204, 0.72)),
    #f3ead4;
  color: #9b8b73;
  cursor: default;
  font-family:
    "Segoe UI Variable", Avenir Next, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-weight: 850;
  box-shadow: inset 0 1px 0 rgba(255, 253, 245, 0.72);
}

.booking-page .calendar-day {
  border: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(74, 38, 9, 0.38);
}

.calendar-day button {
  width: 100%;
  height: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-weight: 900;
}

.booking-page .calendar-day button {
  width: 40px;
  min-height: 40px;
  justify-self: center;
  border-radius: 50%;
  transition: background 140ms ease, color 140ms ease, box-shadow 140ms ease;
}

.calendar-day.available {
  border-color: rgba(71, 108, 51, 0.4);
  background:
    linear-gradient(180deg, rgba(250, 255, 235, 0.9), rgba(219, 238, 194, 0.82)),
    #e2f0c8;
  color: var(--leaf);
}

.booking-page .calendar-day.available {
  border: 0;
  background: transparent;
  color: var(--bark);
}

.calendar-day.available::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--sun);
  box-shadow: 0 0 0 2px rgba(250, 201, 31, 0.2);
}

.booking-page .calendar-day.available::after {
  display: none;
}

.calendar-day.selected {
  border-color: #5a2a07;
  background:
    linear-gradient(135deg, #5a2a07, #8b4a13),
    var(--bark);
  color: #fff7df;
  box-shadow: 0 16px 34px rgba(74, 38, 9, 0.28);
}

.booking-page .calendar-day.selected {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.booking-page .calendar-day.selected button {
  border: 2px solid var(--bark);
  background: rgba(255, 253, 245, 0.86);
  color: var(--bark);
  box-shadow: 0 10px 22px rgba(74, 38, 9, 0.16);
}

.calendar-day.full,
.calendar-day.blocked,
.calendar-day.invalid,
.calendar-day.past {
  background: #efe6d2;
  color: #b0a38e;
}

.booking-page .calendar-day.full,
.booking-page .calendar-day.blocked,
.booking-page .calendar-day.invalid,
.booking-page .calendar-day.past {
  background: transparent;
  color: rgba(74, 38, 9, 0.22);
}

.date-summary {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  padding: 15px 16px;
  border: 1px solid rgba(250, 201, 31, 0.5);
  border-left: 5px solid var(--sun);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 248, 221, 0.98), rgba(255, 253, 245, 0.92)),
    #fff8dd;
}

.date-summary span,
.date-summary small {
  color: #80694e;
  font-family:
    "Segoe UI Variable", Avenir Next, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.date-summary strong {
  color: var(--bark);
  font-family:
    "Segoe UI Variable", Avenir Next, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 1.02rem;
  font-weight: 900;
}

.request-form {
  display: grid;
  gap: 20px;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0 0 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
}

fieldset:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

legend {
  margin-bottom: 12px;
  color: var(--bark);
  font-size: 1rem;
  font-weight: 900;
}

label {
  display: grid;
  gap: 7px;
  color: var(--bark);
  font-size: 0.9rem;
  font-weight: 820;
}

.form-grid,
.filters-grid,
.availability-form,
.dialog-edit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #d9c9a8;
  border-radius: 8px;
  background: #fffdf8;
  color: var(--ink);
  font-weight: 570;
}

.visitor-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.58fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}

.visitor-context {
  position: relative;
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 440px;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(74, 38, 9, 0.96), rgba(71, 108, 51, 0.76)),
    url("assets/lobo-guara-cerrado.jpg") 52% center / cover no-repeat;
  color: #fff7df;
  box-shadow: 0 22px 52px rgba(74, 38, 9, 0.18);
}

.visitor-context::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -58px;
  width: 190px;
  aspect-ratio: 1;
  border: 28px solid rgba(250, 201, 31, 0.28);
  border-radius: 50%;
}

.visitor-mark {
  width: 58px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 247, 223, 0.48);
  border-radius: 50%;
  color: var(--sun);
  font-family: var(--display-font);
  font-weight: 700;
}

.visitor-context h3 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.visitor-context p {
  margin: 0 0 8px;
  color: rgba(255, 247, 223, 0.82);
}

.visitor-context div {
  display: grid;
  gap: 2px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 247, 223, 0.24);
}

.visitor-context strong {
  color: var(--sun);
  font-weight: 900;
}

.visitor-context span:not(.visitor-mark) {
  color: rgba(255, 247, 223, 0.78);
}

.visitor-form {
  display: grid;
  align-content: start;
  gap: 20px;
  padding-block: 4px;
}

.visitor-form fieldset {
  padding-bottom: 20px;
}

.visitor-form legend {
  color: var(--soil);
  font-family: var(--display-font);
  font-size: 1.22rem;
  font-weight: 700;
}

.visitor-form label {
  color: #4d3828;
}

.visitor-form input,
.visitor-form select {
  min-height: 46px;
  padding: 9px 2px 10px;
  border-width: 0 0 2px;
  border-color: rgba(109, 60, 17, 0.34);
  border-radius: 0;
  background: transparent;
}

.visitor-form input:focus,
.visitor-form select:focus {
  border-color: var(--bark);
  outline: none;
  box-shadow: 0 8px 0 -6px rgba(250, 201, 31, 0.7);
}

.goals-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.58fr) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 42px);
  align-items: stretch;
}

.goals-context {
  position: relative;
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 560px;
  padding: clamp(28px, 3vw, 40px);
  border-radius: 8px;
  overflow: hidden;
  color: #fff7df;
  background:
    linear-gradient(140deg, rgba(37, 24, 15, 0.96), rgba(74, 38, 9, 0.78) 48%, rgba(250, 201, 31, 0.22)),
    url("assets/onca-cerrado.jpg") 58% center / cover no-repeat;
  box-shadow: 0 26px 64px rgba(74, 38, 9, 0.2);
}

.goals-context::before {
  content: "";
  position: absolute;
  left: -68px;
  bottom: -58px;
  width: 220px;
  aspect-ratio: 1;
  border: 34px solid rgba(250, 201, 31, 0.28);
  border-radius: 50%;
}

.goals-context::after {
  content: "";
  position: absolute;
  right: -118px;
  top: 42px;
  width: 220px;
  height: 52px;
  border-radius: 999px;
  background: var(--sun);
  transform: rotate(-8deg);
  opacity: 0.9;
}

.goals-context > * {
  position: relative;
  z-index: 1;
}

.goals-context h3 {
  max-width: 300px;
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(1.9rem, 2.6vw, 2.45rem);
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.goals-context p {
  max-width: 320px;
  margin: 0;
  color: rgba(255, 247, 223, 0.82);
  font-size: 1rem;
}

.goals-context-line {
  display: grid;
  gap: 3px;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 247, 223, 0.22);
}

.goals-context-line strong {
  color: var(--sun);
  font-family: var(--display-font);
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: 0;
}

.goals-context-line span {
  color: rgba(255, 247, 223, 0.82);
}

.goals-form {
  display: grid;
  gap: 18px;
  align-content: start;
}

.goals-form fieldset {
  padding-bottom: 20px;
}

.goals-form legend {
  color: var(--soil);
  font-family:
    "Segoe UI Variable", Avenir Next, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.goals-form label {
  color: #4a2a17;
  font-family:
    "Segoe UI Variable", Avenir Next, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 0.94rem;
  font-weight: 860;
}

.goals-form textarea {
  min-height: 118px;
  border-color: rgba(109, 60, 17, 0.2);
  background: rgba(255, 253, 245, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 253, 245, 0.8);
}

.goals-form textarea:focus {
  border-color: var(--bark);
  outline: 3px solid rgba(250, 201, 31, 0.2);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--soil);
  outline: 3px solid rgba(250, 201, 31, 0.25);
}

.conditional-field {
  display: none;
}

.conditional-field.is-visible {
  display: grid;
}

.route-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.route-options label {
  position: relative;
}

.route-options input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.route-options span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(109, 60, 17, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 245, 0.92), rgba(255, 248, 216, 0.88)),
    #fff8e3;
  color: var(--bark);
  font-family: var(--display-font);
  font-size: 1.16rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 12px 28px rgba(74, 38, 9, 0.08);
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease, color 150ms ease;
}

.route-options span::before {
  content: "";
  width: 38px;
  height: 5px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: var(--sun);
}

.route-options input:checked + span {
  border-color: var(--bark);
  background:
    linear-gradient(135deg, var(--bark), #7d4213),
    var(--bark);
  color: #fff7df;
  transform: translateY(-2px);
}

.route-options input:focus-visible + span {
  outline: 3px solid rgba(250, 201, 31, 0.35);
}

.form-actions,
.toolbar,
.dialog-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.primary-button,
.secondary-button,
.ghost-button,
.danger-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 15px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease, background 160ms ease,
    border-color 160ms ease;
}

.primary-button {
  background:
    linear-gradient(135deg, #5a2a07, #321504),
    var(--bark);
  color: #fff7df;
  box-shadow: 0 14px 30px rgba(45, 20, 7, 0.18);
}

.secondary-button {
  border-color: rgba(74, 38, 9, 0.12);
  background:
    linear-gradient(135deg, #fac91f, #f3b613),
    var(--sun);
  color: #2d1608;
  box-shadow: 0 12px 26px rgba(74, 38, 9, 0.12);
}

.ghost-button {
  border-color: rgba(74, 38, 9, 0.22);
  background: rgba(255, 253, 245, 0.74);
  color: var(--bark);
  box-shadow: 0 8px 18px rgba(74, 38, 9, 0.06);
}

.danger-button {
  border-color: rgba(155, 51, 37, 0.16);
  background:
    linear-gradient(135deg, #fff0eb, #f6d4ca),
    #fff0eb;
  color: #7a2319;
  box-shadow: 0 10px 22px rgba(155, 51, 37, 0.1);
}

.compact-button {
  min-height: 36px;
  padding: 7px 10px;
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.danger-button:hover,
.primary-button:focus-visible,
.secondary-button:focus-visible,
.ghost-button:focus-visible,
.danger-button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.01);
  outline: 3px solid rgba(250, 201, 31, 0.24);
}

.primary-button:disabled,
.secondary-button:disabled,
.ghost-button:disabled,
.danger-button:disabled {
  cursor: not-allowed;
  filter: grayscale(0.25);
  opacity: 0.58;
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--leaf);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-message.is-error {
  color: var(--danger);
}

.public-footer {
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 26px clamp(18px, 4vw, 46px);
  border-top: 1px solid var(--line);
  color: var(--bark);
  font-size: 0.95rem;
  font-weight: 900;
}

.public-footer.landing-footer {
  border-top-color: rgba(255, 247, 223, 0.14);
  background: #2d1a0f;
  color: #fff7df;
}

.public-footer a {
  color: var(--bark);
  font-weight: 900;
  text-decoration: none;
}

.brand-signature-footer {
  position: relative;
  isolation: isolate;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  padding: 16px clamp(18px, 4vw, 46px);
  border-top: 1px solid rgba(255, 247, 223, 0.12);
  background:
    linear-gradient(115deg, rgba(45, 20, 7, 0.98), rgba(62, 28, 8, 0.98)),
    #2d1a0f;
  color: #fff7df;
}

.brand-signature-footer::before,
.brand-signature-footer::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.brand-signature-footer::before {
  inset: auto -12% -84px -10%;
  height: 142px;
  border: 2px solid rgba(250, 201, 31, 0.11);
  border-color: rgba(250, 201, 31, 0.13) transparent transparent;
  border-radius: 50% 50% 0 0;
  transform: rotate(-3deg);
}

.brand-signature-footer::after {
  right: 9%;
  top: -72px;
  width: min(340px, 44vw);
  height: 126px;
  border-bottom: 1px solid rgba(255, 247, 223, 0.16);
  border-radius: 0 0 50% 50%;
  transform: rotate(-8deg);
}

.signature-mark,
.signature-copy {
  position: relative;
  z-index: 1;
}

.signature-mark {
  width: 32px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: #fffdf5;
  box-shadow: 0 0 0 1px rgba(255, 247, 223, 0.16);
}

.signature-mark img {
  width: 42px;
  max-width: none;
  height: auto;
  display: block;
}

.signature-copy {
  display: grid;
  line-height: 0.88;
}

.signature-copy small {
  color: rgba(255, 247, 223, 0.86);
  font-size: 0.48rem;
  font-weight: 900;
}

.signature-copy strong {
  color: #fff7df;
  font-size: 1.12rem;
  font-weight: 850;
}

.signature-copy span {
  color: var(--sun);
}

.admin-header {
  min-height: 74px;
}

.admin-main {
  padding: 28px 0 56px;
}

.admin-login-mode {
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 19%, rgba(255, 247, 223, 0.18), transparent 19%),
    radial-gradient(circle at 18% 88%, rgba(250, 201, 31, 0.2), transparent 30%),
    linear-gradient(118deg, #2a1307 0%, #4a2609 38%, #885015 72%, #fac91f 145%);
}

.admin-login-mode .admin-header {
  display: none;
}

.admin-login-mode .admin-main {
  width: 100%;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 7vw, 76px);
}

.login-stage {
  position: relative;
  width: min(620px, calc(100% - 28px));
  min-height: auto;
  display: grid;
  place-items: center;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(255, 247, 223, 0.22);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 253, 245, 0.13), rgba(255, 247, 223, 0.04)),
    rgba(45, 20, 7, 0.18);
  box-shadow: 0 34px 92px rgba(20, 10, 4, 0.28);
  backdrop-filter: blur(12px);
}

.login-stage::before,
.login-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.login-stage::before {
  inset: 0;
  background:
    linear-gradient(135deg, rgba(250, 201, 31, 0.13), transparent 42%),
    linear-gradient(315deg, rgba(255, 247, 223, 0.12), transparent 48%);
}

.login-stage::after {
  left: 50%;
  top: -110px;
  width: 260px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 247, 223, 0.22);
  border-radius: 50%;
  transform: translateX(-50%);
  opacity: 0.55;
}

.login-card {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  display: grid;
  gap: 15px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  background: transparent;
}

.login-logo-orb {
  width: clamp(126px, 18vw, 168px);
  aspect-ratio: 1;
  justify-self: center;
  display: grid;
  place-items: center;
  margin-bottom: clamp(12px, 3vw, 28px);
  border: 9px solid rgba(255, 253, 245, 0.88);
  border-radius: 50%;
  background: #fffdf5;
  box-shadow:
    0 22px 52px rgba(24, 11, 4, 0.26),
    0 0 0 1px rgba(250, 201, 31, 0.22);
}

.login-logo-orb img {
  width: 76%;
  height: auto;
  display: block;
}

.login-card label {
  gap: 6px;
  color: rgba(255, 247, 223, 0.94);
  font-size: 0.96rem;
  font-weight: 760;
}

.login-card input {
  min-height: 56px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 253, 245, 0.9);
  color: var(--ink);
  box-shadow: inset 0 -2px 0 rgba(74, 38, 9, 0.2);
}

.login-card input::placeholder {
  color: rgba(74, 38, 9, 0.48);
}

.login-card input:focus {
  border-color: transparent;
  outline: 3px solid rgba(250, 201, 31, 0.34);
  box-shadow:
    inset 0 -2px 0 var(--sun),
    0 0 0 1px rgba(255, 247, 223, 0.14);
}

.login-card .primary-button {
  min-height: 58px;
  margin-top: 12px;
  border-radius: 0;
  background: var(--sun);
  color: #2d1608;
  font-family:
    "Segoe UI Variable", Avenir Next, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  box-shadow: 0 18px 36px rgba(22, 10, 4, 0.2);
}

.login-card .form-message {
  color: #fff7df;
  text-align: center;
}

.login-card .form-message.is-error {
  color: #ffe0d7;
}

body[data-page="admin"]:not(.admin-login-mode) {
  min-height: 100svh;
  background:
    linear-gradient(112deg, rgba(45, 20, 7, 0.96) 0 34%, rgba(74, 38, 9, 0.76) 56%, rgba(255, 247, 223, 0.82) 100%),
    url("assets/cerrado-palmeiras.jpg") 76% 36% / cover fixed no-repeat;
}

body[data-page="admin"]:not(.admin-login-mode) .admin-main {
  width: min(1180px, calc(100% - 36px));
  padding: clamp(34px, 5vw, 72px) 0 64px;
}

body[data-page="admin"]:not(.admin-login-mode) .dashboard-titlebar h1,
body[data-page="admin"]:not(.admin-login-mode) .dashboard-titlebar p {
  color: #fff7df;
}

body[data-page="admin"]:not(.admin-login-mode) .dashboard-titlebar .section-kicker {
  color: var(--sun);
}

body[data-page="admin"]:not(.admin-login-mode) .admin-panel {
  border-color: rgba(255, 247, 223, 0.32);
  background:
    linear-gradient(135deg, rgba(255, 253, 245, 0.96), rgba(255, 247, 223, 0.9)),
    rgba(255, 253, 245, 0.92);
  box-shadow: 0 28px 76px rgba(24, 11, 4, 0.22);
  backdrop-filter: blur(12px);
}

body[data-page="admin"]:not(.admin-login-mode) .dashboard-titlebar .ghost-button {
  border-color: rgba(255, 247, 223, 0.42);
  background: rgba(255, 247, 223, 0.1);
  color: #fff7df;
}

.dashboard {
  display: grid;
  gap: 22px;
}

.dashboard-titlebar {
  margin-bottom: 0;
}

.dashboard-titlebar h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.metric-card {
  min-height: 122px;
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: var(--small-shadow);
}

.metric-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 820;
}

.metric-card strong {
  color: var(--bark);
  font-size: 2rem;
  line-height: 1;
}

.metric-card small {
  color: var(--soil);
  font-weight: 800;
}

.admin-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 18px;
  align-items: start;
}

.checkbox-label {
  min-height: 44px;
  display: flex;
  align-items: center;
  align-self: end;
  gap: 9px;
  padding-top: 20px;
}

.checkbox-label input {
  width: 18px;
  min-height: 18px;
}

.availability-control .panel-topline {
  align-items: center;
}

.availability-control .compact-button {
  min-height: 42px;
  padding-inline: 16px;
  border: 1px solid rgba(255, 247, 223, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(135deg, #5b2a07, #2c1205),
    var(--bark);
  color: #fff7df;
  box-shadow: 0 16px 34px rgba(45, 20, 7, 0.2);
}

.availability-control .secondary-button:not(.compact-button) {
  min-height: 48px;
  border-color: rgba(74, 38, 9, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(135deg, #ffd633, #fac91f 45%, #e7a80e),
    var(--sun);
  color: #2d1608;
  box-shadow: 0 18px 34px rgba(74, 38, 9, 0.18);
}

.availability-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  max-height: 520px;
  overflow: auto;
  padding-right: 4px;
}

.slot-row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(109, 60, 17, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 245, 0.92), rgba(255, 248, 216, 0.72)),
    #fffaf0;
  box-shadow: 0 10px 24px rgba(74, 38, 9, 0.07);
}

.slot-row strong {
  display: block;
  color: var(--bark);
}

.slot-row small,
.slot-row span {
  color: var(--muted);
  font-weight: 780;
}

.status-pill {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.status-pendente {
  background: #fff2bd;
  color: #735104;
}

.status-aprovada,
.status-concluida {
  background: #e4f3dc;
  color: var(--success);
}

.status-rejeitada,
.status-cancelada {
  background: #fae7e0;
  color: var(--danger);
}

.requests-panel {
  overflow: hidden;
}

.requests-table-wrap {
  overflow-x: auto;
}

.requests-table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
}

.requests-table th,
.requests-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.requests-table th {
  color: var(--bark);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.requests-table td {
  color: var(--ink);
  font-size: 0.92rem;
}

.requests-table small {
  color: var(--muted);
}

.table-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.table-actions button {
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  box-shadow: none;
}

.table-actions button[data-action="details"] {
  border-color: rgba(74, 38, 9, 0.2);
  background:
    linear-gradient(135deg, #fffdf5, #fff0c4),
    #fffdf5;
  color: var(--bark);
}

.table-actions button[data-action="approve"] {
  border-color: rgba(45, 106, 67, 0.16);
  background:
    linear-gradient(135deg, #ecf8de, #cfeeb9),
    #ecf8de;
  color: #25562f;
}

.table-actions button[data-action="reject"] {
  border-color: rgba(155, 51, 37, 0.16);
  background:
    linear-gradient(135deg, #fff0eb, #f4c8bd),
    #fff0eb;
  color: #7a2319;
}

.table-actions button[data-action="delete"] {
  border-color: rgba(74, 26, 9, 0.22);
  background:
    linear-gradient(135deg, #4a1a09, #2d1205),
    #4a1a09;
  color: #fff7df;
}

.mobile-request-list {
  display: grid;
  gap: 14px;
}

.request-card {
  display: grid;
  gap: 13px;
  padding: clamp(16px, 2.4vw, 24px);
  border: 1px solid rgba(109, 60, 17, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 245, 0.98), rgba(255, 249, 229, 0.88)),
    #fffdf8;
  box-shadow: 0 16px 38px rgba(74, 38, 9, 0.09);
}

.request-card header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.request-card h3 {
  margin: 0;
  color: var(--bark);
  font-family: var(--display-font);
  font-size: clamp(1.2rem, 2vw, 1.54rem);
  line-height: 1.1;
}

.request-card p {
  margin: 0;
  color: var(--muted);
}

.request-card-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.request-card-meta span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 6px 9px;
  border: 1px solid rgba(109, 60, 17, 0.12);
  border-radius: 999px;
  background: rgba(250, 201, 31, 0.12);
  color: var(--bark);
  font-size: 0.82rem;
  font-weight: 850;
}

.request-card-goal {
  padding-top: 10px;
  border-top: 1px solid rgba(109, 60, 17, 0.14);
}

.empty-state {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.insights-grid h3 {
  margin: 0 0 10px;
  color: var(--bark);
  font-size: 1rem;
}

.distribution-list,
.history-list {
  display: grid;
  gap: 9px;
}

.bar-row {
  display: grid;
  gap: 6px;
}

.bar-row span {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.bar-row em {
  font-style: normal;
}

.bar-track {
  height: 9px;
  overflow: hidden;
  border-radius: 4px;
  background: #eee1c4;
}

.bar-track i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--leaf), var(--sun));
}

.history-item {
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffaf0;
  color: var(--muted);
  font-size: 0.88rem;
}

.history-item strong {
  display: block;
  color: var(--bark);
}

.request-dialog {
  width: min(920px, calc(100% - 28px));
  max-height: calc(100vh - 28px);
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: transparent;
}

.request-dialog::backdrop {
  background: rgba(37, 24, 15, 0.58);
}

.dialog-shell {
  display: grid;
  gap: 18px;
  max-height: calc(100vh - 28px);
  overflow: auto;
}

.dialog-header {
  margin-bottom: 0;
}

.dialog-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.detail-item {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdf8;
}

.detail-item.full-span,
.full-span {
  grid-column: 1 / -1;
}

.detail-item span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-item strong {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  white-space: pre-wrap;
  word-break: break-word;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  max-width: min(420px, calc(100% - 36px));
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--bark);
  color: #fff7df;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[hidden] {
  display: none !important;
}

@media (max-width: 1020px) {
  .landing-content {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding-top: 30px;
  }

  .landing-copy {
    max-width: 720px;
  }

  .landing-copy h1 {
    font-size: 4.9rem;
  }

  .landing-visual {
    min-height: 340px;
  }

  .landing-logo-disk {
    right: 50%;
    width: min(340px, 66vw);
    transform: translate(50%, -50%);
  }

  .booking-layout,
  .flow-shell,
  .admin-workspace,
  .login-stage {
    grid-template-columns: 1fr;
  }

  .calendar-panel {
    position: static;
  }

  .flow-rail {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .flow-step-indicator {
    min-height: 102px;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .flow-step-indicator span {
    grid-row: auto;
  }

  .calendar-stage {
    grid-template-columns: 1fr;
  }

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

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

  .goals-context {
    min-height: 320px;
  }

  .visitor-context {
    min-height: 300px;
  }

  .elevated-date-summary {
    position: static;
  }

  .login-art {
    min-height: 240px;
  }

  .metrics-grid,
  .insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header,
  .admin-header {
    position: static;
    align-items: stretch;
    flex-direction: column;
    min-height: auto;
  }

  .brand {
    justify-content: center;
  }

  .site-nav,
  .toolbar,
  .dialog-actions {
    width: 100%;
  }

  .site-nav a,
  .header-link,
  .subdomain-badge {
    flex: 1 1 auto;
  }

  .subdomain-badge {
    margin-left: 0;
  }

  .landing-hero {
    min-height: calc(100svh - 70px);
  }

  .landing-backdrop {
    inset: 0;
    background:
      linear-gradient(180deg, rgba(255, 253, 245, 0.98), rgba(255, 253, 245, 0.8) 55%, rgba(74, 38, 9, 0.18)),
      linear-gradient(90deg, rgba(255, 253, 245, 0.98), rgba(255, 253, 245, 0.52));
  }

  .landing-animal {
    background:
      linear-gradient(180deg, rgba(255, 253, 245, 0.9), rgba(255, 253, 245, 0.7) 54%, rgba(45, 26, 15, 0.24)),
      linear-gradient(90deg, rgba(255, 253, 245, 0.9), rgba(255, 253, 245, 0.2)),
      url("assets/onca-cerrado.jpg") 66% 0 / cover no-repeat;
    opacity: 0.72;
  }

  .landing-ground {
    height: 45%;
    clip-path: polygon(0 16%, 100% 0, 100% 100%, 0 100%);
  }

  .landing-content {
    width: min(100% - 24px, var(--max));
    padding: 36px 0 28px;
  }

  .landing-copy h1 {
    font-size: 4rem;
  }

  .landing-lead {
    font-size: 1.05rem;
  }

  .landing-visual {
    min-height: 260px;
  }

  .landing-logo-disk {
    top: 54%;
    right: 50%;
    width: min(248px, 74vw);
    border-width: 10px;
  }

  .booking-page .public-booking-flow {
    padding-top: 28px;
  }

  .booking-intro h1 {
    font-size: 2.8rem;
  }

  .public-hero {
    min-height: 620px;
  }

  .hero-content {
    padding-top: 64px;
  }

  .cinematic-hero {
    min-height: 690px;
  }

  .public-booking-flow {
    scroll-margin-top: 0;
  }

  .hero-slide-controls {
    left: 18px;
    right: auto;
    bottom: 18px;
  }

  .panel-topline,
  .dashboard-titlebar,
  .dialog-header,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .month-switcher {
    width: 100%;
  }

  .flow-shell {
    width: min(100% - 24px, var(--max));
  }

  .flow-rail {
    grid-template-columns: 1fr;
  }

  .flow-step-indicator {
    min-height: 74px;
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .flow-step-indicator span {
    grid-row: span 2;
    width: 40px;
    height: 40px;
  }

  .flow-card {
    min-height: 0;
    padding: 18px;
  }

  .visitor-context {
    min-height: 260px;
  }

  .goals-context {
    min-height: 280px;
  }

  .calendar-board {
    order: 1;
  }

  .calendar-side-card {
    order: 2;
    min-height: 0;
  }

  .flow-actions,
  .split-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .flow-actions .form-message {
    margin-right: 0;
  }

  .form-grid,
  .filters-grid,
  .availability-form,
  .dialog-edit,
  .dialog-content,
  .route-options {
    grid-template-columns: 1fr;
  }

  .metrics-grid,
  .insights-grid {
    grid-template-columns: 1fr;
  }

  .requests-table-wrap {
    display: none;
  }

  .mobile-request-list {
    display: grid;
    gap: 12px;
  }

  .slot-row {
    grid-template-columns: 1fr;
  }

  .primary-button,
  .secondary-button,
  .ghost-button,
  .danger-button {
    width: 100%;
  }

  .public-footer {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .booking-intro,
  .booking-layout,
  .dashboard,
  .admin-main {
    width: min(100% - 24px, var(--max));
  }

  .calendar-grid {
    gap: 5px;
  }

  .booking-page .calendar-grid {
    gap: 6px 5px;
  }

  .weekday,
  .calendar-day,
  .calendar-day button,
  .calendar-empty {
    min-height: 42px;
    font-size: 0.84rem;
  }

  .booking-page .weekday,
  .booking-page .calendar-day,
  .booking-page .calendar-day button,
  .booking-page .calendar-empty {
    min-height: 34px;
  }

  .booking-page .calendar-day button {
    width: 34px;
  }

  .hero-schedule span,
  .hero-cta {
    width: 100%;
    justify-content: center;
  }

  .landing-copy h1 {
    font-size: 3.15rem;
  }

  .landing-schedule span,
  .landing-cta {
    width: 100%;
    justify-content: center;
  }

  .landing-visual {
    min-height: 236px;
  }

  .landing-logo-disk {
    width: min(218px, 76vw);
  }

  .booking-intro h1 {
    font-size: 2.35rem;
  }

  .hero-content h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }
}

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

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