/* ================================================
   Ô LOUNGE — LP v1
   Tokens crème dominant + accents dorés
   ================================================ */

:root {
  /* Couleurs */
  --cream: #F4EDE3;
  --cream-2: #EDE3D4;
  --cream-3: #E8DCC8;
  --ink: #2A1F18;
  --ink-soft: #5C4A3E;
  --ink-mute: #8A7868;
  --gold: #C99858;
  --gold-2: #B07F3F;
  --gold-3: #E4C28A;
  --line: #D8C9B2;

  /* Typo */
  --ff-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --ff-caps: 'Marcellus', 'Times New Roman', serif;
  --ff-script: 'Allura', 'Cormorant Garamond', cursive;
  --ff-body: 'Jost', system-ui, sans-serif;

  /* Tailles */
  --fs-hero: clamp(2.6rem, 4.2vw, 4.4rem);
  --fs-section: clamp(1.4rem, 1.8vw, 1.85rem);
  --fs-caps: 0.75rem;
  --fs-body: 0.95rem;

  /* Espace */
  --gutter: clamp(1.2rem, 2.5vw, 2.4rem);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: var(--fs-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

/* ================================================
   COMPOSANTS RÉUTILISABLES
   ================================================ */

.caps {
  font-family: var(--ff-caps);
  font-size: var(--fs-caps);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 400;
}

.script {
  font-family: var(--ff-script);
  font-weight: 400;
  font-style: normal;
  color: var(--gold-2);
  font-size: 1.6em;
  line-height: 1.1;
}

.display {
  font-family: var(--ff-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--ink);
}

/* Bouton luxe doré */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  background: var(--gold);
  color: #FFF;
  font-family: var(--ff-caps);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
}

.btn:hover {
  background: var(--gold-2);
  box-shadow: 0 12px 28px -14px rgba(176, 127, 63, 0.6);
}

.btn:hover::after {
  transform: translateX(100%);
}

/* Numéro de section dans un cercle */
.section-badge {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-caps);
  font-size: 0.85rem;
  color: var(--gold-2);
}

/* Picto rond doré */
.picto {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 152, 88, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-2);
}

.picto svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-2);
  stroke-width: 1.4;
  fill: none;
}

/* Image temporaire avec bandeau "Aperçu — à remplacer par photo Sandra" */
.img-temp {
  position: relative;
  overflow: hidden;
  background: #d4c8b3;
}

.img-temp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* Ancien placeholder (fallback si image ne charge pas) */
.img-placeholder {
  background: linear-gradient(135deg, #d4c8b3 0%, #c4b59d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255,255,255,0.85);
  font-family: var(--ff-caps);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem;
  position: relative;
}

.img-placeholder::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,0.4);
  pointer-events: none;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ================================================
   HERO
   ================================================ */

.hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  background: var(--cream);
  min-height: 420px;
}

.hero__img {
  position: relative;
}

.hero__img--left {
  aspect-ratio: 4/5;
}

.hero__img--right {
  aspect-ratio: 4/5;
}

.hero__content {
  padding: 2.5rem 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero__logo {
  font-family: var(--ff-display);
  font-size: clamp(3.2rem, 5vw, 4.8rem);
  letter-spacing: 0.05em;
  color: var(--ink);
  line-height: 1;
}

.hero__logo-mark {
  display: inline-block;
  margin-bottom: -0.3em;
}

.hero__title {
  font-family: var(--ff-display);
  font-size: var(--fs-hero);
  letter-spacing: 0.02em;
  color: var(--ink);
  margin: 1rem 0 0.4rem;
  font-weight: 400;
  line-height: 1.1;
}

.hero__baseline {
  margin-top: 0.2rem;
}

.hero__usp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
  width: 100%;
  max-width: 540px;
}

.hero__usp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.hero__usp-title {
  font-family: var(--ff-caps);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}

.hero__usp-desc {
  font-size: 0.78rem;
  color: var(--ink-soft);
  max-width: 160px;
  line-height: 1.4;
}

/* ================================================
   SECTIONS 4 COLONNES (Spa / Sophro / Au Fil / SÔ Private)
   ================================================ */

.offers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.offer {
  padding: 2rem 2rem 2.5rem;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.offer__media {
  padding: 0 0.4rem;
}

.offer:last-child { border-right: none; }

.offer__head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.4rem;
}

.offer__title {
  font-family: var(--ff-caps);
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}

.offer__subtitle {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-soft);
  text-align: center;
  margin: -0.4rem 0 0.6rem;
}

.offer__media {
  display: grid;
  gap: 0.6rem;
}

.offer__media--single .img-placeholder,
.offer__media--single .img-temp { aspect-ratio: 5/3; }
.offer__media--double { grid-template-columns: 1fr 1fr; }
.offer__media--double .img-placeholder,
.offer__media--double .img-temp { aspect-ratio: 1/1; }
.offer__media--triple { grid-template-columns: repeat(3, 1fr); }
.offer__media--triple .img-placeholder,
.offer__media--triple .img-temp { aspect-ratio: 1/1; }

.offer__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.offer__text {
  text-align: center;
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-style: italic;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  line-height: 1.4;
}

.offer__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
  flex-grow: 1;
}

.offer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  justify-content: space-around;
  height: 100%;
}

.offer__list--inline {
  font-size: 0.82rem;
  color: var(--ink-soft);
  gap: 0.3rem;
}

.offer__list-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.offer__list-item .picto {
  width: 32px;
  height: 32px;
}

.offer__list-item .picto svg {
  width: 16px;
  height: 16px;
}

.offer__heading {
  font-family: var(--ff-caps);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin: 0.4rem 0 0.4rem;
  text-align: center;
}

.offer__dots {
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.offer__dots span {
  display: inline-block;
}

.offer__dots span + span::before {
  content: " • ";
  color: var(--gold);
  margin: 0 0.4rem;
}

.offer__cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
}

.offer__cta-note {
  margin: 0.6rem 0 0;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--ink, #5a4a3a);
  opacity: 0.75;
}

/* Section 02 — étapes sophro */
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}

.steps__sep {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-2);
}

.steps__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.steps__item .picto {
  width: 38px;
  height: 38px;
}

.steps__label {
  font-family: var(--ff-caps);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.3;
}

/* =========================================
   SPA — section 01 (habillage)
   ========================================= */
.spa-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin: 0.2rem 0 0.4rem;
}
.spa-feature {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.55rem;
  padding: 1rem 0.5rem 0.9rem;
  background: rgba(255, 252, 245, 0.5);
  border: 1px solid var(--line);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.spa-feature:hover {
  border-color: var(--gold);
  background: rgba(255, 252, 245, 0.8);
  transform: translateY(-2px);
}
.spa-feature__icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border: 1px solid rgba(201, 152, 88, 0.35);
  border-radius: 50%;
  color: var(--gold-2);
}
.spa-feature__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.spa-feature__label {
  font-family: var(--ff-caps);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.35;
}

.spa-duration {
  text-align: center;
  margin-top: 0.4rem;
}
.spa-duration__pills {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.5rem;
}
.spa-pill {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--gold);
  background: rgba(201, 152, 88, 0.06);
  line-height: 1;
  letter-spacing: 0.02em;
}
.spa-pill__sep {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold-2);
}

.spa-options {
  text-align: center;
}
.spa-options__list {
  list-style: none;
  margin: 0.4rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
}
.spa-options__list li {
  font-family: var(--ff-body);
  font-size: 0.74rem;
  color: var(--ink-soft);
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
}

/* Section 03 — 3 sous-cartes brunch/jeudis/formules */
.subcard {
  background: var(--cream-2);
  padding: 1rem 0.9rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.subcard__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.5rem;
  margin-bottom: 0.3rem;
}

.subcard__title {
  font-family: var(--ff-caps);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.subcard__text {
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.subcard__text strong {
  color: var(--ink);
  font-weight: 500;
}

.subcard__formulas {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.subcard__formula-name {
  font-family: var(--ff-caps);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}

/* Section 04 — 4 sous-colonnes SÔ Private */
.private-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.private-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.private-col__title {
  font-family: var(--ff-caps);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 0.2rem;
}

.private-col__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.72rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  margin-bottom: 0.5rem;
}

.partner__name {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink);
}

.partner__role {
  font-family: var(--ff-caps);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-2);
}

/* ================================================
   BANDE USP 3 COLONNES
   ================================================ */

.usp-band {
  background: var(--cream-2);
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  align-items: stretch;
}

.usp-band__col {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-right: 1px solid var(--line);
}

.usp-band__col:last-child { border-right: none; }

.usp-band__head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.usp-band__title {
  font-family: var(--ff-caps);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}

.usp-band__text {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.usp-band__mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column: 1 / -1;
  gap: 0;
}

.usp-band__mosaic .img-placeholder,
.usp-band__mosaic .img-temp {
  aspect-ratio: 4/3;
}

/* ================================================
   FOOTER
   ================================================ */

.footer {
  background: var(--cream);
  padding: 2.5rem 2rem 1.6rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.5fr 1fr 1.2fr;
  gap: 2rem;
  align-items: center;
}

.footer__brand {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1;
}

.footer__coord {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.footer__coord-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer__coord-item .picto {
  width: 28px;
  height: 28px;
}

.footer__coord-item .picto svg {
  width: 14px;
  height: 14px;
}

.footer__baseline {
  text-align: center;
  font-family: var(--ff-script);
  color: var(--ink-soft);
  font-size: 1.6rem;
  line-height: 1.3;
}

.footer__social {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.footer__social-label {
  font-family: var(--ff-caps);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}

.footer__social-icons {
  display: flex;
  gap: 0.8rem;
}

.footer__social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.footer__social-icons a:hover { background: var(--gold-2); }

.footer__social-icons svg { width: 18px; height: 18px; fill: #fff; }

.footer__hours {
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-style: italic;
  font-family: var(--ff-display);
  line-height: 1.5;
}

.footer__mosaic {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
}

.footer__mosaic-item {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.footer__mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.footer__mosaic-item:hover img {
  transform: scale(1.04);
}

.footer__bottom {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  margin-top: 1.5rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.7rem;
  color: var(--ink-mute);
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 1200px) {
  .offers {
    grid-template-columns: repeat(2, 1fr);
  }
  .offer { border-right: none; border-bottom: 1px solid var(--line); }
  .offer:nth-child(odd) { border-right: 1px solid var(--line); }

  .private-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero__img--left, .hero__img--right {
    aspect-ratio: 16/9;
  }
  .hero__content {
    order: -1;
    padding: 2.2rem 1.2rem;
  }

  .usp-band {
    grid-template-columns: 1fr;
  }
  .usp-band__col {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .usp-band__mosaic {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer {
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }
  .footer__brand, .footer__baseline { grid-column: 1 / -1; text-align: center; }
  .footer__coord { align-items: center; }
  .footer__mosaic { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .offers { grid-template-columns: 1fr; }
  .offer { border-right: none; }

  .private-cols { grid-template-columns: 1fr; }

  .hero__usp { grid-template-columns: 1fr; }

  .footer {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   ÉVÉNEMENT COUPE DU MONDE — encart compact dans la colonne SÔ Private
   ========================================= */
.cdm {
  position: relative;
  margin: 1.4rem 0 0.4rem;
  background: #0E0B08;
  border: 1px solid rgba(201, 152, 88, 0.32);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.cdm::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(201, 152, 88, 0.14), transparent 60%),
    radial-gradient(ellipse at 100% 100%, rgba(228, 122, 60, 0.10), transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.cdm__media {
  position: relative;
  background: #0E0B08;
  overflow: hidden;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.cdm__media img {
  width: 100%;
  height: auto;
  display: block;
}
.cdm__body {
  position: relative;
  z-index: 1;
  padding: 1.1rem 1.05rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.cdm__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-caps);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-3);
}
.cdm__eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--gold);
}
.cdm__title {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  color: var(--cream);
  line-height: 1.18;
  font-weight: 500;
  margin: 0;
}
.cdm__title em {
  font-family: var(--ff-script);
  font-style: normal;
  color: var(--gold-3);
  font-size: 1.35em;
  display: inline-block;
  line-height: 0.9;
}
.cdm__lead {
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(244, 237, 227, 0.72);
  margin: 0;
}
.cdm__list {
  list-style: none;
  margin: 0;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(201, 152, 88, 0.18);
  border-bottom: 1px solid rgba(201, 152, 88, 0.18);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.cdm__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.6rem;
  font-family: var(--ff-body);
  font-size: 0.76rem;
  color: rgba(244, 237, 227, 0.82);
  line-height: 1.3;
}
.cdm__list-name { flex: 1; }
.cdm__list-price {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-3);
  white-space: nowrap;
}
.cdm__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.2rem;
  padding: 0.7rem 1rem;
  background: var(--gold);
  color: #0E0B08;
  font-family: var(--ff-caps);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold);
  transition: background 0.3s ease, color 0.3s ease;
}
.cdm__cta:hover {
  background: var(--gold-3);
  border-color: var(--gold-3);
}
.cdm__note {
  font-family: var(--ff-body);
  font-size: 0.68rem;
  color: rgba(244, 237, 227, 0.5);
  font-style: italic;
  text-align: center;
  letter-spacing: 0.03em;
  margin: 0;
}
