/* =========================================================
   CACHONDO — warm live-music aesthetic
   charcoal · rust/coral · cream · editorial serif
   ========================================================= */

:root {
  --bg: #1a1614;
  --bg-elevated: #221e1b;
  --bg-muted: #241f1c;
  --cream: #f3e6d8;
  --cream-soft: #e8d5c4;
  --cream-dim: #cbb7a4;
  --accent: #c45c3e;
  --accent-hot: #d96b4a;
  --accent-deep: #9a3f28;
  --ink: #1a1614;
  --border: rgba(243, 230, 216, 0.12);
  --border-strong: rgba(243, 230, 216, 0.22);
  --header-h: 4.25rem;
  --max: 70rem;
  --font-serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --font-sans: "Instrument Sans", "Segoe UI", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.75rem);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--cream);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(196, 92, 62, 0.16), transparent 55%),
    radial-gradient(900px 500px at 10% 20%, rgba(232, 213, 196, 0.05), transparent 50%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent-hot);
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ——— Buttons ——— */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.85rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease),
    color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn:hover {
  color: inherit;
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--accent);
  color: var(--cream);
}

.btn--primary:hover {
  background: var(--accent-hot);
  color: var(--cream);
}

.btn--ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--cream);
}

.btn--ghost:hover {
  border-color: var(--cream-soft);
  background: rgba(243, 230, 216, 0.06);
}

.btn--nav {
  background: var(--accent);
  color: var(--cream);
  min-height: 2.4rem;
  padding: 0.45rem 1.1rem;
  font-size: 0.95rem;
}

.btn--nav:hover {
  background: var(--accent-hot);
  color: var(--cream);
}

.btn--small {
  min-height: 2.35rem;
  padding: 0.4rem 1rem;
  font-size: 0.92rem;
  background: transparent;
  border-color: var(--border-strong);
  align-self: center;
}

.btn--dark-text {
  color: var(--cream);
}

/* ——— Header / Nav ——— */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(26, 22, 20, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(26, 22, 20, 0.92);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wordmark {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--cream);
}

.wordmark:hover {
  color: var(--cream);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.35rem;
}

.nav-desktop a:not(.btn) {
  text-decoration: none;
  color: var(--cream-soft);
  font-size: 0.98rem;
}

.nav-desktop a:not(.btn):hover {
  color: var(--cream);
}

.nav-toggle {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--border-strong);
  border-radius: 0.65rem;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: transform 0.25s var(--ease), opacity 0.2s ease;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle__icon::before {
  top: -6px;
}

.nav-toggle__icon::after {
  top: 6px;
}

.nav-toggle__icon.is-open {
  background: transparent;
}

.nav-toggle__icon.is-open::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle__icon.is-open::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-mobile {
  position: fixed;
  inset: var(--header-h) 0 0;
  background: rgba(26, 22, 20, 0.97);
  padding: 1.5rem 1.25rem 2rem;
  border-top: 1px solid var(--border);
}

.nav-mobile[hidden] {
  display: none;
}

.nav-mobile nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-width: var(--max);
  margin: 0 auto;
}

.nav-mobile a {
  text-decoration: none;
  padding: 0.9rem 0.35rem;
  font-size: 1.2rem;
  border-bottom: 1px solid var(--border);
}

.nav-mobile .btn {
  margin-top: 1rem;
  width: fit-content;
  border-bottom: none;
}

@media (min-width: 860px) {
  .nav-desktop {
    display: flex;
  }

  .nav-toggle,
  .nav-mobile {
    display: none !important;
  }
}

/* ——— Sections ——— */

.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.section--muted {
  background: linear-gradient(180deg, var(--bg-muted), var(--bg));
}

.section--cream {
  background:
    linear-gradient(180deg, rgba(196, 92, 62, 0.08), transparent 30%),
    linear-gradient(160deg, #f7ebe0 0%, #ead7c4 55%, #e2c9b2 100%);
  color: var(--ink);
}

.section__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section__inner--narrow {
  max-width: 46rem;
}

.section__header {
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.section__header--subtle {
  margin-bottom: 1.75rem;
}

.section__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--cream);
}

.section__title--small {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--cream-soft);
}

.section__title--dark {
  color: var(--ink);
}

.section__lede {
  margin: 1rem 0 0;
  max-width: 40rem;
  color: var(--cream-dim);
  font-size: 1.08rem;
}

.section__lede--dark {
  color: rgba(26, 22, 20, 0.78);
}

/* ——— Hero ——— */

.hero {
  position: relative;
  min-height: min(85vh, 46rem);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
}

.hero__image.is-active {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero__image {
    transition: none;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(26, 22, 20, 0.2) 0%,
      rgba(26, 22, 20, 0.1) 35%,
      rgba(26, 22, 20, 0.42) 62%,
      rgba(26, 22, 20, 0.82) 100%
    ),
    linear-gradient(
      90deg,
      rgba(26, 22, 20, 0.4) 0%,
      rgba(26, 22, 20, 0.12) 48%,
      transparent 72%
    );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 1.25rem 1.25rem clamp(1.5rem, 3.5vh, 2.5rem);
}

.hero__location {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--cream-soft);
}

.hero__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6.5vw, 4.25rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--cream);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero__tagline {
  margin: 0.7rem 0 0;
  max-width: 26rem;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.1vw, 1.4rem);
  font-style: italic;
  line-height: 1.35;
  color: var(--cream-soft);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.hero-lede {
  background: var(--bg-muted);
  border-bottom: 1px solid var(--border);
  padding: clamp(1.35rem, 3vw, 2rem) 0;
}

.hero-lede__inner {
  max-width: 44rem;
}

.hero-lede p {
  margin: 0;
  font-size: clamp(1.02rem, 2vw, 1.15rem);
  line-height: 1.65;
  color: var(--cream-soft);
}

/* ——— Video ——— */

.video-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.video-grid__secondary {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .video-grid__secondary {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 980px) {
  .video-grid__secondary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.video-card {
  appearance: none;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: inherit;
  text-align: left;
  padding: 0;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
  width: 100%;
  font: inherit;
}

.video-card:hover {
  border-color: rgba(196, 92, 62, 0.55);
  transform: translateY(-2px);
}

.video-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}

.video-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.video-card:hover .video-card__media img {
  transform: scale(1.03);
}

.video-card__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(26, 22, 20, 0.28);
  color: var(--cream);
}

.play-icon {
  width: 4rem;
  height: 4rem;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
  transition: transform 0.25s var(--ease);
}

.video-card:hover .play-icon {
  transform: scale(1.06);
}

.video-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.15rem 1.2rem;
}

.video-card__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
}

.video-card__subtitle {
  color: var(--cream-dim);
  font-size: 0.95rem;
}

.video-card--featured .video-card__title {
  font-size: 1.6rem;
}

.video-card--featured .play-icon {
  width: 4.75rem;
  height: 4.75rem;
}

/* ——— Music ——— */

.track-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.track-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "play info duration"
    "play progress progress";
  gap: 0.55rem 0.9rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  background: rgba(34, 30, 27, 0.85);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.track-row.is-active {
  border-color: rgba(196, 92, 62, 0.45);
  background: rgba(196, 92, 62, 0.08);
}

.track-row__play {
  grid-area: play;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--cream);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.track-row__play svg {
  width: 1.1rem;
  height: 1.1rem;
}

.track-row__play:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.track-row__info {
  grid-area: info;
  min-width: 0;
}

.track-row__title {
  font-weight: 600;
}

.track-row__style {
  color: var(--cream-dim);
  font-size: 0.92rem;
}

.track-row__duration {
  grid-area: duration;
  color: var(--cream-dim);
  font-variant-numeric: tabular-nums;
  font-size: 0.92rem;
}

.track-row__progress {
  grid-area: progress;
}

.track-row__bar {
  height: 4px;
  border-radius: 999px;
  background: rgba(243, 230, 216, 0.12);
  overflow: hidden;
}

.track-row__fill {
  height: 100%;
  width: 0;
  background: var(--accent);
  transition: width 0.15s linear;
}

.music-note {
  margin: 1.35rem 0 0;
  color: var(--cream-dim);
  font-size: 0.98rem;
}

@media (min-width: 720px) {
  .track-row {
    grid-template-columns: auto minmax(10rem, 14rem) 1fr auto;
    grid-template-areas: "play info progress duration";
    gap: 1rem;
    padding: 1.05rem 1.2rem;
  }
}

.about__layout {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

@media (min-width: 880px) {
  .about__layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
  }
}

.about__photo {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.about__photo img {
  width: 100%;
  height: 100%;
  max-height: 34rem;
  object-fit: cover;
  object-position: center 20%;
}

.about-copy p {
  margin: 0 0 1.15rem;
  font-size: 1.12rem;
  color: var(--cream-soft);
}

.about-copy p:last-child {
  margin-bottom: 0;
}

/* ——— Members ——— */

.member-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 720px) {
  .member-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (min-width: 1100px) {
  .member-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.member-card {
  min-width: 0;
}

.member-card__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 0.85rem;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  margin-bottom: 0.85rem;
}

.member-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.member-card:hover .member-card__photo img {
  transform: scale(1.03);
}

.member-card__name {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.member-card__role {
  margin: 0.2rem 0 0;
  color: var(--cream-dim);
  font-size: 0.92rem;
}

/* ——— Shows ——— */

.show-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.show-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 0.95rem;
  background: rgba(34, 30, 27, 0.9);
}

@media (min-width: 760px) {
  .show-card {
    grid-template-columns: 11rem 1fr auto;
    align-items: center;
    gap: 1.25rem;
  }
}

.show-card__date {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  color: var(--cream-soft);
  font-size: 0.95rem;
}

.show-card__date time {
  font-weight: 600;
  color: var(--cream);
}

.show-card__venue {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
}

.show-card__city,
.show-card__desc {
  margin: 0.2rem 0 0;
  color: var(--cream-dim);
}

/* ——— Booking ——— */

.booking__layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 880px) {
  .booking__layout {
    grid-template-columns: minmax(12rem, 16rem) 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.booking__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.booking__link {
  font-weight: 600;
  text-decoration: none;
  color: var(--accent-deep);
}

.booking__link:hover {
  color: var(--accent);
}

.booking__socials {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.booking__socials a {
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid rgba(26, 22, 20, 0.25);
}

.booking__socials a:hover {
  color: var(--accent-deep);
  border-bottom-color: var(--accent-deep);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(26, 22, 20, 0.18);
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  font: inherit;
  padding: 0.75rem 0.9rem;
}

.form-row input:focus-visible,
.form-row select:focus-visible,
.form-row textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  background: #fff;
}

.form-row--split {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row--split {
    grid-template-columns: 1fr 1fr;
  }
}

.field-error {
  margin: 0.35rem 0 0;
  color: #8a2a18;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-hint {
  margin: 0;
  color: rgba(26, 22, 20, 0.65);
  font-size: 0.92rem;
}

.section--cream .btn--primary {
  align-self: flex-start;
}

/* ——— Footer ——— */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0 2.5rem;
  background: #14110f;
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  gap: 0.85rem;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.site-footer__brand strong {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.site-footer__brand span,
.site-footer__copy {
  color: var(--cream-dim);
  font-size: 0.92rem;
}

.site-footer__copy {
  margin: 0;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.15rem;
}

.site-footer__links a {
  text-decoration: none;
  color: var(--cream-soft);
}

.site-footer__links a:hover {
  color: var(--accent-hot);
}

@media (min-width: 760px) {
  .site-footer__inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand links"
      "copy copy";
    align-items: end;
  }

  .site-footer__brand {
    grid-area: brand;
  }

  .site-footer__links {
    grid-area: links;
    justify-content: end;
  }

  .site-footer__copy {
    grid-area: copy;
  }
}

/* ——— Modal & toast ——— */

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(10, 8, 7, 0.72);
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.modal__dialog {
  position: relative;
  width: min(100%, 40rem);
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 1rem;
  padding: 1.5rem 1.35rem 1.6rem;
  box-shadow: var(--shadow);
}

.modal__dialog--reel {
  width: min(100%, 26rem);
}

.modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  width: 2.4rem;
  height: 2.4rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--cream);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.modal__close:hover {
  background: rgba(243, 230, 216, 0.08);
}

.modal__title {
  margin: 0 2rem 0.85rem 0;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
}

.modal__message {
  margin: 0;
  color: var(--cream-soft);
  font-size: 1.08rem;
}

.modal__embed {
  aspect-ratio: 16 / 9;
  border-radius: 0.65rem;
  overflow: hidden;
  background: #000;
}

.modal__embed--reel {
  aspect-ratio: 9 / 16;
  max-height: min(70vh, 36rem);
  margin-inline: auto;
}

.modal__embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.modal__external {
  margin: 0.9rem 0 0;
  text-align: center;
}

.modal__external a {
  color: var(--cream-soft);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(243, 230, 216, 0.35);
}

.modal__external a:hover {
  color: var(--accent-hot);
  border-bottom-color: var(--accent-hot);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.35rem;
  transform: translateX(-50%);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: calc(100vw - 2rem);
  padding: 0.85rem 0.9rem 0.85rem 1.15rem;
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.toast p {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
}

.toast__close {
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-size: 1.35rem;
  cursor: pointer;
}

.toast__close:hover {
  background: rgba(26, 22, 20, 0.08);
}
