/* One stylesheet, served from this origin, no web fonts.
   A travel site that waits on a font CDN renders late for the visitor with the
   worst hotel wifi — and a third-party font request is a third party learning
   who reads this page. The system stack is what the reader's device has. */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Sampled from the mark: a bright gold running #b4843c → #d8a854 → #f0cc78.
     `--gold` is the mark's mid-tone and carries *black* text on buttons;
     `--gold-text` is the same hue pulled dark enough to read on the page
     ground. One token cannot be both. */
  --gold: #d8a854;
  --gold-light: #ecc46c;
  --gold-deep: #b4843c;
  --gold-text: #8a6420;
  --gold-wash: #faf4e6;

  --black: #000000;
  --charcoal: #141414;
  --on-black: #f2ede3;
  --on-black-2: #b9b2a4;

  --ink: #1a1a1a;
  --ink-2: #4a4a48;
  --ink-3: #74736f;
  --page: #ffffff;
  --panel: #f6f4ef;
  --line: #e6e2d9;

  --warn: #8a5a12;
  --wa: #25d366;

  --radius: 12px;
  --radius-sm: 8px;
  --measure: 66ch;
  --gutter: clamp(16px, 4vw, 40px);
  --shadow: 0 1px 2px rgba(20, 16, 8, 0.06), 0 12px 32px -18px rgba(20, 16, 8, 0.35);
}

@media (prefers-color-scheme: dark) {
  :root {
    --gold-text: #e0b860;
    --gold-wash: #24201a;

    --ink: #efeae0;
    --ink-2: #bdb7ab;
    --ink-3: #8f8a80;
    --page: #111110;
    --panel: #191917;
    --line: #2b2a26;

    --warn: #d8a85a;
  }
}

html {
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background: var(--page);
  color: var(--ink);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  font-size: 16.5px;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-text);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

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

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin-block: 24px;
}

[hidden] {
  display: none !important;
}

/* --- Layout ------------------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(44px, 7vw, 88px);
}

.section--flush {
  padding-top: clamp(24px, 4vw, 40px);
}

.section--tint {
  background: var(--panel);
}

.section--dark {
  background: var(--charcoal);
  color: var(--on-black);
}

.page-head {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(36px, 6vw, 64px) clamp(28px, 4vw, 44px);
}

.page-head h1 {
  max-width: 24ch;
}

.page-head .lede {
  margin-top: 12px;
}

/* A date or a byline under the heading rather than a sentence: smaller, quieter. */
.page-head .lede--meta {
  font-size: 15px;
  color: var(--ink-3);
}

.two-col {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  align-items: start;
}

.two-col--even {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

@media (max-width: 800px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.prose {
  max-width: var(--measure);
}

.prose > * + * {
  margin-top: 0.9em;
}

.prose h3 {
  margin-top: 1.6em;
  font-size: 19px;
}

.prose h4 {
  margin-top: 1.4em;
}

.prose ul,
.prose ol {
  padding-left: 1.3em;
}

.prose li + li {
  margin-top: 0.35em;
}

.prose img {
  margin-block: 12px;
  border-radius: var(--radius-sm);
}

/* A pasted URL has no space to break at; let it break anywhere rather than
   run off a phone screen. */
.prose a {
  overflow-wrap: anywhere;
}

/* A table wider than a phone scrolls inside its own box, never the page. */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Location tips paste several photos in one paragraph; they read better as a
   row of thumbnails than as a column of full-width images. */
.prose--tips img {
  display: inline-block;
  vertical-align: top;
  max-height: 240px;
  width: auto;
  margin: 8px 8px 8px 0;
}

.center {
  text-align: center;
}

.skip {
  position: absolute;
  left: -9999px;
}

.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 100;
  background: var(--page);
  padding: 10px 14px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* --- Type --------------------------------------------------------------- */

h1,
h2,
h3,
h4 {
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 650;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(30px, 5vw, 46px);
}

h2 {
  font-size: clamp(24px, 3.4vw, 32px);
}

h3 {
  font-size: clamp(18px, 2.2vw, 20px);
}

.lede {
  font-size: clamp(17px, 2vw, 19px);
  color: var(--ink-2);
  max-width: var(--measure);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-text);
}

.muted {
  color: var(--ink-3);
}

.small {
  font-size: 13.5px;
}

.gold {
  color: var(--gold-text);
  font-weight: 650;
}

.optional {
  font-weight: 400;
  color: var(--ink-3);
  font-size: 12px;
  margin-left: 4px;
}

.section-head {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-bottom: clamp(24px, 4vw, 40px);
}

.section-head--left,
.section-head--split {
  text-align: left;
  justify-items: start;
}

.section-head--split {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.link-arrow {
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.link-arrow::after {
  content: " →";
}

.link-arrow:hover {
  text-decoration: underline;
}

.crumbs {
  font-size: 14px;
  color: var(--ink-3);
  margin-bottom: 16px;
}

.crumbs span {
  margin-inline: 6px;
}

/* --- Buttons ------------------------------------------------------------ */

.btn {
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
  line-height: 1.3;
  text-align: center;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
}

.btn-block {
  display: block;
  width: 100%;
}

/* Gold carries black text — white on gold does not pass. */
.btn-gold {
  background: var(--gold);
  color: #111;
}

.btn-gold:hover {
  background: var(--gold-light);
  color: #000;
}

.btn-dark {
  background: var(--charcoal);
  color: var(--on-black);
}

.btn-dark:hover {
  background: var(--gold);
  color: #111;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
}

.btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-wa {
  background: var(--wa);
  color: #052e16;
}

.btn-wa:hover {
  background: #1ebe5b;
  color: #052e16;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* --- Header ------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--black);
  color: var(--on-black);
  border-bottom: 1px solid #222;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 80px;
}

.logo img {
  height: 66px;
  width: auto;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 17px;
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.5vw, 36px);
  flex: 1;
  justify-content: flex-end;
}

.site-nav__links {
  list-style: none;
  display: flex;
  gap: clamp(4px, 1.5vw, 18px);
}

.site-nav__links a {
  display: block;
  padding: 10px 8px;
  color: var(--on-black-2);
  text-decoration: none;
  font-size: 15px;
  font-weight: 550;
  border-bottom: 2px solid transparent;
}

.site-nav__links a:hover {
  color: #fff;
}

.site-nav__links a[aria-current="page"] {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.site-nav__tools {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
  padding-left: 14px;
  border-left: 1px solid #2e2e2e;
}

/* Icon tools: a person, a globe. Labels are for the drawer on a phone. */
.tool {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  color: var(--on-black-2);
  text-decoration: none;
  font-size: 14.5px;
}

.tool:hover {
  color: var(--gold);
  background: #161616;
}

.tool__label {
  display: none;
}

/* The account menu, once a session says who this is. */
.account {
  position: relative;
}

.account summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.account summary::-webkit-details-marker {
  display: none;
}

.account__initials {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.account__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: min(220px, 80vw);
  background: var(--page);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  padding: 8px;
  display: grid;
  z-index: 50;
}

.account__menu a {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
}

.account__menu a:hover {
  background: var(--panel);
  color: var(--gold-text);
}

.account__name {
  padding: 10px 12px 0;
  font-weight: 650;
}

.account__points {
  padding: 0 12px 10px;
  font-size: 13px;
  color: var(--ink-3);
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
}

/* The language menu: one small control at the edge, behind a hairline, so it
   reads as a utility rather than the next item in the row. */
.lang {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--on-black-2);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 4px 8px 8px;
  border-radius: 999px;
}

.lang:hover {
  color: var(--gold);
  background: #161616;
}

.lang select {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  max-width: 64px;
}

.lang select option,
.lang select optgroup {
  color: #111;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid #333;
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  cursor: pointer;
}

.nav-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  margin: 4px 0;
}

@media (max-width: 960px) {
  .nav-toggle {
    display: block;
    min-width: 44px;
    min-height: 44px;
  }

  html.js .site-nav {
    display: none;
  }

  html.js .site-nav.is-open {
    display: flex;
  }

  .site-nav {
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-bottom: 16px;
  }

  .site-header__inner {
    flex-wrap: wrap;
  }

  .site-nav__links {
    flex-direction: column;
    gap: 0;
  }

  .site-nav__links a {
    padding: 12px 4px;
    border-bottom: 1px solid #222;
    font-size: 17px;
  }

  .site-nav__tools {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 0 0;
    margin-left: 0;
    border-left: 0;
  }

  .tool__label {
    display: inline;
  }

  .lang {
    margin-left: auto;
  }
}

@media (max-width: 600px) {
  html {
    scroll-padding-top: 72px;
  }

  .site-header__inner {
    min-height: 60px;
  }

  .logo img {
    height: 44px;
  }

  /* The open drawer scrolls on its own if it is taller than the screen. */
  html.js .site-nav.is-open {
    max-height: calc(100dvh - 60px);
    overflow-y: auto;
  }
}

/* --- Hero --------------------------------------------------------------- */

.hero {
  position: relative;
  background: var(--black);
  color: #fff;
  min-height: min(74vh, 640px);
  min-height: min(74svh, 640px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* The scene sits at the right edge; when a narrow viewport crops the
     sides, give up the empty felt on the left. */
  object-position: 88% 50%;
  opacity: 0.92;
}

/* The shade sits on the section, edge to edge, not on the content column. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.25) 55%, rgba(0, 0, 0, 0) 100%);
}

@media (max-width: 700px) {
  /* A phone shows a 390px slice of a 1138px-wide picture, all of it under
     the copy: take the quiet left side (felt and the faint club) rather
     than putting white cards behind the headline. */
  .hero__img {
    object-position: 0% 50%;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.75) 100%);
  }
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(56px, 9vw, 96px);
}

/* Two full-width buttons stack more comfortably than two half-wrapped ones. */
@media (max-width: 480px) {
  .hero .btn-row .btn {
    flex: 1 1 100%;
  }
}

.hero .eyebrow {
  color: var(--gold-light);
}

.hero h1 {
  font-size: clamp(34px, 5.6vw, 60px);
  max-width: 16ch;
  margin-top: 12px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.hero__lede {
  margin-top: 18px;
  font-size: clamp(17px, 2.1vw, 20px);
  max-width: 50ch;
  color: rgba(255, 255, 255, 0.88);
}

/* --- Two kinds of trip --------------------------------------------------- */

/* The kind, as a small tag beside the date: a reader scanning the list tells
   a cash weekend from a festival without reading the bullets. */
.kind {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: 1px;
}

.kind--cash {
  color: var(--gold-text);
  background: var(--gold-wash);
}

.kind--tournament {
  color: #fff;
  background: var(--charcoal);
}

.kind--online {
  color: #fff;
  background: var(--gold-deep);
}

/* --- Online clubs ------------------------------------------------------- */

/* The rakeback card is the event card with "Paid: Every Monday" small where
   a second price would be big. */
.prices dd.prices__small {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.club-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: clamp(20px, 3vw, 32px);
}

/* The join steps as a numbered column rather than the home page's grid. */
.steps--list {
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: none;
  margin-inline: 0;
}

.steps--list li {
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
}

.steps--list li::before {
  margin-bottom: 0;
}

.steps--list p {
  color: var(--ink);
  font-size: 16px;
}

.code {
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  padding: 2px 8px;
  border-radius: 6px;
  background: var(--gold-wash);
  color: var(--gold-text);
}

.event-card__main,
.event-head__main {
  color: var(--gold-text);
  font-weight: 600;
}

.event-card__main {
  margin-top: 4px;
  font-size: 14px;
}

.event-head__main {
  margin-top: 8px;
  font-size: 17px;
}

/* The hotel's own price, struck through beside ours. */
.prices__col--rack dd,
.rooms s,
.book-bar s {
  color: var(--ink-3);
  font-weight: 400;
  text-decoration: line-through;
}

/* The schedule poster: full column width, and a frame so a white poster
   does not float on the page. */
.poster {
  margin: 0 0 20px;
}

.poster__link {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--panel);
}

.poster__link img {
  display: block;
  width: 100%;
  height: auto;
}

.poster figcaption {
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink-3);
}

.lightbox {
  max-width: min(96vw, 1400px);
  max-height: 96vh;
  padding: 0;
  border: 0;
  border-radius: var(--radius-sm);
  background: #000;
  overflow: auto;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.85);
}

.lightbox img {
  display: block;
  width: 100%;
  height: auto;
}

.lightbox__close {
  position: sticky;
  top: 8px;
  float: right;
  margin: 8px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

/* --- Event cards -------------------------------------------------------- */

.card-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
}

.event-card {
  position: relative;
  background: var(--page);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.event-card:hover {
  transform: translateY(-2px);
}

.event-card__media {
  position: relative;
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--panel);
}

.event-card__img,
.event-card__hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease;
}

.event-card__hover {
  opacity: 0;
}

.event-card:hover .event-card__hover {
  opacity: 1;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gold);
  color: #111;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 9px;
  border-radius: 999px;
}

.badge--inline {
  position: static;
}

.event-card__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.event-card__when {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-text);
}

.event-card__title {
  font-size: 20px;
}

.event-card__title a {
  color: var(--ink);
  text-decoration: none;
}

.event-card__title a:hover {
  color: var(--gold-text);
}

/* The whole card is the link, without nesting one anchor in another. */
.event-card__title a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.event-card__hotel {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-2);
  font-size: 14.5px;
}

.stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.1em;
  white-space: nowrap;
  vertical-align: 1px;
}

.stars-big {
  font-size: 18px;
}

.checks {
  list-style: none;
  font-size: 14px;
  color: var(--ink-2);
  margin-top: 4px;
}

.checks li {
  padding-left: 22px;
  position: relative;
  margin-top: 3px;
}

.checks li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 7px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--gold-deep);
  border-bottom: 2px solid var(--gold-deep);
  transform: rotate(-45deg);
}

.prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
}

.prices--compact {
  border-top: 1px solid var(--line);
  margin-top: 12px;
}

.prices dt {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  font-weight: 600;
}

.prices dd {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.prices__col--player dd {
  color: var(--gold-text);
}

.fn {
  text-decoration: none;
  margin-left: 1px;
  position: relative;
  z-index: 1;
}

/* --- Value props, steps, quotes, band ---------------------------------- */

.props {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.prop {
  display: grid;
  gap: 10px;
  align-content: start;
}

.prop .icon-lg {
  color: var(--gold-deep);
}

.prop p {
  color: var(--ink-2);
  font-size: 15.5px;
}

.steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  max-width: 1000px;
  margin-inline: auto;
}

.steps li {
  counter-increment: step;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--page);
  display: grid;
  gap: 8px;
  align-content: start;
}

.steps li::before {
  content: counter(step);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #111;
  font-weight: 700;
  margin-bottom: 6px;
}

.steps p {
  color: var(--ink-2);
  font-size: 15.5px;
}

.steps--numbered {
  margin-bottom: clamp(40px, 6vw, 64px);
}

.quotes {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.quote blockquote p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--on-black);
}

.quote figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--on-black-2);
  font-size: 14px;
}

.quote figcaption img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-deep);
}

.band {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  align-items: center;
  background: var(--gold-wash);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 48px);
}

.band__text {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.band__img {
  max-width: 260px;
  justify-self: center;
  border-radius: var(--radius);
}

@media (max-width: 700px) {
  .band {
    grid-template-columns: 1fr;
  }
}

/* --- Affiliates (home and /affiliates/) --------------------------------- */

.partner-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.partner {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--page);
}

.partner .eyebrow {
  color: var(--gold-deep);
}

.partner p {
  color: var(--ink-2);
  font-size: 15.5px;
}

/* --- Finding an event (Events page) ------------------------------------- */

.finder {
  display: flex;
  gap: 10px;
  max-width: 640px;
}

.finder input {
  flex: 1;
  min-width: 0;
  min-height: 48px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--page);
  color: var(--ink);
  font-size: 16px;
}

.finder input:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px var(--gold-wash);
}

html.js .finder .btn {
  display: none; /* results follow the keystrokes */
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.chip {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--page);
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 550;
  text-decoration: none;
}

.chip:hover {
  border-color: var(--gold);
  color: var(--ink);
}

.chip.is-active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--on-black);
}

.month {
  margin-top: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
  font-size: 22px;
  color: var(--ink-2);
  font-weight: 600;
}

.empty {
  padding: 32px;
  text-align: center;
  color: var(--ink-3);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  margin-top: 24px;
}

/* --- Event page --------------------------------------------------------- */

.photos {
  background: var(--black);
}

.photos .carousel__track {
  gap: 0;
  padding: 0;
}

.photos img {
  width: 100%;
  height: clamp(220px, 44vw, 520px);
  object-fit: cover;
}

.event-layout {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  align-items: start;
}

@media (max-width: 900px) {
  .event-layout {
    grid-template-columns: 1fr;
  }

  /* On the booking page the summary of what is being booked reads first. */
  .event-layout > .booking + .book-card {
    order: -1;
  }
}

.event-head {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.event-head__hotel {
  color: var(--ink-2);
  font-size: 17px;
}

.includes {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.includes li {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 13.5px;
  color: var(--ink-2);
}

.includes__svc {
  border-color: var(--gold-deep) !important;
}

.book-card {
  position: sticky;
  top: 96px;
  background: var(--page);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.book-card .prices {
  padding-top: 0;
}

.book-card .prices dd {
  font-size: 30px;
}

.book-card__hours {
  font-size: 14px;
  color: var(--ink-2);
}

.book-card__deals {
  font-size: 13px;
  color: var(--gold-text);
  text-align: center;
  font-weight: 600;
}

.book-card__facts {
  list-style: none;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  font-size: 14px;
  color: var(--ink-2);
  display: grid;
  gap: 6px;
}

.book-card__facts li {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 8px;
}

.book-card__facts strong {
  color: var(--ink);
}

.book-card__title {
  font-size: 22px;
}

.book-bar {
  display: none;
}

@media (max-width: 900px) {
  .book-card {
    position: static;
  }

  .book-bar {
    display: block;
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 45;
    background: var(--page);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.12);
    padding-bottom: env(safe-area-inset-bottom);
  }

  .book-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 64px;
    padding-block: 8px;
  }

  .book-bar__prices {
    display: flex;
    gap: 16px;
    min-width: 0;
  }

  .book-bar__prices dt {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink-3);
    font-weight: 600;
  }

  .book-bar__prices dd {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
  }

  .book-bar__player dd {
    color: var(--gold-text);
  }

  .book-bar .btn {
    flex: none;
    white-space: nowrap;
  }

  /* Leave room under the footer for the bar, and lift the chat launcher
     over it. */
  body:has(.book-bar) {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  body:has(.book-bar) .chat {
    bottom: calc(84px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 360px) {
  .book-bar__prices {
    gap: 10px;
  }

  .book-bar__prices dd {
    font-size: 17px;
  }
}

/* Tabs: a row of links that, once scripted, show one panel at a time. Without
   the script they are jump links and every panel is on the page. */
.tabs__nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  gap: 4px;
}

.tabs--center .tabs__nav {
  justify-content: center;
}

.tabs__nav a {
  display: block;
  padding: 10px 14px;
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.tabs__nav a:hover {
  color: var(--ink);
}

.tabs__nav a[aria-selected="true"] {
  color: var(--gold-text);
  border-bottom-color: var(--gold);
}

.tabs__panel {
  padding-block: 24px;
}

html.js .tabs__panel:not(.is-active) {
  display: none;
}

html:not(.js) .tabs__panel + .tabs__panel {
  border-top: 1px solid var(--line);
}

.hotel {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 180px) minmax(0, 1fr);
  margin-top: 20px;
}

@media (max-width: 640px) {
  .hotel {
    grid-template-columns: 1fr;
    justify-items: start;
  }

}

.hotel__img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold-wash);
}

@media (max-width: 640px) {
  .hotel__img {
    width: 120px;
    height: 120px;
  }
}

.hotel__name {
  font-size: 24px;
}

.hotel__info .prose {
  margin-top: 10px;
  font-size: 15.5px;
}

/* What the player price asks of you at this hotel, under its rates. */
.conditions {
  margin-top: 14px;
  padding: 12px 16px;
  border-left: 3px solid var(--gold);
  background: var(--panel);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.conditions .eyebrow {
  margin-bottom: 6px;
}

.conditions ul {
  margin: 0;
  padding-left: 18px;
  font-size: 15px;
}

.conditions li + li {
  margin-top: 4px;
}

.rooms {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  font-size: 15px;
}

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

.rooms th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}

/* --- Carousel (photos on the event page) -------------------------------- */

.carousel {
  position: relative;
}

.carousel__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.carousel__track::-webkit-scrollbar {
  display: none;
}

.carousel__track > * {
  scroll-snap-align: start;
  flex: 0 0 100%;
}

.carousel__ctl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.carousel__ctl:hover {
  background: var(--gold);
  color: #111;
}

.carousel__ctl--prev {
  left: 12px;
}

.carousel__ctl--next {
  right: 12px;
}

html:not(.js) .carousel__ctl {
  display: none;
}

/* --- Forms -------------------------------------------------------------- */

.form {
  display: grid;
  gap: 16px;
}

.form > .btn {
  justify-self: start;
}

@media (max-width: 600px) {
  .form > .btn {
    justify-self: stretch;
  }
}

.field {
  display: grid;
  gap: 6px;
}

.field-row {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
}

.field label,
.field legend {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
}

.field legend {
  margin-bottom: 8px;
}

.field input:not([type="radio"]):not([type="checkbox"]),
.field select,
.field textarea,
.newsletter input {
  width: 100%;
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--page);
  color: var(--ink);
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field input:not([type="radio"]):not([type="checkbox"]):focus,
.field select:focus,
.field textarea:focus,
.newsletter input:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px var(--gold-wash);
}

fieldset.field {
  border: 0;
}

fieldset.field .choice + .choice {
  margin-top: 8px;
}

fieldset.field .check + .check {
  margin-top: 6px;
}

.choice,
.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
}

.choice {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  cursor: pointer;
}

.choice:has(:checked) {
  border-color: var(--gold);
  background: var(--gold-wash);
}

.choice small {
  color: var(--ink-3);
}

.choice input,
.check input {
  margin-top: 4px;
  flex: none;
  width: 16px;
  height: 16px;
  min-height: 0;
  accent-color: var(--gold-deep);
}

.form-links {
  font-size: 14px;
  color: var(--ink-3);
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.notice {
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  background: var(--gold-wash);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  color: var(--ink-2);
}

.gap {
  border-left-color: var(--warn);
}

.gap strong {
  color: var(--warn);
}

.booking__form {
  margin-top: 24px;
  max-width: 640px;
}

.steps-bar {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 14px;
  color: var(--ink-3);
}

.steps-bar li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 6px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.steps-bar li span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--line);
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 700;
}

.steps-bar li[aria-current="step"] {
  color: var(--ink);
  border-color: var(--gold);
  font-weight: 600;
}

.steps-bar li[aria-current="step"] span,
.steps-bar li.is-done span {
  background: var(--gold);
  color: #111;
}

/* --- About / contact ---------------------------------------------------- */

.facts-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.facts-card h2 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  margin-bottom: 8px;
}

.facts > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.facts dt {
  color: var(--ink-2);
}

.facts dd {
  font-weight: 650;
}

.contact {
  margin-top: clamp(40px, 6vw, 72px);
  padding-top: clamp(32px, 5vw, 56px);
  border-top: 1px solid var(--line);
}

.contact h3 {
  font-size: 16px;
  margin: 22px 0 8px;
}

.contact h3:first-child {
  margin-top: 0;
}

.plain-list {
  list-style: none;
  display: grid;
  gap: 10px;
  justify-items: start;
}

.phones > div {
  display: grid;
  grid-template-columns: minmax(110px, 40%) 1fr;
  gap: 8px;
  font-size: 15px;
  padding: 4px 0;
}

.phones dt {
  color: var(--ink-3);
}

.phones a {
  text-decoration: none;
  color: var(--ink);
}

.phones a:hover {
  color: var(--gold-text);
}

/* --- Packages, FAQ, club, account -------------------------------------- */

.packages {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  margin-bottom: 12px;
}

.package {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--page);
}

.package h3 {
  margin-bottom: 4px;
}

.package p {
  color: var(--ink-2);
  font-size: 15px;
}

.faq {
  max-width: var(--measure);
  margin-bottom: 40px;
}

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__item summary {
  cursor: pointer;
  padding: 16px 0;
  list-style: none;
  display: flex;
  gap: 12px;
  align-items: baseline;
  justify-content: space-between;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  color: var(--gold-text);
  font-size: 24px;
  line-height: 1;
  flex: none;
}

.faq__item[open] summary::after {
  content: "–";
}

.faq__item summary h3 {
  font-size: 17px;
  font-weight: 600;
}

.faq__item .prose {
  padding: 0 0 20px;
  font-size: 15.5px;
}

.club-grid {
  list-style: none;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr));
  margin-top: 32px;
}

@media (max-width: 600px) {
  .club-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

.club-item {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 4px;
}

.club-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 6px;
}

.club-item .muted {
  font-size: 13.5px;
}

.account-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.account-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--page);
}

.account-box h2 {
  margin-bottom: 16px;
  font-size: 22px;
}

.account-box--wide {
  grid-column: 1 / -1;
}


.video-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
}

.video-card {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}

.video-card__link {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  color: #fff;
  text-decoration: none;
  background: radial-gradient(circle at center, #2a2a2a 0%, #000 75%);
}

.video-card__play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  position: relative;
}

.video-card__play::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 17px;
  border-left: 18px solid #111;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

.video-card__text {
  font-size: 13px;
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Footer ------------------------------------------------------------- */

.footer {
  background: var(--black);
  color: var(--on-black-2);
  padding-block: clamp(36px, 5vw, 52px) 22px;
  font-size: 14px;
  line-height: 1.5;
}

.footer__top {
  display: grid;
  gap: 32px;
  grid-template-columns: 1.15fr 1.25fr 1fr 1.2fr;
}

@media (max-width: 960px) {
  .footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .footer__top {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
}

.footer__brand img {
  height: 72px;
  width: auto;
}

.footer__brand p {
  margin-top: 12px;
  max-width: 30ch;
}

.footer__brand h2 {
  margin-top: 22px;
}

/* The networks as a row of round buttons: one group, one shape, one size. */
.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__social a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid #2c2a26;
  border-radius: 50%;
  transition: border-color 0.15s, background 0.15s;
}

.footer__social a:hover {
  border-color: var(--gold);
  background: var(--gold);
}

.footer__social img,
.footer__reach img {
  display: block;
  /* Black glyphs, made gold. */
  filter: invert(72%) sepia(30%) saturate(500%) hue-rotate(5deg) brightness(95%);
}

.footer__social a:hover img {
  filter: none;
}

.footer h2 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer a {
  color: var(--on-black-2);
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

/* Contact: icon, small label, then the thing itself. */
.footer__reach {
  gap: 12px;
}

.footer__reach li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
}

.footer__reach img {
  margin-top: 3px;
}

.footer__reach address {
  font-style: normal;
}

.footer__reach-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8a8579;
  margin-bottom: 1px;
}

.footer__reach a:hover .footer__reach-label {
  color: var(--on-black-2);
}

.footer__phones dl {
  display: grid;
  gap: 5px;
  /* On a phone the column is the screen; keep country and number close. */
  max-width: 32ch;
}

.footer__phones dl > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-variant-numeric: tabular-nums;
}

.footer__phones dt {
  color: #8a8579;
}

.footer__news p {
  max-width: 30ch;
  margin-bottom: 12px;
}

.newsletter {
  gap: 8px;
}

/* Stacked: a full-width field, the button under it. */
.newsletter__row {
  display: grid;
  gap: 10px;
}

.newsletter input {
  width: 100%;
  min-height: 46px;
  padding-inline: 14px;
  font-size: 15px;
  border-color: #333;
  background: var(--charcoal);
  color: #fff;
}

.newsletter .notice {
  background: var(--charcoal);
  border-color: #333;
  color: var(--on-black-2);
}

.colophon {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid #222;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px 24px;
  font-size: 13px;
  color: #8a8579;
}

.colophon__links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}

.colophon__links a {
  color: var(--on-black-2);
}

/* --- Flash messages -------------------------------------------------------- */

.flashes {
  padding-top: 16px;
}

.flash {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: #e8f4ec;
  color: #14532d;
  border: 1px solid #bfe0cb;
  font-size: 15px;
}

.flash + .flash {
  margin-top: 8px;
}

.flash--error {
  background: #fbe9e8;
  color: #7f1d1d;
  border-color: #f2c4c1;
}

/* --- The account page ------------------------------------------------------ */

.trips {
  list-style: none;
  display: grid;
  gap: 12px;
}

.trip {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--page);
}

.trip__status {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-text);
}

/* --- Dialogs and live chat ---------------------------------------------- */

.dialog {
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  width: min(92vw, 620px);
  background: var(--page);
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.dialog-sm {
  width: min(92vw, 400px);
}

.dialog {
  max-height: min(92vh, 92dvh);
  overflow: auto;
}

.dialog::backdrop {
  background: rgba(0, 0, 0, 0.65);
}

.dialog__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
}

.dialog__head h2 {
  font-size: 20px;
}

.dialog .form {
  padding: 22px;
}

.dialog__close {
  background: transparent;
  border: 0;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-3);
  padding: 0 6px;
}

.dialog__close:hover {
  color: var(--ink);
}

/* The live-chat launcher. The provider's script is loaded only when somebody
   opens it; until a provider is supplied the panel says so and offers the
   channels that do work. */
.chat {
  position: fixed;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: 50;
}

.chat summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--gold);
  font-weight: 650;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  border: 1px solid #2a2a2a;
}

.chat summary::-webkit-details-marker {
  display: none;
}

.chat summary .icon {
  color: var(--gold);
}

/* On a phone the launcher is a round icon, so it hides one word of the page
   rather than a whole line. */
@media (max-width: 600px) {
  .chat summary {
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
    font-size: 0;
  }

  .chat summary .icon {
    width: 24px;
    height: 24px;
  }
}

.chat__panel {
  position: absolute;
  right: 0;
  bottom: 56px;
  width: min(320px, 88vw);
  background: var(--page);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  display: grid;
  gap: 10px;
  font-size: 14.5px;
}

.chat__panel h2 {
  font-size: 17px;
}

@media print {
  .site-header,
  .footer,
  .chat,
  .carousel__ctl,
  .finder,
  .chips {
    display: none;
  }
}
