@font-face {
  font-family: "Clash Display";
  src: url("/fonts/ClashDisplay-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #080807;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --border: rgba(255, 255, 255, 0.12);
  --accent: #fcd295;

  --font-title:
    "Clash Display", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  --font-body:
    "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  --container: 1120px;
  --gutter: clamp(16px, 4vw, 28px);
  --nav-h: 72px;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* RESET, simple, moderne */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-height: 100vh;
}
img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}
button {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(
    to bottom,
    rgba(8, 8, 7, 0.92),
    rgba(8, 8, 7, 0.55)
  );
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(8, 8, 7, 0.86);
  border-bottom-color: var(--border);
}

.nav-wrap {
  height: var(--nav-h);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
}

.brand-mark {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-name {
  font-family: var(--font-title);
  letter-spacing: 0.12em;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
  transition:
    color 0.2s var(--ease),
    transform 0.2s var(--ease);
  padding: 10px 2px;
}

.nav-link:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-link[aria-current="page"] {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.07);
}

.burger {
  width: 18px;
  height: 2px;
  background: var(--text);
  display: inline-block;
  position: relative;
  border-radius: 999px;
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition:
    transform 0.25s var(--ease),
    top 0.25s var(--ease),
    opacity 0.2s var(--ease);
}

.burger::before {
  top: -6px;
}
.burger::after {
  top: 6px;
}

.nav-drawer {
  display: none;
  border-top: 1px solid var(--border);
  background: rgba(8, 8, 7, 0.92);
}

.drawer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px var(--gutter) 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.drawer-link {
  padding: 14px 10px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.02);
  transition:
    background 0.2s var(--ease),
    border-color 0.2s var(--ease);
}

.drawer-link:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

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

@media (max-width: 860px) {
  .nav {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nav-drawer {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
  }
  .site-header.is-open .nav-drawer {
    max-height: 320px;
  }
  .site-header.is-open .burger {
    background: transparent;
  }
  .site-header.is-open .burger::before {
    top: 0;
    transform: rotate(45deg);
  }
  .site-header.is-open .burger::after {
    top: 0;
    transform: rotate(-45deg);
  }
}

.hero {
  padding: clamp(28px, 6vw, 64px) 0 clamp(36px, 8vw, 86px);
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(22px, 5vw, 64px);
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-badge {
  width: 66px;
  height: 66px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
}

.hero-badge-ring {
  position: absolute;
  inset: -12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.02);
}

.hero-badge-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-badge-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.05);
}

.hero-kicker {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.5vw, 22px);
}

.hero-title {
  font-family: var(--font-title);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.05;
  font-size: clamp(44px, 5.4vw, 86px);
}

.hero-title span {
  display: block;
}

.hero-lead {
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 18px);
  max-width: 52ch;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 16px;
  border: 1px solid transparent;
  transition:
    transform 0.2s var(--ease),
    background 0.2s var(--ease),
    border-color 0.2s var(--ease);
  will-change: transform;
}

.btn:active {
  transform: translateY(0);
}

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

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

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.92);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.hero-right {
  display: flex;
  justify-content: flex-end;
}

.video-card {
  width: min(520px, 100%);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  position: relative;
}

.video-card::before {
  content: "";
  position: absolute;
  inset: -120px -120px auto auto;
  width: 260px;
  height: 260px;
  background: rgba(252, 210, 149, 0.1);
  filter: blur(36px);
  pointer-events: none;
}

lite-youtube {
  display: block;
  aspect-ratio: 9/16;
  width: 100%;
}

/* Scroll reveal, effet propre façon Framer */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.is-visible[data-reveal] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-right {
    justify-content: flex-start;
  }
  .video-card {
    width: min(560px, 100%);
  }
  lite-youtube {
    aspect-ratio: 16/9;
  }
}

.experience {
  padding: clamp(34px, 7vw, 96px) 0;
}

.experience-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.experience-top {
  text-align: center;
  margin-bottom: clamp(20px, 4vw, 44px);
}

.experience-count {
  font-family: var(--font-title);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: clamp(46px, 7vw, 84px);
  line-height: 1;
}

.experience-sub {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(14px, 1.4vw, 18px);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(22px, 5vw, 60px);
}

.experience-media {
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
}

.experience-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.experience-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.experience-accent {
  width: 56px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0.9;
}

.experience-title {
  font-family: var(--font-title);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.02em;
  font-size: clamp(30px, 3.6vw, 54px);
}

.experience-text {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(14px, 1.25vw, 16px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 58ch;
}

@media (max-width: 980px) {
  .experience-grid {
    grid-template-columns: 1fr;
  }
  .experience-media img {
    aspect-ratio: 16/10;
  }
}

.services {
  padding: clamp(40px, 7vw, 96px) 0;
}

.services-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.services-head {
  text-align: center;
  margin-bottom: clamp(18px, 4vw, 34px);
}

.section-accent {
  display: inline-block;
  width: 54px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0.9;
  margin-bottom: 16px;
}

.services-title {
  font-family: var(--font-title);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(26px, 3vw, 42px);
}

.services-list {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.service {
  display: grid;
  grid-template-columns: minmax(220px, 1.05fr) minmax(320px, 1.55fr) 56px;
  gap: clamp(16px, 3vw, 32px);
  padding: clamp(18px, 3.5vw, 30px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  align-items: start;
  transition: background 0.2s var(--ease);
}

.service:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
  border-radius: 18px;
}

.service-name {
  font-family: var(--font-title);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.1;
}

.service-body {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(13px, 1.2vw, 15px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 70ch;
}

.service-cta {
  display: flex;
  justify-content: flex-end;
  padding-top: 2px;
}

.service-dot {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  transition:
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.service-arrow {
  width: 18px;
  height: 18px;
  color: #0f0f0f;
  color: rgba(0, 0, 0, 0);
  transition:
    transform 0.25s var(--ease),
    color 0.25s var(--ease);
}

.service .service-arrow {
  color: rgba(255, 255, 255, 0.92);
}

/* Hover demandé */
.service:hover .service-dot {
  background: var(--accent);
  border-color: rgba(252, 210, 149, 0.75);
}

.service:hover .service-arrow {
  color: #111;
  transform: rotate(45deg);
}

/* Mobile */
@media (max-width: 920px) {
  .service {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .service-cta {
    justify-content: flex-start;
  }
  .service-dot {
    width: 46px;
    height: 46px;
  }
}

.gallery {
  padding: clamp(40px, 7vw, 96px) 0;
}

.gallery-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.gallery-head {
  text-align: center;
  margin-bottom: clamp(18px, 4vw, 34px);
}

.gallery-title {
  font-family: var(--font-title);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(26px, 3vw, 42px);
}

.gallery-grid {
  width: min(860px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  transform: translateZ(0);
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s var(--ease),
    filter 0.25s var(--ease);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0));
  opacity: 0;
  transition: opacity 0.25s var(--ease);
  pointer-events: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 1/1;
  filter: saturate(1.03) contrast(1.02);
}

.gallery-item:hover {
  transform: translateY(-2px) scale(1.01);
  border-color: rgba(252, 210, 149, 0.28);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.gallery-footnote {
  width: min(860px, 100%);
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.4;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  padding: 20px;
  z-index: 120;
}

.lightbox-img {
  max-width: min(980px, 92vw);
  max-height: 86vh;
  border-radius: 18px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.65);
}

.lightbox-close {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 28px;
  line-height: 0;
  display: grid;
  place-items: center;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 860px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 520px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item img {
    aspect-ratio: 16/10;
  }
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox {
  cursor: zoom-out;
}

.lightbox-img {
  cursor: default;
}

.rental {
  padding: clamp(40px, 7vw, 96px) 0;
}

.rental-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.rental-head {
  text-align: center;
  margin-bottom: clamp(22px, 4vw, 40px);
}

.rental-title {
  font-family: var(--font-title);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(26px, 3vw, 42px);
}

.rental-intro {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(14px, 1.4vw, 18px);
  max-width: 60ch;
  margin-inline: auto;
}

.rental-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
}

.rental-media {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.rental-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.rental-media img:nth-child(1) {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.rental-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rental-subtitle {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 28px);
}

.rental-text {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(14px, 1.25vw, 16px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 60ch;
}

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

  .rental-media {
    order: 2;
  }

  .rental-content {
    order: 1;
  }
}
.outline-marquee {
  position: relative;
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #080807;
}

/* fondu noir sur les côtés */
.outline-marquee::before,
.outline-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  pointer-events: none;
  z-index: 2;
}

.outline-marquee::before {
  left: 0;
  background: linear-gradient(to right, #080807 0%, rgba(8, 8, 7, 0) 100%);
}

.outline-marquee::after {
  right: 0;
  background: linear-gradient(to left, #080807 0%, rgba(8, 8, 7, 0) 100%);
}

.outline-marquee-track {
  display: flex;
  width: max-content;
  animation: outline-marquee-scroll 36s linear infinite;
}

.outline-marquee-content {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
  white-space: nowrap;

  font-family: var(--font-title);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 2rem;

  color: rgba(255, 255, 255, 0.35);
}

.outline-sep {
}

@keyframes outline-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .outline-marquee-track {
    animation: none;
  }
}

.contact {
  padding: clamp(48px, 8vw, 110px) 0;
}

.contact-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.contact-head {
  max-width: 560px;
}

.contact-title {
  font-family: var(--font-title);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(28px, 3.2vw, 44px);
  margin-top: 14px;
}

.contact-sub {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(14px, 1.4vw, 18px);
}

.contact-infos {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  transition:
    color 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.contact-link:hover {
  color: var(--accent);
  transform: translateX(2px);
}

.contact-icon {
  font-size: 18px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 36px 0 28px;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.footer-brand {
  font-family: var(--font-title);
  font-weight: 600;
  letter-spacing: 0.14em;
  font-size: 14px;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s var(--ease);
}

.footer-nav a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-credit {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-credit:hover {
  color: var(--text);
}

@media (max-width: 720px) {
  .footer-top {
    flex-direction: column;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* popup */

.toast[hidden] {
  display: none !important;
}

.toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: auto;

  z-index: 130;
  display: flex;
  align-items: stretch;
  gap: 0;

  width: 320px;
  max-width: calc(100vw - 32px);

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
}

.toast-link {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 14px 14px 16px;
}

.toast-badge {
  background: rgba(252, 210, 149, 0.14);
  border: 1px solid rgba(252, 210, 149, 0.35);
  color: var(--accent);
  font-family: var(--font-title);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.toast-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.3;
  white-space: normal;
}

.toast-cta {
  margin-top: 6px;
  align-self: flex-start;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
}

.toast-link:hover .toast-cta {
  border-color: rgba(252, 210, 149, 0.35);
}

.toast-close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 0;
  display: grid;
  place-items: center;
}

.toast-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

@media (max-width: 520px) {
  .toast-text {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
