.card-lounge-page {
  overflow: hidden;
}

.card-lounge-page .section {
  position: relative;
}

.card-lounge-page .panel {
  height: 100%;
}

.card-lounge-page .media-frame {
  width: 100%;
  max-width: 100%;
}

.cl-hero__grid,
.cl-room__grid,
.cl-kitchen__grid,
.cl-host__grid,
.cl-prep__grid,
.cl-plan__grid,
.cl-notes__grid {
  display: grid;
  min-width: 0;
  gap: var(--module-gap);
}

.cl-hero__grid {
  grid-template-columns: minmax(0, 8fr) minmax(19rem, 4fr);
}

.cl-hero__media {
  min-width: 0;
  min-height: 39rem;
}

.cl-hero__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cl-hero__overlay {
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  display: flex;
  width: min(68%, 44rem);
  min-width: 0;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--space-4);
  padding: var(--space-6);
  background: linear-gradient(90deg, rgba(13,17,23,.96) 0%, rgba(13,17,23,.8) 62%, rgba(13,17,23,0) 100%);
}

.cl-hero__overlay h1,
.cl-hero__overlay p,
.cl-hero__overlay .eyebrow {
  margin: 0;
}

.cl-hero__overlay p {
  max-width: 60ch;
  font-size: var(--text-lead);
}

.cl-hero__actions {
  gap: var(--space-3);
}

.cl-hero__rail {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: var(--module-gap);
}

.cl-brief-row {
  display: flex;
  min-width: 0;
  flex: 1 1 0;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-2);
  border: var(--border-grid);
  background: var(--color-panel);
  padding: var(--space-4);
}

.cl-brief-row .eyebrow,
.cl-brief-row p {
  margin: 0;
}

.cl-brief-row p {
  font-size: var(--text-small);
  line-height: var(--leading-small);
}

.cl-room__grid {
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
}

.cl-room__intro,
.cl-room__features,
.cl-feature {
  min-width: 0;
}

.cl-room__intro p {
  max-width: 66ch;
}

.cl-room__features {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 2fr) minmax(0, 2fr);
  gap: var(--module-gap);
}

.cl-feature {
  display: flex;
  flex-direction: column;
}

.cl-feature .eyebrow,
.cl-feature h3,
.cl-feature p {
  margin: 0;
}

.cl-feature {
  gap: var(--space-3);
}

.cl-kitchen__grid {
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  align-items: start;
}

.cl-kitchen__figure,
.cl-host__figure,
.cl-prep__figure,
.cl-notes__main {
  min-width: 0;
  margin: 0;
}

.cl-kitchen__panel,
.cl-host__panel,
.cl-plan__panel,
.cl-plan__cta {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: var(--space-4);
}

.cl-kitchen__panel > *,
.cl-host__panel > *,
.cl-plan__panel > *,
.cl-plan__cta > * {
  margin: 0;
}

.cl-kitchen__panel > p {
  max-width: 58ch;
}

.cl-kitchen__notes,
.cl-checklist {
  display: grid;
  min-width: 0;
  grid-template-columns: 1fr;
  border: var(--border-grid);
}

.cl-kitchen__notes > div,
.cl-checklist > div {
  min-width: 0;
  padding: var(--space-3);
}

.cl-kitchen__notes > div + div,
.cl-checklist > div + div {
  border-top: var(--border-grid);
}

.cl-kitchen__notes .eyebrow,
.cl-kitchen__notes p,
.cl-checklist .eyebrow,
.cl-checklist p {
  margin: 0;
}

.cl-kitchen__notes p,
.cl-checklist p {
  font-size: var(--text-small);
  line-height: var(--leading-small);
}

.cl-flow__intro {
  width: min(100%, 64ch);
  min-width: 0;
}

.cl-flow__intro .eyebrow,
.cl-flow__intro h2,
.cl-flow__intro p {
  margin: 0;
}

.cl-flow__intro {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--module-gap);
}

.cl-disclosures {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: var(--space-3);
}

.cl-disclosure {
  display: grid;
  min-width: 0;
  grid-template-columns: 4.5rem minmax(0, 1fr) 3rem;
  align-items: start;
  gap: var(--space-4);
}

.cl-disclosure__number {
  color: var(--color-green-bright);
  font-family: var(--font-mono);
  font-size: var(--text-data);
  font-weight: 600;
  line-height: 1;
}

.cl-disclosure__body {
  min-width: 0;
}

.cl-disclosure__body h3,
.cl-disclosure__body p {
  margin: 0;
}

.cl-disclosure__body h3 {
  margin-bottom: var(--space-2);
}

.cl-disclosure__detail {
  max-width: 68ch;
  margin-top: var(--space-4);
  border-top: var(--border-grid);
  padding-top: var(--space-4);
}

.cl-disclosure__detail p {
  margin: 0;
}

.cl-disclosure__toggle {
  width: 3rem;
  min-height: 3rem;
  border-color: var(--color-grid);
  background: transparent;
  color: var(--color-text);
  font-size: 1.5rem;
}

.cl-disclosure__toggle:hover {
  border-color: var(--color-green);
  background: transparent;
  color: var(--color-green-bright);
}

.cl-host__grid {
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: start;
}

.cl-host__panel > p {
  max-width: 64ch;
}

.cl-cues {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.cl-cues > * {
  min-width: 0;
}

.cl-cues .panel {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-3);
}

.cl-cues .eyebrow,
.cl-cues h3,
.cl-cues p {
  margin: 0;
}

.cl-cues h3 {
  font-size: 1rem;
}

.cl-cues p {
  font-size: var(--text-small);
  line-height: var(--leading-small);
}

.cl-prep__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.cl-prep__intro {
  min-width: 0;
}

.cl-prep__intro p {
  max-width: 58ch;
}

.cl-prep__stack {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: var(--space-3);
}

.cl-prep__stack > * {
  min-width: 0;
}

.cl-prep__stack .panel {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-3);
}

.cl-prep__stack .eyebrow,
.cl-prep__stack h3,
.cl-prep__stack p {
  margin: 0;
}

.cl-prep__stack h3 {
  font-size: 1.125rem;
}

.cl-prep__stack p {
  font-size: var(--text-small);
  line-height: var(--leading-small);
}

.cl-plan__grid {
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
}

.cl-plan__panel > p {
  max-width: 68ch;
}

.cl-plan__cta {
  justify-content: center;
}

.cl-plan__cta p {
  max-width: 46ch;
}

.cl-text-link {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: var(--text-meta);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.cl-notes__grid {
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  align-items: start;
}

.cl-notes__intro p {
  max-width: 60ch;
}

.cl-notes__board {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 5fr) minmax(0, 3fr);
  gap: var(--module-gap);
}

.cl-note-stack {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: var(--module-gap);
}

.cl-note {
  display: grid;
  min-width: 0;
  grid-template-columns: 6rem minmax(0, 1fr);
  gap: var(--space-3);
  padding: var(--space-3);
}

.cl-note > img {
  width: 6rem;
  max-width: 100%;
  height: 6rem;
  object-fit: cover;
}

.cl-note > div {
  min-width: 0;
}

.cl-note .eyebrow,
.cl-note p {
  margin: 0;
}

.cl-note p {
  font-size: var(--text-small);
  line-height: var(--leading-small);
}

.cl-close__cell {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  padding-block: var(--space-16);
  text-align: center;
}

.cl-close__copy {
  width: min(100%, 62ch);
  min-width: 0;
  margin-inline: auto;
}

.cl-close__copy .eyebrow,
.cl-close__copy h2,
.cl-close__copy p {
  margin: 0;
}

.cl-close__copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.cl-close__actions {
  justify-content: center;
}

@media (max-width: 67.4375rem) {
  .cl-hero__grid {
    grid-template-columns: minmax(0, 5fr) minmax(17rem, 3fr);
  }

  .cl-hero__media {
    min-height: 34rem;
  }

  .cl-room__grid,
  .cl-notes__grid {
    grid-template-columns: 1fr;
  }

  .cl-room__features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .cl-prep__intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 64.9375rem) {
  .cl-cues {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cl-cues > :last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 59.9375rem) {
  .cl-kitchen__grid {
    grid-template-columns: minmax(0, 5fr) minmax(19rem, 3fr);
  }

  .cl-host__grid {
    grid-template-columns: minmax(0, 3fr) minmax(0, 5fr);
  }

  .cl-plan__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 44.9375rem) {
  .cl-hero__grid,
  .cl-kitchen__grid,
  .cl-host__grid,
  .cl-prep__grid,
  .cl-notes__board {
    grid-template-columns: 1fr;
  }

  .cl-hero__rail {
    display: grid;
    grid-template-columns: 1fr;
    order: -1;
  }

  .cl-brief-row {
    display: grid;
    grid-template-columns: minmax(6rem, .7fr) minmax(0, 1.3fr);
    align-items: start;
    gap: var(--space-3);
  }

  .cl-hero__media {
    min-height: auto;
  }

  .cl-hero__overlay {
    position: static;
    width: 100%;
    padding: var(--space-4);
    background: var(--color-panel);
  }

  .cl-hero__media {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .cl-hero__media > img {
    height: auto;
    aspect-ratio: 16 / 10;
    border: var(--border-grid);
    border-radius: var(--radius-sm);
  }

  .cl-hero__overlay h1 {
    font-size: clamp(2.25rem, 12vw, 2.75rem);
  }

  .cl-hero__actions,
  .cl-close__actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .cl-hero__actions > *,
  .cl-close__actions > * {
    width: 100%;
  }

  .cl-room__features,
  .cl-cues {
    grid-template-columns: 1fr;
  }

  .cl-cues > :last-child {
    grid-column: auto;
  }

  .cl-kitchen__figure {
    order: -1;
  }

  .cl-flow__intro {
    width: 100%;
  }

  .cl-disclosure {
    grid-template-columns: 1fr 3rem;
    gap: var(--space-3);
  }

  .cl-disclosure__number {
    grid-column: 1 / -1;
    font-size: var(--text-meta);
    letter-spacing: .08em;
  }

  .cl-disclosure__body h3 {
    font-size: clamp(1.5rem, 7vw, 1.75rem);
  }

  .cl-prep__intro,
  .cl-prep__figure,
  .cl-prep__stack {
    grid-column: auto;
  }

  .cl-note {
    grid-template-columns: 6rem minmax(0, 1fr);
  }

  .cl-close__cell {
    align-items: stretch;
    padding: var(--section-space) var(--space-4);
    text-align: left;
  }

  .cl-close__copy {
    width: 100%;
    margin-inline: 0;
  }

  .cl-close__actions {
    justify-content: stretch;
  }
}

@media (max-width: 29.9375rem) {
  .cl-brief-row {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .cl-note {
    grid-template-columns: 5rem minmax(0, 1fr);
  }

  .cl-note > img {
    width: 5rem;
    height: 5rem;
  }
}
