:root {
  color-scheme: dark;
  --ink: #eee8dc;
  --muted: #a9a79f;
  --gold: #d5bd83;
  --line: rgba(213, 189, 131, .22);
  --panel: rgba(8, 23, 37, .88);
  --panel-2: rgba(13, 31, 47, .76);
  --focus: #f1d99f;
  --error: #f0aaa0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: #06121f;
  color: var(--ink);
  font-family: "EB Garamond", Garamond, Georgia, serif;
  font-size: 18px;
  line-height: 1.58;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 0%, rgba(28, 50, 68, .32), transparent 45rem),
    linear-gradient(180deg, #071421, #040d16 75%);
}
a { color: var(--gold); text-underline-offset: .18em; }
button, input, textarea { font: inherit; }
button, label { -webkit-tap-highlight-color: transparent; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-180%);
  padding: .6rem 1rem;
  background: #fff;
  color: #071421;
}
.skip-link:focus { transform: none; }

.site-header {
  display: grid;
  justify-items: center;
  gap: .7rem;
  padding: 2.4rem 1.25rem 1.2rem;
}
.brand { display: block; width: min(240px, 62vw); opacity: .86; }
.brand img { display: block; width: 100%; height: auto; }
.prototype-label {
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.booking-page { width: min(960px, calc(100% - 2rem)); margin: 0 auto 4rem; }
.intro { max-width: 650px; margin: 1.6rem auto 2rem; text-align: center; }
.eyebrow, .step-count {
  margin: 0 0 .45rem;
  color: var(--gold);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3, legend { font-weight: 500; letter-spacing: .015em; }
h1 { margin: 0; font-size: clamp(2rem, 6vw, 3.35rem); line-height: 1.08; }
.intro > p:last-child { margin: 1rem auto 0; color: #c9c6bd; max-width: 580px; }

.progress { margin: 0 auto 1.2rem; max-width: 760px; }
.progress ol { display: grid; grid-template-columns: repeat(5, 1fr); padding: 0; margin: 0; list-style: none; }
.progress li { position: relative; display: grid; justify-items: center; gap: .3rem; color: #777b7d; font-size: .72rem; }
.progress li::before { content: ""; position: absolute; top: .75rem; right: 50%; width: 100%; height: 1px; background: rgba(255,255,255,.12); z-index: -1; }
.progress li:first-child::before { display: none; }
.progress span { display: grid; place-items: center; width: 1.5rem; height: 1.5rem; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; background: #071421; }
.progress em { font-style: normal; white-space: nowrap; }
.progress .is-current, .progress .is-complete { color: var(--ink); }
.progress .is-current span { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(213,189,131,.07); }
.progress .is-complete span { border-color: rgba(213,189,131,.5); background: rgba(213,189,131,.12); }

.booking-card {
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--panel);
  box-shadow: 0 2rem 5rem rgba(0,0,0,.24);
  overflow: hidden;
}
form, .confirmation { padding: clamp(1.4rem, 5vw, 3.5rem); }
.step { animation: reveal .45s ease both; }
@keyframes reveal { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
fieldset { margin: 0; padding: 0; border: 0; }
legend, .step h2 { width: 100%; margin: 0 0 1.4rem; font-size: clamp(1.65rem, 4vw, 2.25rem); line-height: 1.15; }

.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.choice-grid.two { grid-template-columns: repeat(2, 1fr); }
.choice { position: relative; display: block; cursor: pointer; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice > span {
  display: grid;
  align-content: center;
  min-height: 116px;
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.018);
  transition: border-color .25s ease, background-color .25s ease, color .25s ease;
}
.choice strong { font-weight: 500; font-size: 1.16rem; }
.choice small { display: block; margin-top: .25rem; color: var(--muted); line-height: 1.35; }
.choice:hover > span { border-color: rgba(213,189,131,.45); }
.choice input:checked + span { border-color: var(--gold); background: rgba(213,189,131,.09); }
.choice input:focus-visible + span { outline: 2px solid var(--focus); outline-offset: 3px; }

.location-link {
  margin-top: 1.4rem;
  padding: .3rem 0;
  border: 0;
  background: transparent;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: .2em;
  cursor: pointer;
}
.location-notice, .account-note, .service-information {
  margin-top: 1.3rem;
  padding: 1.2rem 1.35rem;
  border-left: 1px solid var(--gold);
  background: rgba(213,189,131,.055);
}
.location-notice h2, .account-note h3 { margin: 0 0 .35rem; font-size: 1.22rem; }
.location-notice p, .account-note p { margin: 0; }

.conditional { margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.09); }
.conditional > legend { font-size: 1.25rem; margin-bottom: .8rem; }
.inline-options { display: flex; gap: 1.5rem; margin-bottom: 1.2rem; }
.inline-options label { cursor: pointer; }
#employer-wrap { margin-top: 1rem; padding-top: .9rem; }
#employer-wrap > legend, #business-people-wrap > legend { margin-bottom: .25rem; }
#employer-wrap .inline-options { margin: .1rem 0 .75rem; }
#business-people-wrap { margin-top: .75rem; padding-top: .75rem; }
#participant-count {
  margin-top: 0;
  border-color: #d8d8d5;
  background: #fff;
  color: #262626;
  color-scheme: light;
}
label:not(.choice):not(.longer-option) { display: block; }
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%;
  margin-top: .35rem;
  padding: .78rem .9rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 2px;
  background: #07131f;
  color: var(--ink);
}
textarea { resize: vertical; min-height: 7rem; }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--focus); outline-offset: 2px; border-color: transparent; }

.service-information { margin-top: 0; }
.service-information h3 { margin: 0 0 .25rem; font-size: 1.45rem; }
.service-information .duration { color: var(--gold); }
.template-lines { margin: .8rem 0 0; padding: 0; list-style: none; }
.template-lines li { padding: .28rem 0; border-top: 1px solid rgba(255,255,255,.07); }
.template-source { margin: .9rem 0 0; color: #81888a; font-size: .75rem; }
.override { color: #f0dba8; }
.longer-option { display: grid; grid-template-columns: auto 1fr; gap: .85rem; align-items: start; margin-top: 1rem; padding: 1rem 1.1rem; border: 1px solid rgba(255,255,255,.13); cursor: pointer; }
.longer-option input { margin-top: .35rem; }
.longer-option small { display: block; color: var(--muted); }
.waitlist-panel { margin-top: 1.25rem; }
.waitlist-option { margin-top: 0; }
.waitlist-options { padding: 1rem 1.1rem; border: 1px solid rgba(255,255,255,.13); border-top: 0; }
.waitlist-options > fieldset > legend { margin-bottom: .7rem; font-size: 1rem; }
.waitlist-mode-options { margin-bottom: 0; }
.waitlist-mode-options label { display: flex !important; align-items: center; gap: .45rem; }
.waitlist-mode-options input:focus { outline: none; border-color: initial; }
.waitlist-date { margin-top: .75rem; padding: 1rem 1.1rem; border: 1px solid rgba(255,255,255,.13); }
.waitlist-date label { font-weight: 600; }
.waitlist-date small { display: block; margin-top: .45rem; color: var(--muted); }
.waitlist-date small.is-valid { color: #7fa77f; }
.slot-fieldset { margin-top: 2rem; }
.slot-fieldset legend { margin-bottom: .3rem; font-size: 1.35rem; }
.quiet-note { color: var(--muted); }
.slot-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem; margin-top: 1rem; }
.slot-option { position: relative; cursor: pointer; }
.slot-option input { position: absolute; opacity: 0; }
.slot-option span { display: grid; padding: .85rem 1rem; border: 1px solid rgba(255,255,255,.13); }
.slot-option strong { font-weight: 500; }
.slot-option small { color: var(--muted); }
.slot-option input:checked + span { border-color: var(--gold); background: rgba(213,189,131,.09); }
.slot-option input:focus-visible + span { outline: 2px solid var(--focus); outline-offset: 3px; }

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.field.full { grid-column: 1 / -1; }
.field label span { color: var(--muted); font-size: .85em; }
.account-note { margin: 1.5rem 0; }
.summary { padding: 1.2rem 1.35rem; border: 1px solid rgba(255,255,255,.11); background: var(--panel-2); }
.summary h3 { margin: 0 0 .6rem; font-size: 1.25rem; }
.summary dl { display: grid; grid-template-columns: minmax(8rem, .5fr) 1fr; margin: 0; gap: .3rem 1rem; }
.summary dt { color: var(--muted); }
.summary dd { margin: 0; }
.marketing-consent { display: flex; align-items: flex-start; gap: .7rem; margin-top: 1rem; padding: .9rem 1rem; border: 1px solid rgba(255,255,255,.13); background: var(--panel-2); }
.marketing-consent input { flex: 0 0 auto; width: 1.1rem; height: 1.1rem; margin: .2rem 0 0; accent-color: var(--gold); }
.marketing-consent label { cursor: pointer; line-height: 1.45; }
.marketing-consent input:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; }
.privacy-note { margin: 1rem 0 0; color: var(--muted); font-size: .85rem; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.actions { display: flex; justify-content: space-between; gap: .8rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: .72rem 1.35rem;
  border: 1px solid var(--gold);
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}
.button.primary { margin-left: auto; background: var(--gold); color: #07131f; }
.button.secondary { background: transparent; color: var(--gold); }
.button:hover { background: #f0dba8; color: #07131f; }
.button:focus-visible, .location-link:focus-visible, a:focus-visible { outline: 2px solid var(--focus); outline-offset: 4px; }
.button[disabled] { opacity: .55; cursor: wait; }
.form-error { margin-top: 1.2rem; padding: .8rem 1rem; border-left: 2px solid var(--error); color: var(--error); background: rgba(161,50,43,.12); }

.confirmation { max-width: 700px; margin: 0 auto; text-align: center; }
.confirmation h2 { font-size: clamp(1.8rem, 5vw, 2.7rem); }
.confirmation .reference { color: var(--gold); }
.confirmation .button { margin-top: 1rem; }
.confirmation-links { margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid #ddd4c5; }
.confirmation-links p { margin-bottom: .35rem; }
.confirmation-links .button { display: block; width: min(100%, 32rem); margin: .65rem auto 0; }
.discount-panel { margin-top: 1.25rem; padding: 1.2rem 1.35rem; border: 1px solid #e1e0dc; background: #faf9f7; }
.discount-panel h3 { margin: 0 0 .35rem; font-size: 1.25rem; }
.discount-panel p { margin: 0 0 .75rem; }
.discount-entry { display: flex; align-items: stretch; gap: .65rem; }
.discount-entry input { flex: 1 1 14rem; min-width: 0; text-transform: uppercase; }
.discount-entry .button { flex: 0 0 auto; margin: 0; }
.discount-status { min-height: 1.4em; margin-top: .65rem !important; color: #8b2e23; }
.discount-status.valid { color: #2f6b42; }
.discount-breakdown { display: grid; grid-template-columns: minmax(12rem, 1fr) auto; gap: .35rem 1rem; margin: .9rem 0 0; padding-top: .9rem; border-top: 1px solid #ddd4c5; }
.discount-breakdown dt, .discount-breakdown dd { margin: 0; }
.discount-breakdown dd { text-align: right; white-space: nowrap; }
.discount-breakdown dt:last-of-type, .discount-breakdown dd:last-of-type { padding-top: .45rem; border-top: 1px solid #ddd4c5; font-weight: 700; }
.returning-benefit {
  position: relative;
  margin-top: 3.35rem;
  padding: 2.25rem 1.5rem 1.65rem;
  border: 1px solid rgba(157, 131, 95, .42);
  border-top: 4px solid #9d835f;
  background:
    radial-gradient(circle at 50% 0, rgba(213, 189, 131, .2), transparent 13rem),
    #faf7f0;
  box-shadow: 0 1rem 2.5rem rgba(31, 43, 52, .08);
}
.returning-benefit h3 { margin: 0 0 .65rem; font-size: 1.5rem; }
.returning-benefit p { max-width: 38rem; margin: .55rem auto 0; }
.returning-benefit-star {
  position: absolute;
  top: 0;
  left: 50%;
  display: grid;
  place-items: center;
  width: 3.15rem;
  height: 3.15rem;
  border: .3rem solid #fff;
  border-radius: 50%;
  background: #b89b5d;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  box-shadow: 0 .45rem 1.2rem rgba(52, 42, 25, .2);
  transform: translate(-50%, -58%);
}
.returning-benefit .returning-benefit-button {
  width: min(100%, 26rem);
  min-height: 3.3rem;
  margin-top: 1.2rem;
  border-color: #9d835f;
  background: #9d835f;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 .55rem 1.25rem rgba(80, 61, 34, .18);
}
.returning-benefit .returning-benefit-button:hover {
  border-color: #735d3f;
  background: #735d3f;
  color: #fff;
}

.related-reading-heading {
  margin: 0 0 .8rem !important;
  font-size: 1.15rem;
  font-weight: 600;
}
.related-reading-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.related-reading-card {
  --related-image: none;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 15rem;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid rgba(184, 155, 93, .46);
  border-radius: 0;
  background-color: #0b2840;
  background-image: var(--related-image);
  background-position: center;
  background-size: cover;
  color: #fff;
  text-decoration: none;
  transition: transform .25s ease;
}
.related-reading-card::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: 0;
  background-image: var(--related-image);
  background-position: center;
  background-size: cover;
  filter: blur(5px) grayscale(100%) brightness(.75);
  opacity: .78;
  transition: filter .4s ease, opacity .4s ease;
}
.related-reading-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(20, 63, 96, .62), rgba(5, 31, 53, .82));
}
.related-reading-border {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
  transition: box-shadow .25s ease;
}
.related-reading-title {
  position: relative;
  z-index: 2;
  padding: 0 1rem;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: .035em;
  line-height: 1.25;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .7), 0 0 2px rgba(0, 0, 0, .45);
}
.related-reading-card:hover {
  color: #fff;
  transform: translateY(-2px);
}
.related-reading-card:hover::before {
  filter: blur(0) grayscale(0%) brightness(.9);
  opacity: .92;
}
.related-reading-card:hover .related-reading-border {
  box-shadow: inset 0 0 0 1px rgba(213, 189, 131, .72);
}
.related-reading-card:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
  transform: translateY(-2px);
}
footer { padding: 0 1rem 2.5rem; text-align: center; color: #777f82; font-size: .85rem; }

@media (max-width: 720px) {
  body { font-size: 17px; }
  .booking-page { width: min(100% - 1rem, 960px); }
  .site-header { padding-top: 1.6rem; }
  .progress em { display: none; }
  .choice-grid, .choice-grid.two, .slot-grid, .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .choice span { min-height: 88px; }
  form, .confirmation { padding: 1.35rem 1rem 1.5rem; }
  .summary dl { grid-template-columns: 1fr; }
  .summary dd { margin-bottom: .45rem; }
  .discount-entry { flex-direction: column; }
  .discount-entry .button { width: 100%; }
  .discount-breakdown { grid-template-columns: 1fr auto; font-size: .95rem; }
  .returning-benefit { padding: 2rem 1rem 1.35rem; }
  .related-reading-grid { grid-template-columns: 1fr; }
  .related-reading-card { min-height: 13rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Lys, kompakt bookingvariant */
:root {
  color-scheme: light;
  --ink: #252525;
  --muted: #717171;
  --gold: #ac9270;
  --line: #e4e1dc;
  --panel: #fff;
  --panel-2: #faf9f7;
  --focus: #806743;
  --error: #a33d31;
}

body {
  background: #f7f7f5;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.48;
}
body::before { display: none; }
a { color: #755f42; }

.site-header {
  width: min(1120px, calc(100% - 2rem));
  grid-template-columns: auto 1fr;
  justify-items: start;
  align-items: center;
  gap: 1rem;
  margin: 0 auto;
  padding: 1.5rem 0 1rem;
}
.brand { width: 155px; opacity: .88; }
.brand img { filter: brightness(.16); }
.prototype-label { color: #86817a; font-size: .7rem; letter-spacing: .12em; }

.booking-page { width: min(1120px, calc(100% - 2rem)); margin-bottom: 3rem; }
.intro { margin: .8rem auto 1.7rem; }
.eyebrow, .step-count { color: #9a805f; font-size: .69rem; letter-spacing: .14em; }
h1 { font-family: "EB Garamond", Garamond, Georgia, serif; font-size: clamp(1.85rem, 3vw, 2.2rem); color: #222; }
.intro > p:last-child { margin-top: .55rem; color: #686868; font-size: .95rem; }

.progress { max-width: 820px; margin-bottom: 1rem; }
.progress li { color: #9c9c9c; font-size: .7rem; }
.progress li::before { background: #e2e2df; }
.progress span { width: 1.8rem; height: 1.8rem; border-color: #dededb; background: #f7f7f5; }
.progress .is-current, .progress .is-complete { color: #333; }
.progress .is-current span { border-color: #363636; box-shadow: none; background: #fff; }
.progress .is-complete span { border-color: #333; background: #333; color: #fff; }

.booking-card {
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid #ddddda;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 8px 24px rgba(20,20,20,.05);
}
form, .confirmation { padding: clamp(1.5rem, 4vw, 2.4rem); }
legend, .step h2 { margin-bottom: 1.1rem; font-size: clamp(1.25rem, 2.4vw, 1.5rem); font-weight: 600; letter-spacing: -.015em; }
.step { animation-duration: .25s; }

.choice-grid { gap: .7rem; }
.choice > span {
  min-height: 94px;
  padding: 1rem;
  border-color: #dededb;
  border-radius: 0;
  background: #fff;
  color: #292929;
}
.choice strong { font-size: 1rem; font-weight: 600; }
.choice small { margin-top: .18rem; color: #717171; font-size: .79rem; }
.choice:hover > span { border-color: #baa17f; }
.choice input:checked + span {
  border-color: #a88d68;
  box-shadow: inset 0 0 0 1px #a88d68;
  background: #fffdf9;
}
.services { grid-template-columns: repeat(2, 1fr); }
.services .choice > span { min-height: 150px; align-content: start; }
.service-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 0;
  margin-top: auto;
  padding: .7rem 0 0;
  border: 0;
  border-top: 1px solid #eceae6;
  background: transparent;
  font-size: .83rem;
}
.service-card-meta em { color: #707070; font-style: normal; }
.service-card-meta b { color: #8e7350; font-weight: 600; text-align: right; }
.recommended-choice > span {
  position: relative;
  overflow: hidden;
  padding-top: 2.7rem;
  border-color: #b89b5d;
}
.recommended-banner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  margin: 0;
  padding: .42rem .75rem;
  color: #071322;
  background: #b89b5d;
  font-size: .69rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.location-link { color: #755f42; font-size: .9rem; }
.location-notice, .account-note, .service-information {
  border-left: 3px solid #b59a75;
  background: #faf9f7;
}
.conditional { border-top-color: #ececea; }
.conditional > legend { font-size: 1.05rem; }
.quiet-note { color: #747474; }

input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  border-color: #d8d8d5;
  background: #fff;
  color: #262626;
  font-size: 1rem;
}
.service-information { padding: 1.15rem 1.25rem; }
.service-information h3 { font-size: 1.15rem; font-weight: 600; }
.service-information .duration { color: #8d724f; font-size: .86rem; }
.template-lines { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 1.2rem; font-size: .86rem; }
.template-lines li { border-top-color: #e7e5e1; }
.template-source { color: #8a8a87; }
.override { color: #7b6040; }
.longer-option { border-color: #dededb; background: #fff; }
.waitlist-options { border-color: #dededb; background: #faf9f7; }
.waitlist-date { border-color: #dededb; background: #fff; }
.waitlist-date small.is-valid { color: #49754a; }
.slot-fieldset { margin-top: 1.5rem; }
.slot-fieldset legend { font-size: 1.05rem; font-weight: 600; }
.slot-heading { margin: .2rem 0 .7rem; color: #666; font-size: .88rem; }
.slot-grid { gap: .6rem; }
.slot-option span { border-color: #dededb; background: #fff; }
.slot-option input:checked + span { border-color: #a88d68; background: #fffdf9; box-shadow: inset 0 0 0 1px #a88d68; }
.slot-option small { color: #777; }
.week-calendar { margin-top: 1.6rem; border-top: 1px solid #e5e2dd; padding-top: 1.2rem; }
.week-calendar-header { display: grid; grid-template-columns: 2.4rem 1fr 2.4rem; align-items: center; gap: .6rem; margin-bottom: .8rem; }
.week-calendar-header h3 { margin: 0; text-align: center; font-family: "EB Garamond", Garamond, Georgia, serif; font-size: 1.15rem; font-weight: 500; }
.week-nav { width: 2.4rem; height: 2.4rem; border: 1px solid #d7d4cf; background: #fff; color: #6f583b; cursor: pointer; }
.week-nav:hover, .week-nav:focus-visible { border-color: #9d835f; outline: none; }
.week-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: .55rem; }
.week-day { min-width: 0; padding: .65rem; border: 1px solid #e4e1dc; background: #faf9f7; }
.week-day h4 { margin: 0 0 .55rem; font-size: .78rem; font-weight: 600; text-transform: capitalize; }
.week-day > p { margin: .4rem 0; color: #999; font-size: .75rem; }
.week-day .slot-option { display: block; margin-top: .4rem; }
.week-day .slot-option span { padding: .5rem .55rem; background: #fff; }
.week-day .slot-option strong { font-size: .8rem; }
.week-day .slot-option small { font-size: .7rem; }
.summary { border-color: #e1e0dc; background: #faf9f7; }
.marketing-consent { border-color: #e1e0dc; background: #faf9f7; }
.privacy-note { color: #777; }
.participant-primary { grid-column: 1 / -1; }
.has-multiple-participants .participant-primary,
.has-multiple-participants .participant-name {
  grid-column: 1 / -1;
  margin-top: .35rem;
  padding-top: 1.35rem;
  border-top: 1px solid #ddd7cd;
}
.has-multiple-participants .participant-primary { margin-top: 0; padding-top: 0; border-top: 0; }
.has-multiple-participants .participant-primary::before,
.has-multiple-participants .participant-name:not([hidden])::before {
  content: attr(data-person-label);
  display: block;
  margin: 0 0 .7rem;
  color: #282828;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.has-multiple-participants .participant-email,
.has-multiple-participants .participant-phone { align-self: end; }
.participant-detail label span { color: #777; font-weight: 400; }

.button { min-height: 42px; padding: .62rem 1.15rem; border-color: #9d835f; font-size: .9rem; }
.button.primary { background: #9d835f; color: #fff; }
.button.secondary { background: #fff; color: #6f583b; }
.button:hover { background: #806949; color: #fff; }
.form-error { background: #fff5f3; }
footer { color: #888; }

@media (max-width: 720px) {
  body { font-size: 14px; }
  .site-header { width: calc(100% - 1.5rem); grid-template-columns: 1fr; justify-items: center; gap: .45rem; }
  .brand { width: 135px; }
  .booking-page { width: calc(100% - 1rem); }
  .intro { margin-top: .4rem; }
  h1 { font-size: 1.8rem; }
  .booking-card { box-shadow: none; }
  .choice-grid, .choice-grid.two, .services, .slot-grid, .form-grid { grid-template-columns: 1fr; }
  .services .choice > span { min-height: 126px; }
  .template-lines { grid-template-columns: 1fr; }
  .service-card-meta { display: flex; }
  .week-grid { grid-template-columns: 1fr; }
  .week-day { display: grid; grid-template-columns: minmax(5.5rem, .6fr) repeat(2, 1fr); gap: .4rem; align-items: start; }
  .week-day h4, .week-day > p { margin: .45rem 0; }
  .week-day .slot-option { margin-top: 0; }
}

/* Booking i samme rammeverk som index-malen */
.site-page {
  position: relative;
  width: min(1040px, calc(100% - 2.5rem));
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 1.5rem;
  border-left: 1px solid #eeeae3;
  border-right: 1px solid #eeeae3;
}
.utility {
  position: relative;
  min-height: 2.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e9e4dc;
  color: #77736d;
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.utility a { color: #70614e; text-decoration-color: #c9baa5; }
.menu-toggle {
  width: 2.6rem;
  height: 2.2rem;
  display: grid;
  place-content: center;
  gap: .28rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #856f52;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 1.25rem;
  height: 1px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-open .menu-toggle span:nth-child(1) { transform: translateY(.33rem) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-.33rem) rotate(-45deg); }
.wordmark { padding: 2.5rem 0 2.2rem; text-align: center; }
.wordmark::after {
  content: "◆  1933  ◆";
  display: block;
  margin-top: .85rem;
  color: #9d835f;
  opacity: .72;
  font-size: .62rem;
  letter-spacing: .32em;
}
.logo-preview { display: block; width: min(275px, 68vw); height: auto; margin: 0 auto; }
.toplinks {
  position: absolute;
  top: 3.2rem;
  left: 1.5rem;
  z-index: 30;
  width: min(290px, calc(100% - 3rem));
  padding: .35rem;
  border: 1px solid #d7cbb9;
  background: rgba(255,255,255,.99);
  box-shadow: 0 1rem 2.5rem rgba(35,30,22,.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-.45rem);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.menu-open .toplinks { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
.toplinks ul { margin: 0; padding: 0; list-style: none; }
.toplinks li + li { border-top: 1px solid #eee9e1; }
.toplinks a {
  display: flex;
  justify-content: space-between;
  min-height: 2.55rem;
  align-items: center;
  padding: .55rem .8rem;
  color: #34312d;
  text-decoration: none;
}
.toplinks a::after { content: "›"; color: #9d835f; }
.toplinks a:hover { background: #faf8f4; }

.booking-page { width: min(820px, calc(100% - 1rem)); margin: 1.25rem auto 3rem; }
.booking-card {
  position: relative;
  width: 100%;
  max-width: 820px;
  overflow: visible;
  border-color: #d9d2c8;
  box-shadow: 0 1.4rem 3.6rem rgba(43,36,27,.07), inset 0 0 0 4px #fdfcfb;
}
.booking-card::before {
  content: none;
  position: absolute;
  top: -1.25rem;
  left: 50%;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  transform: translateX(-50%);
  border: 1px solid #cdbfa9;
  border-radius: 50%;
  background: #fff url("/Favicon.png") center / 80% no-repeat;
}
.intro { max-width: 650px; margin: 0 auto; padding: 2.6rem 1.5rem .8rem; }
.intro h1 {
  margin: 0;
  padding: 0 1rem .9rem;
  border-bottom: 1px solid #e8e2d8;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: .01em;
}
.progress { margin: .7rem auto 0; padding: 0 2rem; }
form, .confirmation { padding: 1.5rem clamp(1.2rem, 4vw, 2.8rem) 2.3rem; }
.employer-question { animation: reveal .28s ease both; }
.business-note { margin: 1rem 0 0; }
.card-note {
  margin-top: .55rem !important;
  color: #897f72 !important;
  font-size: .74rem !important;
  font-style: italic;
}
footer {
  margin: 2rem 0 4rem;
  padding: 0;
  color: #817d76;
  text-align: center;
  font-family: "EB Garamond", Garamond, Georgia, serif;
  font-size: .86rem;
  letter-spacing: .035em;
}

@media (max-width: 720px) {
  .site-page { width: 100%; padding: 0 .75rem; border: 0; }
  .wordmark { padding: 2rem 0 2.25rem; }
  .logo-preview { width: min(235px, 68vw); }
  .toplinks { left: .75rem; width: min(290px, calc(100% - 1.5rem)); }
  .booking-page { width: 100%; margin-top: .75rem; }
  .intro { padding: 2.3rem 1rem .65rem; }
  .intro h1 { font-size: 1.3rem; }
  .progress { padding: 0 .75rem; }
  form, .confirmation { padding: 1.25rem 1rem 1.5rem; }
}

/* Mørk utside som på forsiden, med lys bookingramme */
body { background: #071322; }
.site-page {
  border-color: rgba(220,197,143,.08);
  background: #071322;
}
.utility { border-bottom-color: rgba(220,197,143,.16); color: #918d83; }
.utility a, .menu-toggle { color: #dcc58f; }
.wordmark::after { color: #b89b5d; }
.logo-preview { filter: brightness(1.02) sepia(.16) saturate(.66); }
.toplinks {
  border-color: rgba(184,155,93,.32);
  background: rgba(7,19,34,.99);
  box-shadow: 0 1.2rem 3rem rgba(0,0,0,.42);
}
.toplinks li + li { border-top-color: rgba(184,155,93,.16); }
.toplinks a { color: #e5ddcc; }
.toplinks a::after { color: #b89b5d; }
.toplinks a:hover { color: #f3ead8; background: rgba(184,155,93,.08); }
.intro > p:last-child {
  max-width: 560px;
  margin: .7rem auto 0;
  color: #716d66;
  font-size: .82rem;
}
.included-choice > span {
  position: relative;
  overflow: hidden;
  padding-top: 2.7rem;
  border-color: #68a67c;
}
.included-banner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  min-height: 0 !important;
  margin: 0;
  padding: .42rem .75rem !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #278247 !important;
  color: #fff !important;
  font-size: .69rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.included-choice input:checked + span {
  border-color: #68a67c;
  box-shadow: inset 0 0 0 1px #68a67c;
  background: #fbfefb;
}
.addon-choice input:checked + span {
  border-color: #a88d68;
  box-shadow: inset 0 0 0 1px #a88d68;
  background: #fffdf9;
}
footer { color: #918d83; }
footer a { color: #dcc58f; }

/* Utsiden kopierer mål, typografi og farger fra index-malen 1:1 */
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: #071322;
  color: #eee8dc;
  font-family: "EB Garamond", Garamond, Georgia, serif;
  font-size: 17px;
  line-height: 1.68;
}
#sturlason-site {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #071322;
  padding: 1.25rem;
}
#sturlason-site .site-page {
  position: relative;
  width: auto;
  max-width: 1040px;
  min-height: 0;
  margin: 0 auto;
  padding: 0 1.5rem;
  border-left: 1px solid rgba(220,197,143,.08);
  border-right: 1px solid rgba(220,197,143,.08);
  background: transparent;
}
.utility {
  position: relative;
  min-height: 2.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #918d83;
  border-bottom: 1px solid rgba(220,197,143,.16);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .84rem;
}
.utility-actions { display: flex; align-items: center; gap: .65rem; }
.utility a { color: #dcc58f; text-decoration-color: rgba(220,197,143,.38); text-underline-offset: .2em; }
.menu-toggle {
  width: 2.6rem;
  height: 2.2rem;
  display: grid;
  place-content: center;
  gap: .28rem;
  padding: 0;
  color: #dcc58f;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.eye {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  padding: 0;
  color: #d8c79f;
  border: 1px solid rgba(220,197,143,.30);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.wordmark { text-align: center; padding: 3.5rem 0 2.9rem; }
.wordmark::after {
  content: "◆  1933  ◆";
  display: block;
  margin-top: 1.15rem;
  color: #b89b5d;
  opacity: .78;
  letter-spacing: .35em;
  font-size: .72rem;
}
.logo-preview {
  display: block;
  width: min(335px, 74vw);
  height: auto;
  margin: 0 auto;
  filter: brightness(1.02) sepia(.16) saturate(.66);
}
.toplinks {
  position: absolute;
  top: 4rem;
  left: 1.5rem;
  z-index: 1100;
  width: min(300px, calc(100% - 3rem));
  margin: 0;
  padding: .4rem;
  color: #eee8dc;
  border: 1px solid rgba(184,155,93,.32);
  border-radius: .25rem;
  background: rgba(7,19,34,.99);
  box-shadow: 0 1.2rem 3rem rgba(0,0,0,.42);
  text-align: left;
  line-height: 1.4;
}
.toplinks a, .services-menu summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.75rem;
  padding: .65rem .9rem;
  color: #e5ddcc;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: .035em;
}
.services-menu summary { color: #dcc58f; list-style: none; }
.services-menu summary::-webkit-details-marker { display: none; }
.services-menu summary::after { content: "⌄"; color: #b89b5d; transition: transform .18s ease; }
.services-menu[open] summary::after { transform: rotate(180deg); }
.service-submenu {
  margin: 0;
  padding: .35rem 0 .65rem .8rem !important;
  border-top: 1px solid rgba(184,155,93,.16);
  background: rgba(4,12,20,.44);
}
.service-submenu li, .service-submenu li + li { border: 0; }
.service-submenu a {
  min-height: 2.25rem;
  padding: .42rem .9rem;
  color: #c8c1b4;
  font-size: .94rem;
  letter-spacing: .01em;
}
.service-submenu a::after { content: none; }
footer {
  margin: 2rem 0 5.5rem;
  padding: 0;
  color: #918d83;
  text-align: center;
  font-family: "EB Garamond", Garamond, Georgia, serif;
  font-size: inherit;
  letter-spacing: .04em;
}
footer a { color: #dcc58f; }

/* Bare den hvite bookingboksen har sitt eget skjemauttrykk */
.booking-card {
  color: #252525;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.48;
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.choice-grid.three { grid-template-columns: repeat(3, 1fr); }
.audience-choices .choice > span { height: 112px; min-height: 112px; }
.services { grid-auto-rows: 1fr; }
.services .choice > span,
.services .external-service-card > span {
  height: 178px;
  min-height: 178px;
}
.external-service-card { color: #292929; text-decoration: none; }
.external-service-card .service-card-meta { justify-content: flex-end; }
.pass-options { margin-top: .6rem; }
.pass-person { margin-top: 1rem; padding: 1.25rem; border: 1px solid #ddd6c7; border-radius: 4px; background: #faf9f6; }
.pass-person-heading { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.pass-person h3 { margin: 0 0 1rem; }
.pass-remove-person, .pass-add-person, .pass-add-extra, .pass-remove-extra { border: 1px solid #a58b5e; border-radius: 3px; background: #fff; color: #594a34; padding: .65rem 1rem; font: inherit; cursor: pointer; }
.pass-add-person { margin-top: 1rem; }
.pass-extra-wrap { margin-top: 1rem; }
.pass-extra-item { margin-top: .8rem; padding: .9rem; border-left: 3px solid #a58b5e; background: #fff; }
.pass-extra-heading { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: .6rem; }
.pass-remove-extra { padding: .4rem .7rem; }
.pass-total { font-weight: 700; margin: 1rem 0 0; }
.pass-packages { margin-top: 1.4rem; }
.pass-packages > legend { margin-bottom: .8rem; font-size: 1.05rem; }
.pass-packages .choice > span { height: 128px; min-height: 128px; }

.contact {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.1rem 2rem 1.7rem;
  border-top: 1px solid rgba(184,155,93,.30);
  border-bottom: 1px solid rgba(184,155,93,.30);
  text-align: center;
}
.locations {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 3rem;
}
.locations::after {
  content: "";
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  left: 50%;
  width: 1px;
  background: rgba(184,155,93,.20);
  transform: translateX(-.5px);
  pointer-events: none;
}
.location { padding: 1rem; }
.location + .location { border-left: 0; }
.location strong {
  color: #dcc58f;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: .55rem 1rem;
  color: #eee8dc;
  border: 1px solid rgba(184,155,93,.62);
  border-radius: 999px;
  background: #091420;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover { color: #fff3d7; background: #102238; text-decoration: none; }
.booking { margin-top: 1.4rem; letter-spacing: .055em; text-transform: uppercase; }

/* Samme ytre ramme, lenker og kontaktfelt som på forsiden */
.booking-page.site-whitebox-source { position: relative; }
#sturlason-site .contact a:not(.btn),
#sturlason-site footer a {
  color: #dcc58f;
  text-decoration-color: rgba(220,197,143,.38);
  text-underline-offset: .2em;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-top: 1.4rem;
}
.contact-actions .btn {
  width: 16.75rem;
  margin-top: 0;
}

#sturlason-site.reading-mode {
  color-scheme: light;
  color: #101820;
  background: #dcecf4;
}
#sturlason-site.reading-mode .site-page { border-color: rgba(17,59,80,.18); }
#sturlason-site.reading-mode a { color: #003f66; text-decoration-color: rgba(0,63,102,.48); }
#sturlason-site.reading-mode a:hover { color: #001f33; }
#sturlason-site.reading-mode .utility { color: #253840; border-color: rgba(17,59,80,.28); }
#sturlason-site.reading-mode .menu-toggle { color: #101820; }
#sturlason-site.reading-mode .eye { color: #f5fbfd; border-color: #173f53; background: #173f53; }
#sturlason-site.reading-mode .logo-preview { filter: none; }
#sturlason-site.reading-mode .wordmark::after { color: #173f53; }
#sturlason-site.reading-mode .toplinks {
  color: #101820;
  border-color: rgba(17,59,80,.34);
  background: rgba(238,247,251,.99);
  box-shadow: 0 1.2rem 3rem rgba(20,58,76,.18);
}
#sturlason-site.reading-mode .toplinks li + li,
#sturlason-site.reading-mode .service-submenu { border-color: rgba(17,59,80,.18); }
#sturlason-site.reading-mode .toplinks a,
#sturlason-site.reading-mode .services-menu summary,
#sturlason-site.reading-mode .service-submenu a { color: #101820; }
#sturlason-site.reading-mode .toplinks a::after,
#sturlason-site.reading-mode .services-menu summary::after { color: #315f76; }
#sturlason-site.reading-mode .toplinks a:hover,
#sturlason-site.reading-mode .service-submenu a:hover { color: #001f33; background: rgba(49,95,118,.09); }
#sturlason-site.reading-mode .service-submenu { background: rgba(205,229,239,.58); }
#sturlason-site.reading-mode .contact { color: #101820; border-color: rgba(17,59,80,.28); }
#sturlason-site.reading-mode .location + .location { border-color: rgba(17,59,80,.22); }
#sturlason-site.reading-mode .locations::after { background: rgba(17,59,80,.22); }
#sturlason-site.reading-mode .location strong { color: #173f53; }
#sturlason-site.reading-mode .booking,
#sturlason-site.reading-mode .chat .btn { color: #f5fbfd; border-color: #173f53; background: #173f53; }
#sturlason-site.reading-mode footer { color: #34464f; }
#sturlason-site.reading-mode .contact a:not(.btn),
#sturlason-site.reading-mode footer a {
  color: #003f66;
  text-decoration-color: rgba(0, 63, 102, .48);
}

.confirmation { padding-bottom: clamp(4rem, 7vw, 5.5rem); }

@media (max-width: 720px) {
  .utility-actions { padding-left: 2.6rem; }
  .menu-toggle {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + .7rem);
    left: calc(env(safe-area-inset-left, 0px) + .7rem);
    z-index: 1900;
    box-sizing: border-box;
    width: 2.6rem;
    height: 2.6rem;
    color: #dcc58f;
    border: 1px solid rgba(220,197,143,.22);
    border-radius: 50%;
    background: rgba(7,19,34,.88);
    box-shadow: 0 .45rem 1.3rem rgba(0,0,0,.24);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }
  .reading-mode .menu-toggle {
    color: #101820;
    border-color: rgba(17,59,80,.25);
    background: rgba(238,247,251,.94);
    box-shadow: 0 .45rem 1.3rem rgba(20,58,76,.16);
  }
  .toplinks {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 3.65rem);
    left: calc(env(safe-area-inset-left, 0px) + .7rem);
    width: min(300px, calc(100vw - 1.4rem));
    max-height: calc(100vh - 4.5rem);
    max-height: calc(100dvh - 4.5rem);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  #sturlason-site { padding: .75rem; }
  #sturlason-site .site-page { width: auto; padding: 0 .75rem; border: 0; }
  .wordmark { padding: 2.8rem 0 2.4rem; }
  .choice-grid.three { grid-template-columns: 1fr; }
  .services { grid-auto-rows: auto; }
  .services .choice > span,
  .services .external-service-card > span {
    height: auto;
    min-height: 158px;
  }
  .pass-packages .choice > span { height: 112px; min-height: 112px; }
  .waitlist-mode-options { align-items: flex-start; flex-direction: column; gap: .7rem; }
  .locations { grid-template-columns: 1fr; gap: 0; }
  .locations::after { display: none; }
  .location + .location { border-left: 0; border-top: 1px solid rgba(184,155,93,.20); }
  .contact { padding: 1.6rem .75rem 1.4rem; }
  .confirmation { padding-bottom: 3.5rem; }
}

body.chat-popup-open { overflow: hidden; }

/* Kompakte og tydelige bedriftsvalg i steg 1 */
.business-options {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, .65fr);
  gap: .8rem;
  margin-top: 1rem;
}
.business-question,
#employer-wrap,
#business-people-wrap {
  min-width: 0;
  margin: 0;
  padding: 1rem 1.05rem;
  border: 1px solid #e2ddd5;
  background: #fbfaf8;
}
.business-question > legend,
#employer-wrap > legend,
#business-people-wrap > legend {
  float: left;
  width: 100%;
  margin: 0 0 .7rem;
  color: #37332e;
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.35;
}
.business-question > legend + *,
#employer-wrap > legend + *,
#business-people-wrap > legend + * { clear: both; }
#employer-wrap .employer-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem;
  margin: 0;
}
.agreement-question {
  display: flex;
  align-items: center;
  gap: .35rem;
}
.agreement-help-toggle {
  display: inline-grid;
  flex: 0 0 auto;
  width: 1.15rem;
  min-width: 1.15rem;
  height: 1.15rem;
  min-height: 1.15rem;
  place-items: center;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #2368a2 !important;
  border-radius: 999px !important;
  padding: 0;
  background-color: #2368a2 !important;
  color: #fff !important;
  font: 700 .68rem/1 Arial, sans-serif;
  cursor: pointer;
}
.agreement-help-toggle:hover,
.agreement-help-toggle:focus-visible {
  border-color: #174d7a !important;
  background-color: #174d7a !important;
  outline: 2px solid rgba(35, 104, 162, .28);
  outline-offset: 2px;
}
.agreement-help {
  clear: both;
  margin: 0 0 .75rem;
  border-left: 3px solid #2368a2;
  padding: .7rem .8rem;
  background: #f2f7fb;
  color: #37332e;
  font-size: .9rem;
  line-height: 1.5;
}
#employer-wrap > .employer-options { clear: both; }
.employer-options label { position: relative; cursor: pointer; }
.employer-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.employer-options span {
  display: grid;
  min-height: 2.65rem;
  place-items: center;
  border: 1px solid #d6d0c7;
  background: #fff;
  color: #4c463e;
  font-weight: 600;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.employer-options label:hover span { border-color: #aa906d; }
.employer-options input:checked + span {
  border-color: #a88d68;
  box-shadow: inset 0 0 0 1px #a88d68;
  background: #fffdf9;
  color: #6f5738;
}
.employer-options input:focus-visible + span {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}
#company-wrap { margin-top: .8rem; }
#company-wrap label { color: #5f5850; font-size: .82rem; font-weight: 600; }
#company-wrap input { min-height: 2.75rem; }
.select-wrap { position: relative; clear: both; }
.select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: .5rem;
  height: .5rem;
  border-right: 1.5px solid #816a4d;
  border-bottom: 1.5px solid #816a4d;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
#participant-count {
  min-height: 2.65rem;
  margin: 0;
  padding: .68rem 2.7rem .68rem .85rem;
  border: 1px solid #d6d0c7;
  border-radius: 0;
  background: #fff;
  color: #37332e;
  font-weight: 500;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
#participant-count:hover { border-color: #aa906d; }
#participant-count:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  border-color: #a88d68;
}

@media (max-width: 720px) {
  .business-options { grid-template-columns: 1fr; gap: .65rem; }
}

.chat {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
}
.chat .btn {
  width: 3.15rem;
  height: 3.15rem;
  min-width: 3.15rem;
  padding: 0;
  border-radius: 50%;
  box-shadow: 0 .7rem 2rem rgba(0,0,0,.32);
}
.chat svg { width: 1.35rem; height: 1.35rem; }
.chat-modal[hidden] { display: none; }
.chat-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1.25rem 1.25rem 5.3rem;
  background: rgba(1,6,10,.56);
}
.chat-window {
  position: relative;
  width: min(520px, calc(100vw - 2.5rem));
  height: min(500px, calc(100vh - 3rem));
  min-height: 420px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 0;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
}
.chat-window-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  height: 0;
  padding: 0;
  pointer-events: none;
}
#chat-title, .chat-full-link { display: none; }
.chat-window-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  pointer-events: auto;
}
.chat-close {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #151515;
  border: 1px solid #d5d5d5;
  border-radius: 50%;
  background: rgba(255,255,255,.96);
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}
.chat-frame {
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  background: #fff;
}
.reading-mode .chat-modal { background: rgba(17,49,65,.34); }

@media (max-width: 720px) {
  body.chat-popup-open {
    position: fixed;
    inset: 0;
    width: 100%;
    overflow: hidden;
  }
  .chat-modal {
    top: var(--chat-vv-top, 0px);
    right: 0;
    bottom: auto;
    left: 0;
    width: 100vw;
    height: var(--chat-vvh, 100dvh);
    min-height: 0;
    padding: 0;
    align-items: stretch;
    justify-content: stretch;
  }
  .chat-window {
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 0;
    max-height: 100%;
    box-shadow: none;
  }
  .chat-window-header { z-index: 30; }
  .chat-frame { flex: 1 1 auto; min-height: 0; }
}


.booking-hold-status {
  margin: 14px 0 0;
  padding: 11px 14px;
  border: 1px solid rgba(174, 143, 91, 0.5);
  border-radius: 4px;
  background: rgba(174, 143, 91, 0.1);
  color: inherit;
  font-weight: 700;
}
