/* Shared look for the booking, confirmation, terms and admin pages — matches the homepage. */
:root {
  --ground:    #f4efe6;
  --ground-2:  #e7decd;
  --card:      #fbf8f2;
  --ink:       #23201c;
  --ink-soft:  #6a6055;
  --line:      rgba(35,32,28,.14);
  --spring:    #0c6f66;
  --spring-dk: #08544d;
  --spring-lt: #d5e9e5;
  --peak:      #b4621f;
  --danger:    #a3322a;
  --pad: 1rem;
  color-scheme: light;
}
* { box-sizing: border-box; }
body {
  margin: 0; background: var(--ground); color: var(--ink);
  font-family: Karla, "Segoe UI", system-ui, sans-serif; font-size: 1rem; line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}
h1, h2, h3 {
  font-family: Fraunces, Georgia, serif; font-variation-settings: "SOFT" 60, "WONK" 1;
  font-weight: 500; line-height: 1.15; margin: 0; text-wrap: balance;
}
a { color: var(--spring); text-underline-offset: 3px; }
:focus-visible { outline: 3px solid var(--spring); outline-offset: 2px; border-radius: 3px; }

.topbar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .9rem var(--pad); border-bottom: 1px solid var(--line); background: var(--ground);
}
.topbar a { color: var(--ink); text-decoration: none; font-family: Fraunces, Georgia, serif; font-size: 1.15rem; }
.topbar small { color: var(--ink-soft); font-size: .85rem; }

.wrap { max-width: 68rem; margin: 0 auto; padding: 1.75rem var(--pad) 4rem; }
.eyebrow { font-size: .75rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--spring); margin: 0 0 .4rem; }
.lede { color: var(--ink-soft); margin: .6rem 0 0; max-width: 40rem; }

.card { background: var(--card); border: 1px solid var(--line); border-radius: 6px; padding: 1.25rem; }
.card + .card { margin-top: 1rem; }
.card h2 { font-size: 1.3rem; margin-bottom: .9rem; }

label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: .3rem; }
.hint { display: block; font-weight: 400; color: var(--ink-soft); font-size: .82rem; }
input[type=text], input[type=email], input[type=tel], input[type=number], input[type=password], textarea {
  width: 100%; font: inherit; color: var(--ink); background: #fff;
  border: 1px solid rgba(35,32,28,.28); border-radius: 4px; padding: .7rem .8rem; min-height: 2.9rem;
}
textarea { min-height: 5rem; resize: vertical; }
.field + .field { margin-top: 1rem; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%; min-height: 3.3rem; padding: .9rem 1.4rem; border: 0; border-radius: 3px;
  background: var(--spring); color: #fff; font: 700 1.05rem Karla, sans-serif; cursor: pointer; text-decoration: none;
}
.btn:hover { background: var(--spring-dk); }
.btn[disabled] { background: #9fb8b4; cursor: not-allowed; }
.btn-ghost { background: transparent; color: var(--spring); border: 1px solid var(--spring); }
.btn-ghost:hover { background: var(--spring-lt); }

.notice { border-radius: 4px; padding: .8rem 1rem; font-size: .93rem; }
.notice.warn { background: #f6e6d6; color: #6e3a10; }
.notice.error { background: #f5dcd9; color: var(--danger); }
.notice.ok { background: var(--spring-lt); color: var(--spring-dk); }
[hidden] { display: none !important; }

@media (min-width: 46rem) { :root { --pad: 2rem; } }
