:root {
  --forest: #0d3f34;
  --cream: #f3eee4;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
main, .portal, .choice, .choice__glass { min-width: 0; }
h1, h2, h3, p, a, span { max-width: 100%; overflow-wrap: normal; }
h1, h2, h3 { text-wrap: balance; }
body .choice__title { max-width: 100%; overflow-wrap: normal; text-wrap: balance; }
body footer { width: min(100%, calc(100% - 40px)); max-width: 100%; overflow-wrap: normal; }
html { background: var(--forest); }
body { margin: 0; min-width: 320px; background: var(--forest); color: white; font-family: var(--sans); }
img { display: block; max-width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.portal {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  isolation: isolate;
}

.portal__background {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1), filter .8s ease;
}

.portal__wash {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 50% 48%, transparent 24%, rgba(4,27,22,.13) 100%),
    linear-gradient(180deg, rgba(5,31,26,.08), transparent 42%, rgba(5,31,26,.25));
  pointer-events: none;
}

.choice {
  position: relative;
  min-width: 0;
  display: grid;
  place-items: center;
  padding: 72px 24px 92px;
  text-align: center;
  --choice-title-on-light: #08795d;
  --choice-title-on-dark: #f4efe4;
  --choice-stroke-on-light: transparent;
  --choice-stroke-on-dark: rgba(6,48,39,.72);
  --choice-shadow-on-light: 0 3px 22px rgba(4,27,22,.2);
  --choice-shadow-on-dark: 0 2px 2px rgba(4,27,22,.5), 0 8px 28px rgba(4,27,22,.34);
  --choice-title-color: var(--choice-title-on-light);
  --choice-title-stroke: var(--choice-stroke-on-light);
  --choice-label-color: rgba(255,255,255,.94);
  --choice-title-shadow: var(--choice-shadow-on-light);
}

.choice[data-title-tone="dark"] {
  --choice-title-color: var(--choice-title-on-light);
  --choice-title-stroke: var(--choice-stroke-on-light);
  --choice-title-shadow: var(--choice-shadow-on-light);
}

.choice[data-title-tone="light"] {
  --choice-title-color: var(--choice-title-on-dark);
  --choice-title-stroke: var(--choice-stroke-on-dark);
  --choice-title-shadow: var(--choice-shadow-on-dark);
}

.choice__glass {
  position: relative;
  display: block;
  padding: clamp(26px, 4vh, 42px) clamp(30px, 5vw, 72px);
  color: white;
  text-decoration: none;
}

.choice__label { display: block; margin-top: 18px; color: var(--choice-label-color); font-size: .64rem; font-weight: 700; letter-spacing: .31em; text-shadow: 0 2px 14px rgba(4,27,22,.55); text-transform: uppercase; }
.choice__title { display: block; margin: 0; color: var(--choice-title-color); font-family: var(--serif); font-size: clamp(4.5rem, 8vw, 8.2rem); font-weight: 400; letter-spacing: -.055em; line-height: .83; -webkit-text-stroke: clamp(.5px, .06vw, 1px) var(--choice-title-stroke); paint-order: stroke fill; text-shadow: var(--choice-title-shadow); transform: scaleX(1); transition: transform 420ms cubic-bezier(.2,.7,.2,1), letter-spacing 420ms cubic-bezier(.2,.7,.2,1), color 260ms ease, text-shadow 260ms ease; }

.brand-mark {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(76px, 7vw, 106px);
  height: clamp(76px, 7vw, 106px);
  place-items: center;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.brand-mark img { width: 100%; height: 100%; object-fit: contain; filter: invert(1); }

footer { position: absolute; z-index: 4; right: 20px; bottom: 22px; left: 20px; width: min(100%, calc(100% - 40px)); max-width: 100%; margin-inline: auto; color: rgba(255,255,255,.92); font-size: .7rem; overflow-wrap: normal; text-align: center; text-shadow: 0 2px 10px rgba(4,27,22,.78); }

.choice__glass:focus-visible { outline: 3px solid white; outline-offset: 8px; }

@media (hover: hover) {
  .choice__glass:hover .choice__title { letter-spacing: -.025em; transform: scaleX(1.045); }
}

@media (max-width: 700px) {
  .portal { grid-template-columns: minmax(0, 1fr); grid-template-rows: repeat(2, minmax(0, 1fr)); }
  .choice { padding: 66px 18px 54px; }
  .choice__glass { padding: 18px 24px 24px; }
  .choice__title { font-size: clamp(4.2rem, 22vw, 6.6rem); }
  .brand-mark { width: 66px; height: 66px; }
  .portal__background { object-position: 58% center; }
  footer { bottom: 12px; font-size: .62rem; }
  .choice--massage .choice__title { font-size: clamp(4.7rem, 24vw, 7.15rem); letter-spacing: -.065em; }
}
.choice--christbaum .choice__title { letter-spacing: -.075em; }
@media (max-width: 700px) {
  .choice--christbaum .choice__title { font-size: clamp(3rem, 16vw, 5.8rem); letter-spacing: -.09em; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; }
}
/* Keep words intact while responsive sizing keeps labels inside their boxes. */
html body h1, html body h2, html body h3, html body p, html body a, html body li, html body figcaption, html body summary, html body span, html body button { overflow-wrap: normal !important; word-break: normal !important; hyphens: none !important; }
@supports (font-size: 1cqw) {
  html body .choice { container-type: inline-size; }
  html body .choice--christbaum .choice__title { font-size: clamp(3rem, 13cqw, 8.2rem) !important; }
}
html body * { overflow-wrap: normal !important; word-break: normal !important; hyphens: none !important; }
