/* new-directions.css */
/* New-only foundations. Shared markup and interaction remain in app.js. */
.new-concept {
  --new-xs: .75rem;
  --new-sm: .875rem;
  --new-body: 1rem;
  --new-note: clamp(1.75rem, 1.35rem + 1.1vw, 2.25rem);
  --new-gutter: clamp(var(--space-5), 4vw, var(--space-16));
  --new-gap: clamp(var(--space-6), 3.4vw, var(--space-12));
  --new-phone-radius: 1.5rem;
  --new-chat-height: 680px;
  --surface: #fffefa;
  --surface-soft: #f1f2ef;
  --message-in: #e8eceb;
  --message-text: #253036;
  --message-out: #1069df;
  --message-link: #205db6;
  --muted: #606a70;
  --line: #263c492b;
  color: var(--concept-ink);
  background: var(--concept-bg);
  font-size: var(--new-body);
}

.new-concept .shell {
  padding-inline: var(--new-gutter);
}

.new-concept .site-header {
  height: 96px;
}

.new-concept :is(main, section, aside, figure, .new-demo, .signup, .conversation, .message, .shopping-shortlist, .offer-rail, .composer-field) {
  min-width: 0;
}

.new-concept figure {
  margin: 0;
}

.new-concept .eyebrow {
  font-size: var(--new-xs);
  letter-spacing: .1em;
  line-height: 1.5;
}

.new-concept .new-description {
  font-size: var(--new-body);
  line-height: 1.6;
  max-width: 35ch;
  text-wrap: pretty;
}

.new-concept .signup {
  width: 100%;
  max-width: 440px;
}

.new-concept .signup-fields {
  grid-template-columns: minmax(0, 1fr) 48px;
  gap: var(--space-3);
}

.new-concept .signup input {
  font-size: var(--new-body);
}

.new-concept .signup-submit {
  color: var(--concept-button-ink);
  background: var(--concept-accent);
}

.new-concept .signup-meta {
  flex-wrap: wrap;
  gap: var(--space-1) var(--space-3);
  font-size: var(--new-xs);
  line-height: 1.5;
}

.new-concept .signup-meta > span:first-child {
  font-weight: 500;
}

.new-concept .signup-status {
  font-size: var(--new-sm);
}

.new-concept .phone-chat {
  width: 100%;
  height: var(--new-chat-height);
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--new-phone-radius);
  overflow: visible;
}

.new-concept .contact-header {
  border-radius: calc(var(--new-phone-radius) - 1px) calc(var(--new-phone-radius) - 1px) 0 0;
  padding: var(--space-4);
}

.new-concept .contact-action {
  min-width: 0;
}

.new-concept .contact-action > span {
  min-width: 0;
}

.new-concept .contact-detail {
  font-size: var(--new-xs);
}

.new-concept .journey {
  gap: var(--space-2);
  padding-inline: var(--space-2);
}

.new-concept .journey button {
  min-width: 44px;
}

.new-concept .conversation {
  width: 100%;
}

.new-concept .messages {
  padding-inline: var(--space-4);
}

.new-concept .bubble {
  font-size: var(--new-sm);
  overflow-wrap: anywhere;
}

.new-concept :is(.journey button, .demo-disclaimer, .mini-label, .shortlist-heading > span:last-child, .offer-topline, .offer-total > span, .offer-breakdown, .offer-eta, .rail-controls, .card-fineprint, .checkout-card > p, .checkout-total span, .saved-card small, .change-offer, .checkout-card .card-fineprint, .source-pill, .research-note a, .order-card .card-fineprint) {
  font-size: var(--new-xs);
}

.new-concept .shortlist-heading {
  gap: var(--space-1);
}

.new-concept .shortlist-heading strong {
  font-size: var(--new-body);
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.new-concept .offer-rail {
  width: 100%;
  max-width: 100%;
}

.new-concept .offer-card {
  flex: 0 0 min(264px, calc(100% - var(--space-3)));
  padding: var(--space-3);
}

.new-concept .offer-topline {
  align-items: flex-start;
}

.new-concept .offer-tag {
  text-align: right;
}

.new-concept .offer-breakdown {
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-1);
  margin-block: var(--space-3);
}

.new-concept .offer-breakdown > div {
  min-width: 0;
  gap: var(--space-3);
}

.new-concept :is(.checkout-card, .research-card, .order-card) {
  padding: var(--space-4);
  overflow-wrap: anywhere;
}

.new-concept .checkout-total {
  flex-wrap: wrap;
  gap: var(--space-2);
}

.new-concept .chat-composer {
  border-radius: 0 0 calc(var(--new-phone-radius) - 1px) calc(var(--new-phone-radius) - 1px);
  padding: var(--space-3) var(--space-4) var(--space-4);
}

.new-concept .scenario-tabs {
  margin-top: var(--space-4);
  gap: var(--space-2);
  justify-content: center;
}

.new-concept .scenario-tabs button {
  max-width: 100%;
  min-width: 44px;
  min-height: 44px;
  padding-inline: var(--space-3);
  font-size: var(--new-xs);
  border-color: var(--concept-line);
}

.new-concept .scenario-tabs button[aria-pressed="true"] {
  background: var(--concept-accent);
  border-color: var(--concept-accent);
  color: var(--concept-button-ink);
}

.new-concept .playback {
  flex-wrap: wrap;
  column-gap: var(--space-2);
  row-gap: 0;
  margin-top: var(--space-1);
  font-size: var(--new-xs);
}

.new-concept .playback button {
  font-size: var(--new-xs);
  flex-shrink: 0;
}

.new-concept .demo-disclaimer {
  opacity: 1;
  color: var(--concept-muted);
  line-height: 1.5;
  margin-top: var(--space-1);
}

.new-concept .new-intent {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--new-gap);
  border-top: 1px solid var(--concept-line);
  padding-top: var(--space-5);
  color: var(--concept-muted);
  font-size: var(--new-xs);
  line-height: 1.65;
}

.new-concept .new-intent p {
  max-width: 61ch;
}

.new-concept .site-footer {
  margin-top: var(--space-8);
  font-size: var(--new-xs);
}

.new-concept .footer-signoff img {
  flex-shrink: 0;
}

.new-concept .footer-note {
  color: var(--concept-muted);
  opacity: 1;
}

.new-concept button:active:not(:disabled) {
  translate: 0 1px;
}

.new-concept :focus-visible {
  outline-color: var(--concept-focus);
}

.new-concept .phone-chat :focus-visible {
  outline-color: var(--message-link);
}

/* ICE BLUE: one oversized headline, one hero photo, one calm thread. */
.ice {
  --concept-bg: #d9edf5;
  --concept-ink: #143a56;
  --concept-muted: #4a6a7e;
  --concept-accent: #143a56;
  --concept-button-ink: #f6fbfd;
  --concept-line: #143a5626;
  --concept-focus: #143a56;
  --ice-display: clamp(4rem, 1rem + 8.2vw, 8.5rem);
  --ice-shadow: #143a5618;
  --new-chat-height: 700px;
}

.ice .site-header {
  border-bottom: 1px solid var(--concept-line);
}

.ice .ice-poster {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  grid-template-areas:
    "heading heading"
    "invitation demo"
    "find demo"
    "intent intent";
  grid-template-rows: auto auto 1fr auto;
  column-gap: clamp(var(--space-8), 5vw, var(--space-16));
  row-gap: var(--space-8);
  padding-block: var(--space-10) var(--space-12);
}

.ice .ice-heading {
  grid-area: heading;
}

.ice .ice-heading .eyebrow {
  color: var(--concept-muted);
  margin-bottom: var(--space-5);
}

.ice h1 {
  font-size: var(--ice-display);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.055em;
  display: grid;
  gap: clamp(var(--space-2), .6vw, var(--space-3));
}

.ice h1 .ice-line-1 {
  font-weight: 600;
}

.ice h1 .ice-line-2 {
  font-weight: 500;
  color: var(--concept-accent);
  font-style: italic;
  font-variation-settings: 'ital' 1;
}

.ice .ice-invitation {
  grid-area: invitation;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-6);
  align-items: start;
  max-width: 460px;
}

.ice .ice-invitation .new-description {
  font-size: 1.0625rem;
  line-height: 1.55;
  max-width: 38ch;
}

.ice .ice-find {
  grid-area: find;
  align-self: end;
  margin-top: var(--space-4);
}

.ice .ice-photo-field {
  position: relative;
  padding-block: var(--space-4) var(--space-6);
}

.ice .ice-shoe {
  width: 92%;
  height: auto;
  margin-inline: auto;
  display: block;
  transform: rotate(-6deg);
  filter: drop-shadow(0 24px 22px var(--ice-shadow));
}

.ice .ice-photo-note {
  position: absolute;
  right: 4%;
  top: 4%;
  transform: rotate(6deg);
  font-family: var(--font-hand);
  font-size: clamp(1.5rem, 1.15rem + 1vw, 2rem);
  line-height: 1;
  color: var(--concept-accent);
  opacity: .85;
}

.ice .ice-find figcaption {
  display: flex;
  align-items: baseline;
  gap: var(--space-4);
  padding-top: var(--space-3);
  font-size: var(--new-xs);
  line-height: 1.6;
}

.ice .ice-find-index {
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--concept-muted);
  flex-shrink: 0;
}

.ice .ice-find-name {
  font-weight: 500;
  color: var(--concept-ink);
  font-size: var(--new-sm);
}

.ice .ice-dot {
  color: var(--concept-muted);
  padding-inline: .35em;
  opacity: .7;
}

.ice .ice-demo {
  grid-area: demo;
  align-self: start;
  position: sticky;
  top: var(--space-6);
}

.ice .ice-thread-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-4);
  font-size: var(--new-xs);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--concept-muted);
  padding-bottom: var(--space-3);
}

.ice .phone-chat {
  box-shadow: 0 20px 60px var(--ice-shadow);
  background: var(--surface);
}

.ice .ice-intent {
  grid-area: intent;
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  grid-template-columns: minmax(0, 1fr);
  border-top-color: var(--concept-line);
}

.ice .ice-intent p {
  max-width: 68ch;
  font-size: var(--new-sm);
  color: var(--concept-muted);
}

/* THE WISHLIST: a letter, a thread, and a saved photograph on a quiet desk. */
.wishlist {
  --concept-bg: #f4eddf;
  --concept-ink: #292e2b;
  --concept-muted: #666a61;
  --concept-accent: #244d9a;
  --concept-button-ink: #fffaf0;
  --concept-line: #292e2b30;
  --concept-focus: #244d9a;
  --wishlist-display: clamp(3.5rem, 1.4rem + 4.3vw, 5.5rem);
  --wishlist-paper: #fffaf0;
  --wishlist-tape: #e0d1adad;
  --wishlist-shadow: #51482b18;
  --font-display: 'Boska', Georgia, serif;
}

.wishlist .site-header {
  color: var(--concept-accent);
}

.wishlist .wishlist-desk {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.1fr) minmax(0, .73fr);
  grid-template-areas: "letter demo saved" "intent intent intent";
  column-gap: var(--new-gap);
  row-gap: var(--space-10);
  padding-top: var(--space-12);
}

.wishlist .wishlist-letter {
  grid-area: letter;
  padding-top: var(--space-6);
}

.wishlist .wishlist-letter .eyebrow {
  margin-bottom: var(--space-8);
  color: var(--concept-muted);
}

.wishlist h1 {
  font-size: var(--wishlist-display);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .98;
}

.wishlist h1 > span,
.wishlist h1 > em {
  display: block;
}

.wishlist h1 > em {
  font-weight: 400;
  color: var(--concept-accent);
}

.wishlist .wishlist-letter .new-description {
  margin-top: var(--space-8);
  max-width: 31ch;
}

.wishlist .signup {
  margin-top: var(--space-10);
}

.wishlist .wishlist-signature {
  font-family: var(--font-hand);
  font-size: var(--new-note);
  line-height: 1;
  color: var(--concept-accent);
  transform: rotate(-4deg);
  margin: var(--space-10) var(--space-2) 0;
}

.wishlist .wishlist-demo {
  grid-area: demo;
}

.wishlist .wishlist-thread-caption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.wishlist .wishlist-thread-caption h2 {
  font-size: var(--new-xs);
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.5;
}

.wishlist .wishlist-thread-caption > span {
  font-size: var(--new-xs);
  color: var(--concept-muted);
}

.wishlist .phone-chat {
  box-shadow: 0 12px 32px var(--wishlist-shadow);
  --new-phone-radius: 1rem;
}

.wishlist .contact-header {
  background: var(--surface);
}

.wishlist .wishlist-saved {
  grid-area: saved;
  align-self: center;
  padding-inline: var(--space-1);
  padding-top: var(--space-12);
}

.wishlist .wishlist-photo-note {
  position: relative;
  padding: var(--space-4);
  background: var(--wishlist-paper);
  border: 1px solid var(--concept-line);
  box-shadow: 0 3px 3px var(--wishlist-shadow), 0 14px 24px var(--wishlist-shadow);
  transform: rotate(4deg);
}

.wishlist .wishlist-photo-note::before {
  content: "";
  position: absolute;
  width: 36%;
  height: 27px;
  top: -14px;
  left: 32%;
  background: var(--wishlist-tape);
  transform: rotate(-8deg);
}

.wishlist .wishlist-note-top {
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
  font-size: var(--new-xs);
  line-height: 1.5;
  letter-spacing: .035em;
  color: var(--concept-muted);
}

.wishlist .wishlist-photo-note img {
  width: 100%;
  height: auto;
  margin-block: var(--space-8) var(--space-6);
}

.wishlist .wishlist-photo-note figcaption {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.wishlist .wishlist-find-name {
  font-size: var(--new-xs);
  line-height: 1.6;
}

.wishlist .wishlist-photo-caption {
  font-family: var(--font-hand);
  font-size: var(--new-note);
  line-height: .95;
  color: var(--concept-accent);
}

.wishlist .wishlist-jottings {
  padding: var(--space-10) var(--space-2) 0;
  font-size: var(--new-xs);
  line-height: 1.6;
}

.wishlist .wishlist-jottings > p {
  font-weight: 500;
  margin-bottom: var(--space-3);
}

.wishlist .wishlist-jottings ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wishlist .wishlist-jottings li {
  padding-block: var(--space-2);
  border-bottom: 1px solid var(--concept-line);
}

.wishlist .wishlist-jot-signoff {
  display: block;
  margin-top: var(--space-4);
  color: var(--concept-muted);
}

.wishlist .wishlist-intent {
  grid-area: intent;
}

/* GOOD TASTE CLUB: the wide conversation leads; the brand is its side note. */
.club {
  --concept-bg: #2049ac;
  --concept-ink: #f7efd9;
  --concept-muted: #d5dff4;
  --concept-accent: #f7efd9;
  --concept-button-ink: #173e97;
  --concept-line: #f7efd94d;
  --concept-focus: #f7efd9;
  --club-display: clamp(3.4rem, 1.35rem + 4vw, 5rem);
  --club-sticker-bg: #f7efd9;
  --club-sticker-ink: #173e97;
  --club-shadow: #0d286b33;
  --new-phone-radius: 1rem;
  --new-chat-height: 660px;
}

.club .site-header {
  border-bottom: 1px solid var(--concept-line);
}

.club .club-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, .95fr);
  grid-template-areas: "demo rail" "intent intent";
  gap: var(--space-10) clamp(var(--space-8), 5vw, var(--space-20));
  padding-top: var(--space-8);
}

.club .club-rail {
  grid-area: rail;
  padding-top: var(--space-10);
}

.club .club-rail .eyebrow {
  margin-bottom: var(--space-6);
}

.club h1 {
  font-size: var(--club-display);
  font-weight: 500;
  line-height: .99;
  letter-spacing: -.065em;
}

.club h1 > span {
  display: block;
}

.club .new-description {
  margin-top: var(--space-6);
  max-width: 31ch;
}

.club .signup {
  margin-top: var(--space-8);
}

.club .club-sticker {
  width: min(100%, 304px);
  padding: var(--space-4);
  margin: var(--space-12) var(--space-2) 0;
  background: var(--club-sticker-bg);
  color: var(--club-sticker-ink);
  box-shadow: 0 4px 0 var(--club-shadow);
  transform: rotate(-4deg);
  border-radius: var(--radius-sm);
}

.club .club-sticker .contact-action {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  width: 100%;
  padding: 0;
  min-height: 64px;
  color: var(--club-sticker-ink);
  text-align: left;
}

.club .club-sticker .contact-action img {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: var(--radius-full);
}

.club .club-sticker .contact-name {
  font-size: var(--text-lg);
  line-height: 1.2;
  font-weight: 500;
}

.club .club-sticker .contact-detail {
  color: var(--club-sticker-ink);
  margin-top: var(--space-1);
  font-size: var(--new-sm);
}

.club .club-sticker-note {
  display: block;
  padding-top: var(--space-3);
  margin-top: var(--space-3);
  border-top: 1px solid #173e9733;
  font-size: var(--new-xs);
}

.club .club-no-membership {
  margin-top: var(--space-6);
  font-size: var(--new-xs);
  color: var(--concept-muted);
}

.club .club-demo {
  grid-area: demo;
}

.club .club-thread-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.club .club-thread-heading h2 {
  font-family: var(--font-body);
  font-size: var(--new-sm);
  font-weight: 400;
  line-height: 1.5;
}

.club .club-thread-heading > span {
  font-size: var(--text-lg);
}

.club .phone-chat {
  box-shadow: 0 16px 40px var(--club-shadow);
}

.club .phone-chat .contact-header {
  justify-content: flex-start;
  padding-inline: var(--space-6);
}

.club .phone-chat .contact-header::before {
  display: none;
}

.club .messages {
  padding-inline: var(--space-6);
}

.club .bubble {
  max-width: 76%;
}

.club .message.rich .bubble {
  max-width: 100%;
}

.club .chat-composer {
  padding-inline: var(--space-6);
}

.club .club-demo-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.club .club-demo-bottom .scenario-tabs {
  justify-content: flex-start;
}

.club .club-demo-bottom .playback {
  justify-content: flex-start;
}

.club .club-demo-bottom .demo-disclaimer {
  text-align: left;
}

.club .club-intent {
  grid-area: intent;
}

/* Dark palettes keep each direction's material and hierarchy, not just inversion. */
html[data-theme="dark"] .new-concept {
  --surface: #1d2731;
  --surface-soft: #29343e;
  --message-in: #35434e;
  --message-text: #f5f5ef;
  --message-link: #b6d2ff;
  --message-out: #1468d7;
  --muted: #b9c3cb;
  --line: #e0eaf12e;
}

html[data-theme="dark"] .ice {
  --concept-bg: #172e3d;
  --concept-ink: #dceff7;
  --concept-muted: #b3cbd8;
  --concept-accent: #c5e1f2;
  --concept-button-ink: #173c58;
  --concept-line: #dceff738;
  --concept-focus: #c5e1f2;
  --ice-shadow: #020e1847;
}

html[data-theme="dark"] .wishlist {
  --concept-bg: #242821;
  --concept-ink: #f1eadb;
  --concept-muted: #bfbeaf;
  --concept-accent: #bbcffa;
  --concept-button-ink: #243b67;
  --concept-line: #f1eadb33;
  --concept-focus: #bbcffa;
  --wishlist-paper: #32372d;
  --wishlist-tape: #95875b91;
  --wishlist-shadow: #080d0633;
  --surface: #292d26;
  --surface-soft: #353a30;
  --message-in: #43493e;
  --muted: #c1c4b7;
}

html[data-theme="dark"] .club {
  --concept-bg: #12295f;
  --concept-ink: #f7efd9;
  --concept-muted: #c6d4f0;
  --concept-line: #f7efd940;
  --club-sticker-bg: #e9e1ce;
  --club-shadow: #08173547;
}

/* Middle widths preserve the picture and the thread without narrow grid tracks. */
@media (max-width: 1180px) {
  .ice .ice-invitation {
    max-width: none;
  }

  .ice .ice-invitation .new-description {
    max-width: 38ch;
  }

  .wishlist .wishlist-desk {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    grid-template-areas: "letter demo" "saved demo" "intent intent";
    row-gap: var(--space-8);
    padding-top: var(--space-6);
  }

  .wishlist .wishlist-saved {
    width: min(100% - var(--space-6), 310px);
    padding-top: 0;
    justify-self: center;
    align-self: start;
  }

  .wishlist .wishlist-signature {
    margin-top: var(--space-8);
  }

  .wishlist .wishlist-demo {
    padding-top: var(--space-6);
  }

  .club .club-layout {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  }

  .club .club-sticker {
    width: min(calc(100% - var(--space-4)), 304px);
  }
}

@media (max-width: 900px) and (min-width: 761px) {
  .ice .ice-poster {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
    padding-block: var(--space-8) var(--space-10);
  }

  .ice .ice-find {
    align-self: center;
    margin-top: 0;
  }

  .ice .ice-photo-note {
    right: 2%;
    top: 2%;
  }

  .club {
    --club-display: 3.125rem;
  }

  .club .club-layout {
    gap: var(--space-8);
  }

  .club .club-rail {
    padding-top: var(--space-10);
  }

  .club .club-sticker {
    padding: var(--space-3);
  }
}

/* Mobile: invitation first, the reference next, and the interactive demo intact. */
@media (max-width: 760px) {
  .new-concept {
    --new-gutter: var(--space-5);
    --new-chat-height: 670px;
  }

  .new-concept .site-header {
    height: 80px;
  }

  .new-concept .nav-right {
    gap: var(--space-3);
  }

  .new-concept .new-intent {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-4);
  }

  .new-concept .site-footer {
    gap: var(--space-4);
    align-items: flex-start;
  }

  .new-concept .footer-signoff {
    max-width: 58%;
  }

  .new-concept .footer-note {
    max-width: 38%;
  }

  .new-concept .new-demo {
    width: 100%;
    max-width: 500px;
    justify-self: center;
  }

  .new-concept .scenario-tabs {
    gap: var(--space-1);
  }

  .new-concept .scenario-tabs button {
    padding-inline: var(--space-3);
  }

  .new-concept .playback .example-label {
    padding-right: var(--space-2);
  }

  .ice {
    --ice-display: clamp(3.5rem, .8rem + 11vw, 5.5rem);
    --new-chat-height: 640px;
  }

  .ice .ice-poster {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "heading" "invitation" "find" "demo" "intent";
    grid-template-rows: auto;
    row-gap: var(--space-8);
    padding-block: var(--space-8) var(--space-10);
  }

  .ice h1 {
    line-height: .95;
    text-wrap: balance;
  }

  .ice .ice-invitation {
    max-width: none;
  }

  .ice .ice-invitation .new-description {
    max-width: 34ch;
  }

  .ice .ice-find {
    margin-top: 0;
  }

  .ice .ice-photo-field {
    padding-block: var(--space-4) var(--space-4);
  }

  .ice .ice-photo-note {
    right: 2%;
    top: 2%;
  }

  .ice .ice-find-name {
    font-size: var(--new-xs);
  }

  .ice .ice-demo {
    position: static;
  }

  .ice .ice-intent {
    margin-top: var(--space-2);
    padding-top: var(--space-6);
  }

  .wishlist {
    --wishlist-display: clamp(3.25rem, 1.3rem + 8.7vw, 5rem);
  }

  .wishlist .wishlist-desk {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "letter" "saved" "demo" "intent";
    row-gap: var(--space-10);
    padding-top: var(--space-4);
  }

  .wishlist .wishlist-letter {
    padding-top: 0;
  }

  .wishlist .wishlist-letter .eyebrow {
    margin-bottom: var(--space-5);
  }

  .wishlist .wishlist-letter .new-description {
    margin-top: var(--space-5);
    max-width: 34ch;
  }

  .wishlist .signup {
    margin-top: var(--space-6);
  }

  .wishlist .wishlist-signature {
    display: none;
  }

  .wishlist .wishlist-saved {
    width: min(calc(100% - var(--space-8)), 360px);
    padding: var(--space-2) 0 0;
    justify-self: center;
  }

  .wishlist .wishlist-photo-note img {
    margin-block: var(--space-6) var(--space-4);
  }

  .wishlist .wishlist-jottings {
    padding-top: var(--space-8);
  }

  .wishlist .wishlist-demo {
    padding-top: 0;
  }

  .club {
    --club-display: clamp(3.125rem, 1rem + 10.7vw, 5rem);
  }

  .club .club-layout {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "rail" "demo" "intent";
    row-gap: var(--space-10);
    padding-top: var(--space-5);
  }

  .club .club-rail {
    padding-top: 0;
  }

  .club .club-rail .eyebrow {
    margin-bottom: var(--space-5);
  }

  .club .new-description {
    max-width: 34ch;
    margin-top: var(--space-5);
  }

  .club .signup {
    margin-top: var(--space-6);
  }

  .club .club-sticker {
    width: min(calc(100% - var(--space-4)), 304px);
    margin-top: var(--space-8);
  }

  .club .club-no-membership {
    margin-top: var(--space-5);
  }

  .club .club-thread-heading h2 {
    font-size: var(--new-xs);
  }

  .club .phone-chat .contact-header {
    padding-inline: var(--space-4);
  }

  .club .messages,
  .club .chat-composer {
    padding-inline: var(--space-4);
  }

  .club .bubble {
    max-width: 87%;
  }
}

@media (max-width: 380px) {
  .new-concept {
    --new-gutter: var(--space-4);
  }

  .new-concept .site-header {
    height: 76px;
  }

  .new-concept .signup-fields {
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: var(--space-2);
  }

  .new-concept .messages {
    padding-inline: var(--space-3);
  }

  .new-concept .phone-chat .contact-header::before {
    left: var(--space-3);
  }

  .new-concept .journey {
    gap: var(--space-1);
  }

  .new-concept .scenario-tabs button {
    padding-inline: var(--space-2);
  }

  .new-concept .playback {
    column-gap: var(--space-1);
  }

  .new-concept .playback .example-label {
    flex-basis: 100%;
    border-right: 0;
    padding: var(--space-2) 0 0;
    text-align: center;
  }

  .club .club-demo-bottom .playback .example-label {
    text-align: left;
  }
}

