/*
Theme Name: Maison Pizz'n Co
Theme URI: https://pizznco.fr
Author: Maison Pizz'n Co
Description: Thème custom pour le food truck Maison Pizz'n Co
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: pizznco
*/

/* ============================================================
   VARIABLES & RESET
   ============================================================ */
:root {
  --ardoise:       #4A5568;
  --ardoise-dark:  #2D3748;
  --ardoise-deep:  #1A202C;
  --rose:          #D4A0A0;
  --rose-light:    #F0D8D8;
  --rose-medium:   #C89090;
  --creme:         #F5F0E8;
  --creme-dark:    #EDE5D5;
  --noir:          #1A1A1A;
  --blanc:         #FFFFFF;
  --texte-sec:     #718096;
  --olive:         #5A6B2A;
  --radius:        2px;
  --transition:    0.2s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Jost', 'Segoe UI', sans-serif;
  color: var(--ardoise-deep);
  background: var(--blanc);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ============================================================
   TYPOGRAPHIE
   ============================================================ */
.script   { font-family: 'Pinyon Script', cursive; }
.cormorant{ font-family: 'Cormorant Garamond', serif; }

h1, h2, h3 { line-height: 1.2; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 64px 0; }
.section--sm { padding: 40px 0; }
.section--lg { padding: 96px 0; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ardoise-dark);
  border-bottom: 1px solid rgba(212,160,160,0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.nav-logo { display: flex; flex-direction: column; gap: 0; }
.nav-logo__maison {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1px;
}
.nav-logo__name {
  font-family: 'Pinyon Script', cursive;
  font-size: 30px;
  color: var(--creme);
  line-height: 1;
}

.nav-menu {
  display: none;
  list-style: none;
  gap: 32px;
}
.nav-menu a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
  transition: color var(--transition);
}
.nav-menu a:hover { color: var(--rose); }

.nav-cta {
  display: none;
  background: var(--rose);
  color: var(--ardoise-deep);
  border: none;
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--rose-medium); }

.nav-burger {
  background: none;
  border: none;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nav-burger span {
  display: block;
  height: 1.5px;
  background: var(--creme);
  transition: all var(--transition);
}
.nav-burger span:nth-child(1) { width: 22px; }
.nav-burger span:nth-child(2) { width: 15px; background: var(--rose); }
.nav-burger span:nth-child(3) { width: 22px; }

/* Menu mobile */
.nav-mobile {
  display: none;
  background: var(--ardoise-deep);
  border-top: 1px solid rgba(212,160,160,0.1);
}
.nav-mobile.is-open { display: block; }
.nav-mobile ul { list-style: none; padding: 16px 0; }
.nav-mobile li { border-bottom: 1px solid rgba(212,160,160,0.07); }
.nav-mobile a {
  display: block;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--rose); }
.nav-mobile .nav-mobile__cta {
  display: block;
  margin: 12px 20px;
  background: var(--rose);
  color: var(--ardoise-deep);
  padding: 13px 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--ardoise);
  padding: 72px 20px 80px;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero__deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(212,160,160,0.2);
  pointer-events: none;
}
.hero__deco-circle--1 { width: 400px; height: 400px; right: -80px; top: 50%; transform: translateY(-50%); }
.hero__deco-circle--2 { width: 500px; height: 500px; right: -130px; top: 50%; transform: translateY(-50%); border-color: rgba(212,160,160,0.08); }
.hero__deco-circle--3 { width: 600px; height: 600px; right: -180px; top: 50%; transform: translateY(-50%); border-color: rgba(212,160,160,0.04); }

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 580px;
}

.hero__badge {
  display: inline-block;
  border: 1px solid rgba(212,160,160,0.4);
  color: var(--rose);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 24px;
}

.hero__eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  color: var(--rose);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.hero__title {
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(52px, 8vw, 80px);
  color: var(--creme);
  line-height: 1;
  margin-bottom: 20px;
}

.hero__text {
  font-size: 14px;
  color: rgba(245,240,232,0.6);
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 300;
  max-width: 400px;
}

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}
.btn--primary {
  background: var(--rose);
  color: var(--ardoise-deep);
  min-width: 200px;
}
.btn--primary:hover { background: var(--rose-medium); color: var(--ardoise-deep); }
.btn--ghost {
  background: transparent;
  color: var(--creme);
  border: 1px solid rgba(245,240,232,0.25);
  min-width: 200px;
}
.btn--ghost:hover { border-color: var(--rose); color: var(--rose); }
.btn--outline {
  background: transparent;
  color: var(--ardoise-dark);
  border: 1px solid var(--ardoise);
  width: 100%;
  justify-content: center;
}
.btn--outline:hover { background: var(--ardoise); color: var(--creme); }
.btn--dark {
  background: var(--rose);
  color: var(--ardoise-deep);
  width: 100%;
  justify-content: center;
  max-width: 280px;
}
.btn--dark:hover { background: var(--rose-medium); }

/* ============================================================
   SÉPARATEUR SIGNATURE
   ============================================================ */
.divider-signature {
  background: var(--ardoise-dark);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.divider-signature__line {
  flex: 1;
  height: 1px;
  background: rgba(212,160,160,0.2);
}
.divider-signature__label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-weight: 300;
  font-style: italic;
  color: var(--rose);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================================
   AXES (3 services)
   ============================================================ */
.axes { background: var(--creme); }

.axes__grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.axe-card {
  background: var(--blanc);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.axe-card:hover { transform: translateX(4px); }
.axe-card--dark { background: var(--ardoise-dark); }

.axe-card__icon {
  width: 72px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 20px 0;
}
.axe-card__icon--ardoise { background: var(--ardoise); border-left: 3px solid var(--ardoise-dark); }
.axe-card__icon--rose    { background: var(--rose-light); border-left: 3px solid var(--rose-medium); }
.axe-card__icon--dark    { background: rgba(212,160,160,0.12); border-left: 3px solid var(--rose); }

.axe-card__icon-label {
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}
.axe-card__icon-label--light { color: var(--rose); }
.axe-card__icon-label--rose  { color: var(--rose-medium); }

.axe-card__body {
  padding: 20px 16px;
  flex: 1;
}
.axe-card__title {
  font-size: 15px;
  font-weight: 500;
  color: var(--ardoise-deep);
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}
.axe-card__title--light { color: var(--creme); }
.axe-card__desc {
  font-size: 12px;
  color: var(--texte-sec);
  font-weight: 300;
  line-height: 1.5;
}
.axe-card__desc--light { color: rgba(245,240,232,0.5); }

.axe-card__arrow {
  padding: 20px 14px;
  font-size: 20px;
  color: var(--rose);
  display: flex;
  align-items: center;
  align-self: center;
}

/* ============================================================
   PLANNING SEMAINE
   ============================================================ */
.planning { background: var(--blanc); border-top: 1px solid var(--creme-dark); }

.planning__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.planning__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--ardoise-deep);
}
.planning__label {
  font-size: 9px;
  color: var(--texte-sec);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
}
.planning__subtitle {
  font-size: 12px;
  color: var(--texte-sec);
  font-weight: 300;
  margin-bottom: 24px;
}

.planning-list { list-style: none; }
.planning-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--creme-dark);
}
.planning-item:last-child { border-bottom: none; }

.planning-item__date { text-align: center; }
.planning-item__day {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--texte-sec);
  font-weight: 500;
  margin-bottom: 2px;
}
.planning-item__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--ardoise-dark);
  line-height: 1;
}
.planning-item__place {
  font-size: 14px;
  font-weight: 500;
  color: var(--ardoise-deep);
  margin-bottom: 3px;
}
.planning-item__info {
  font-size: 11px;
  color: var(--texte-sec);
  font-weight: 300;
}
.planning-item__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.planning-item__dot--open   { background: #68B87A; }
.planning-item__dot--coming { background: var(--rose); }

/* ============================================================
   PIZZA DU MOIS
   ============================================================ */
.pizza-mois {
  background: var(--ardoise);
  position: relative;
  overflow: hidden;
}
.pizza-mois__deco {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212,160,160,0.12);
  pointer-events: none;
}
.pizza-mois__deco--1 { width: 200px; height: 200px; right: -40px; top: -40px; }
.pizza-mois__deco--2 { width: 140px; height: 140px; right: 20px; bottom: -40px; }

.pizza-mois__content { position: relative; z-index: 1; }

.pizza-mois__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.pizza-mois__eyebrow-line { height: 1px; width: 28px; background: var(--rose); }
.pizza-mois__eyebrow-text {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 400;
}

.pizza-mois__name {
  font-family: 'Pinyon Script', cursive;
  font-size: 52px;
  color: var(--creme);
  line-height: 1;
  margin-bottom: 12px;
}
.pizza-mois__ingredients {
  font-size: 12px;
  color: rgba(245,240,232,0.6);
  font-weight: 300;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.pizza-mois__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pizza-mois__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--creme);
  font-weight: 400;
}
.pizza-mois__price sup { font-size: 18px; font-weight: 300; }

/* ============================================================
   RÉASSURANCE
   ============================================================ */
.reassurance { background: var(--creme); }
.reassurance__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.reassurance-card {
  background: var(--blanc);
  padding: 18px;
  border-top: 2px solid var(--ardoise);
}
.reassurance-card--rose { border-top-color: var(--rose-medium); }
.reassurance-card__title {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ardoise);
  font-weight: 500;
  margin-bottom: 8px;
}
.reassurance-card--rose .reassurance-card__title { color: var(--rose-medium); }
.reassurance-card__text {
  font-size: 12px;
  color: var(--texte-sec);
  font-weight: 300;
  line-height: 1.6;
}

/* ============================================================
   ÉVÉNEMENTIEL CTA
   ============================================================ */
.evenementiel-cta {
  background: var(--ardoise-deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.evenementiel-cta__deco {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(212,160,160,0.06);
  pointer-events: none;
}
.evenementiel-cta__deco--1 { width: 300px; height: 300px; }
.evenementiel-cta__deco--2 { width: 400px; height: 400px; border-color: rgba(212,160,160,0.04); }
.evenementiel-cta__deco--3 { width: 500px; height: 500px; border-color: rgba(212,160,160,0.02); }

.evenementiel-cta__content { position: relative; z-index: 1; }
.evenementiel-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.evenementiel-cta__eyebrow-line { height: 1px; width: 24px; background: rgba(212,160,160,0.3); }
.evenementiel-cta__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 400;
  color: var(--creme);
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.3;
}
.evenementiel-cta__text {
  font-size: 13px;
  color: rgba(245,240,232,0.5);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.evenementiel-cta__note {
  font-size: 10px;
  color: rgba(212,160,160,0.35);
  margin-top: 12px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* ============================================================
   PAGE : PIZZAS DU SOIR
   ============================================================ */
.page-hero {
  background: var(--ardoise);
  padding: 60px 20px 70px;
  position: relative;
  overflow: hidden;
}
.page-hero__eyebrow {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 400;
  margin-bottom: 10px;
}
.page-hero__title {
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(48px, 8vw, 72px);
  color: var(--creme);
  line-height: 1;
  margin-bottom: 12px;
}
.page-hero__text {
  font-size: 14px;
  color: rgba(245,240,232,0.6);
  font-weight: 300;
  line-height: 1.8;
  max-width: 500px;
}

.carte-section { background: var(--creme); }
.carte-section__intro {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.carte-section__intro-line { flex: 1; height: 1px; background: rgba(74,85,104,0.15); }
.carte-section__intro-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--ardoise-deep);
}

.pizza-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.pizza-card {
  background: var(--blanc);
  padding: 20px;
  border-left: 3px solid var(--ardoise);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.pizza-card__info { flex: 1; }
.pizza-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ardoise-deep);
  margin-bottom: 4px;
}
.pizza-card__ingredients {
  font-size: 12px;
  color: var(--texte-sec);
  font-weight: 300;
  line-height: 1.6;
  font-style: italic;
}
.pizza-card__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--ardoise);
  flex-shrink: 0;
}

.pizza-sur-mesure {
  background: var(--ardoise-dark);
  margin-top: 12px;
  padding: 24px;
  border-left: 3px solid var(--rose);
}
.pizza-sur-mesure__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--creme);
  margin-bottom: 10px;
  font-style: italic;
}
.pizza-sur-mesure__text {
  font-size: 12px;
  color: rgba(245,240,232,0.6);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 14px;
}
.pizza-sur-mesure__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--rose);
}

/* ============================================================
   PAGE : PANOZZOS
   ============================================================ */
.page-hero--midi { background: var(--ardoise-dark); }
.panozzo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.panozzo-card {
  background: var(--blanc);
  padding: 20px;
  border-left: 3px solid var(--rose-medium);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.panozzo-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ardoise-deep);
  margin-bottom: 4px;
}
.panozzo-card__desc {
  font-size: 12px;
  color: var(--texte-sec);
  font-weight: 300;
  line-height: 1.6;
  font-style: italic;
}
.panozzo-card__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--rose-medium);
  flex-shrink: 0;
}

.midi-info {
  background: var(--rose-light);
  padding: 20px;
  border-left: 3px solid var(--rose-medium);
  margin-top: 12px;
}
.midi-info__title {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rose-medium);
  font-weight: 500;
  margin-bottom: 8px;
}
.midi-info__text {
  font-size: 13px;
  color: var(--ardoise-dark);
  font-weight: 300;
  line-height: 1.7;
}

/* ============================================================
   PAGE : ÉVÉNEMENTIEL
   ============================================================ */
.event-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.event-type-card {
  background: var(--blanc);
  padding: 20px 16px;
  border-top: 2px solid var(--ardoise);
  text-align: center;
}
.event-type-card__icon {
  width: 36px;
  height: 36px;
  background: var(--creme);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.event-type-card__title {
  font-size: 13px;
  font-weight: 500;
  color: var(--ardoise-deep);
  margin-bottom: 6px;
}
.event-type-card__text {
  font-size: 11px;
  color: var(--texte-sec);
  font-weight: 300;
  line-height: 1.5;
}

.arguments {
  background: var(--ardoise-dark);
}
.arguments__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.argument {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.argument__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--rose);
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
}
.argument__title {
  font-size: 14px;
  font-weight: 500;
  color: var(--creme);
  margin-bottom: 4px;
}
.argument__text {
  font-size: 12px;
  color: rgba(245,240,232,0.5);
  font-weight: 300;
  line-height: 1.7;
}

/* ============================================================
   PAGE : OÙ NOUS TROUVER
   ============================================================ */
.map-embed {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
}

.emplacement-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.emplacement-item {
  background: var(--blanc);
  padding: 20px;
  border-bottom: 1px solid var(--creme-dark);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.emplacement-item__badge {
  background: var(--ardoise);
  color: var(--rose);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  flex-shrink: 0;
}
.emplacement-item__badge--midi { background: var(--rose-light); color: var(--rose-medium); }
.emplacement-item__name {
  font-size: 15px;
  font-weight: 500;
  color: var(--ardoise-deep);
  margin-bottom: 3px;
}
.emplacement-item__info {
  font-size: 12px;
  color: var(--texte-sec);
  font-weight: 300;
  line-height: 1.6;
}

/* ============================================================
   PAGE : CONTACT
   ============================================================ */
.contact-form-wrap {
  background: var(--blanc);
}

.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ardoise);
  font-weight: 500;
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--creme);
  border: 1px solid var(--creme-dark);
  border-bottom: 2px solid var(--ardoise);
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--ardoise-deep);
  font-weight: 300;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  border-radius: 0;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-bottom-color: var(--rose-medium);
  background: var(--blanc);
}
.form-textarea { min-height: 120px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-section {
  display: none;
}
.form-section.is-active { display: block; }

.form-types {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 28px;
}
.form-type-btn {
  background: var(--creme);
  border: 1px solid var(--creme-dark);
  border-bottom: 2px solid transparent;
  padding: 12px 8px;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--texte-sec);
  font-family: inherit;
  transition: all var(--transition);
  cursor: pointer;
}
.form-type-btn.is-active,
.form-type-btn:hover {
  border-bottom-color: var(--ardoise);
  color: var(--ardoise-deep);
  background: var(--blanc);
}

.form-rgpd {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.form-rgpd input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--ardoise); }
.form-rgpd label {
  font-size: 11px;
  color: var(--texte-sec);
  font-weight: 300;
  line-height: 1.6;
}

.btn--submit {
  width: 100%;
  background: var(--ardoise);
  color: var(--creme);
  border: none;
  padding: 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: inherit;
  transition: background var(--transition);
  cursor: pointer;
}
.btn--submit:hover { background: var(--ardoise-dark); }

/* ============================================================
   SECTION TITRE GÉNÉRIQUE
   ============================================================ */
.section-header { margin-bottom: 32px; }
.section-header__eyebrow {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 400;
  margin-bottom: 8px;
}
.section-header__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--ardoise-deep);
}
.section-header__title--light { color: var(--creme); }
.section-header__text {
  font-size: 13px;
  color: var(--texte-sec);
  font-weight: 300;
  line-height: 1.8;
  margin-top: 8px;
}
.section-header__text--light { color: rgba(245,240,232,0.55); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--noir); }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 24px;
}
.footer-logo { margin-bottom: 28px; }
.footer-logo__maison {
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 400;
  font-family: 'Jost', sans-serif;
  margin-bottom: 1px;
}
.footer-logo__name {
  font-family: 'Pinyon Script', cursive;
  font-size: 32px;
  color: var(--creme);
  line-height: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.footer-col__title {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 12px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 12px;
  color: rgba(245,240,232,0.45);
  font-weight: 300;
  margin-bottom: 6px;
  line-height: 1.5;
}
.footer-col a:hover { color: var(--rose); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-bottom p {
  font-size: 10px;
  color: rgba(245,240,232,0.18);
  font-weight: 300;
  letter-spacing: 0.3px;
}

/* ============================================================
   RESPONSIVE DESKTOP
   ============================================================ */
@media (min-width: 768px) {
  .nav-menu { display: flex; }
  .nav-cta  { display: block; }
  .nav-burger { display: none; }

  .axes__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .axe-card { flex-direction: column; }
  .axe-card__icon {
    width: 100%;
    height: 80px;
    padding: 0;
  }
  .axe-card__arrow { display: none; }
  .axe-card:hover { transform: translateY(-4px); }

  .pizza-grid,
  .panozzo-grid { grid-template-columns: 1fr 1fr; }

  .event-types { grid-template-columns: repeat(3, 1fr); }

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

  .form-row { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; }

  .reassurance__grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .hero { min-height: 600px; padding: 100px 20px; }
  .pizza-grid,
  .panozzo-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   UTILITAIRES
   ============================================================ */
.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;
}
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }

/* ============================================================
   BARRE LIVE
   ============================================================ */
@keyframes pnc-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.45; transform:scale(.8); }
}
@keyframes pnc-slidein {
  from { transform:translateY(-100%); opacity:0; }
  to   { transform:translateY(0);     opacity:1; }
}

.live-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 20px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .3px;
  animation: pnc-slidein .5s ease both;
  flex-wrap: wrap;
  gap: 6px;
}
.live-bar--open   { background: #1A202C; border-bottom: 1px solid rgba(104,184,122,.25); }
.live-bar--soon   { background: #1A202C; border-bottom: 1px solid rgba(212,160,160,.25); }
.live-bar--closed { background: #111827; border-bottom: 1px solid rgba(255,255,255,.06); }

.live-bar__left  { display:flex; align-items:center; gap:10px; }
.live-bar__right { display:flex; align-items:center; gap:8px; }

.live-bar__dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.live-bar__dot--open   { background:#68B87A; animation: pnc-pulse 1.6s ease infinite; }
.live-bar__dot--soon   { background:#D4A0A0; animation: pnc-pulse 1s ease infinite; }
.live-bar__dot--closed { background:#4A5568; }

.live-bar__text         { color:rgba(245,240,232,.75); font-size:12px; }
.live-bar__text strong  { color:#F5F0E8; font-weight:500; }
.live-bar__sublabel     { font-size:10px; color:rgba(245,240,232,.35); letter-spacing:.5px; }
.live-bar__countdown    { font-family:'Cormorant Garamond',serif; font-size:18px; font-weight:600; color:#D4A0A0; line-height:1; }
.live-bar__next         { font-size:11px; color:rgba(245,240,232,.5); font-weight:300; }

.live-bar--open  .live-bar__sublabel { color:rgba(104,184,122,.6); }
.live-bar--soon  .live-bar__sublabel { color:var(--rose); }

/* ============================================================
   PIZZA CARD — HOVER INTERACTIF
   ============================================================ */
.pizza-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  /* On garde les propriétés existantes + on ajoute */
}

.pizza-card__reveal {
  position: absolute;
  inset: 0;
  background: var(--ardoise);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 20px;
  transform: translateY(100%);
  transition: transform .38s cubic-bezier(.4,0,.2,1);
  z-index: 2;
}

.pizza-card:hover .pizza-card__reveal,
.pizza-card:focus-within .pizza-card__reveal,
.pizza-card.is-tapped .pizza-card__reveal {
  transform: translateY(0);
}

.pizza-card__reveal-label {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 8px;
}

.pizza-card__reveal-ingredients {
  font-size: 13px;
  color: var(--creme);
  font-weight: 300;
  line-height: 1.7;
  font-style: italic;
}

.pizza-card__reveal-base {
  font-size: 10px;
  color: rgba(245,240,232,.4);
  font-weight: 300;
  margin-top: 10px;
  letter-spacing: .5px;
}

.pizza-card__reveal-close {
  position: absolute;
  top: 10px; right: 12px;
  background: none;
  border: none;
  color: rgba(245,240,232,.4);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  display: none;
}

@media (max-width: 767px) {
  .pizza-card__reveal-close { display: block; }
  .pizza-card:hover .pizza-card__reveal { transform: translateY(100%); }
  .pizza-card.is-tapped .pizza-card__reveal { transform: translateY(0); }
}

/* Indicateur "tap pour voir" sur mobile */
.pizza-card__hint {
  position: absolute;
  bottom: 8px; right: 10px;
  font-size: 9px;
  color: rgba(74,85,104,.5);
  font-weight: 300;
  letter-spacing: .5px;
  pointer-events: none;
}
@media (min-width: 768px) {
  .pizza-card__hint { display: none; }
}

/* ============================================================
   PANOZZO CARD — HOVER INTERACTIF (même système que pizza)
   ============================================================ */
.panozzo-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.panozzo-card__reveal {
  position: absolute;
  inset: 0;
  background: var(--ardoise-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 20px;
  transform: translateY(100%);
  transition: transform .38s cubic-bezier(.4,0,.2,1);
  z-index: 2;
}

.panozzo-card:hover .panozzo-card__reveal,
.panozzo-card:focus-within .panozzo-card__reveal,
.panozzo-card.is-tapped .panozzo-card__reveal {
  transform: translateY(0);
}

.panozzo-card__reveal-label {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rose-medium);
  font-weight: 500;
  margin-bottom: 8px;
}

.panozzo-card__reveal-desc {
  font-size: 13px;
  color: var(--creme);
  font-weight: 300;
  line-height: 1.7;
  font-style: italic;
}

.panozzo-card__reveal-close {
  position: absolute;
  top: 10px; right: 12px;
  background: none;
  border: none;
  color: rgba(245,240,232,.4);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  display: none;
}

@media (max-width: 767px) {
  .panozzo-card__reveal-close { display: block; }
  .panozzo-card:hover .panozzo-card__reveal { transform: translateY(100%); }
  .panozzo-card.is-tapped .panozzo-card__reveal { transform: translateY(0); }
}

.panozzo-card__hint {
  position: absolute;
  bottom: 8px; right: 10px;
  font-size: 9px;
  color: rgba(200,144,144,.45);
  font-weight: 300;
  letter-spacing: .5px;
  pointer-events: none;
}
@media (min-width: 768px) {
  .panozzo-card__hint { display: none; }
}

/* ============================================================
   FOOTNOTES INGRÉDIENTS (astérisques)
   ============================================================ */
.ingredients-footnotes {
  margin-top: 20px;
  padding: 14px 16px;
  background: var(--creme);
  border-left: 2px solid rgba(74,85,104,.2);
}
.ingredients-footnote {
  font-size: 11px;
  color: var(--texte-sec);
  font-weight: 300;
  line-height: 1.6;
}
.ingredients-footnote sup {
  font-size: 9px;
  color: var(--ardoise);
  font-weight: 500;
}

/* ============================================================
   PIZZA SUR MESURE — ANIMATION FULLWIDTH
   ============================================================ */
.pizza-sur-mesure {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.pizza-sur-mesure__reveal {
  position: absolute;
  inset: 0;
  background: var(--ardoise-deep);
  padding: 24px 28px;
  transform: translateY(100%);
  transition: transform .42s cubic-bezier(.4,0,.2,1);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pizza-sur-mesure:hover .pizza-sur-mesure__reveal,
.pizza-sur-mesure.is-tapped .pizza-sur-mesure__reveal {
  transform: translateY(0);
}

.pizza-sur-mesure__reveal-title {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 14px;
}

.pizza-sur-mesure__reveal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.pizza-sur-mesure__reveal-tag {
  background: rgba(212,160,160,.12);
  border: 1px solid rgba(212,160,160,.2);
  color: var(--creme);
  font-size: 11px;
  font-weight: 300;
  padding: 5px 12px;
  letter-spacing: .3px;
}

.pizza-sur-mesure__reveal-note {
  font-size: 11px;
  color: rgba(245,240,232,.4);
  font-weight: 300;
  line-height: 1.6;
}

.pizza-sur-mesure__reveal-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  border: none;
  color: rgba(245,240,232,.4);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}

.pizza-sur-mesure__hint {
  font-size: 10px;
  color: rgba(245,240,232,.35);
  font-weight: 300;
  letter-spacing: .5px;
  margin-top: 8px;
  display: block;
}

@media (min-width: 768px) {
  .pizza-sur-mesure__hint { display: none; }
}

/* ============================================================
   DESSERTS & BOISSONS
   ============================================================ */
.extras-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
@media(min-width: 768px) {
  .extras-grid { grid-template-columns: repeat(4, 1fr); }
}

.extra-card {
  background: var(--blanc);
  padding: 16px 14px;
  border-top: 2px solid var(--rose);
  position: relative;
}
.extra-card--boisson { border-top-color: var(--ardoise); }
.extra-card__label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}
.extra-card--boisson .extra-card__label { color: var(--ardoise); }
.extra-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--ardoise-deep);
  margin-bottom: 4px;
  line-height: 1.2;
}
.extra-card__desc {
  font-size: 11px;
  color: var(--texte-sec);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 8px;
}
.extra-card__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--rose);
}
.extra-card--boisson .extra-card__price { color: var(--ardoise); }
.extra-card__indispo {
  position: absolute;
  top: 8px; right: 8px;
  font-size: 9px;
  color: var(--texte-sec);
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* FORMULE */
.formule-block {
  background: var(--ardoise-deep);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.formule-block__deco {
  position: absolute;
  right: -30px; top: -30px;
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 1px solid rgba(212,160,160,.1);
  pointer-events: none;
}
.formule-block__eyebrow {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 400;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.formule-block__eyebrow-line { height: 1px; width: 20px; background: var(--rose); }
.formule-block__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--creme);
  margin-bottom: 12px;
  font-style: italic;
}
.formule-block__items {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.formule-block__item {
  background: rgba(212,160,160,.12);
  border: 1px solid rgba(212,160,160,.2);
  color: var(--creme);
  font-size: 12px;
  font-weight: 400;
  padding: 7px 14px;
  letter-spacing: .3px;
}
.formule-block__plus {
  color: var(--rose);
  font-size: 16px;
  font-weight: 300;
}
.formule-block__price-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.formule-block__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--creme);
  font-weight: 400;
}
.formule-block__price-note {
  font-size: 12px;
  color: rgba(245,240,232,.45);
  font-weight: 300;
  line-height: 1.5;
}

/* SECTION TITRE EXTRAS */
.extras-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0 16px;
}
.extras-section-header__line { flex: 1; height: 1px; background: rgba(74,85,104,.12); }
.extras-section-header__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ardoise-deep);
  white-space: nowrap;
}
.extras-section-header__dot {
  width: 20px; height: 3px;
  flex-shrink: 0;
}

/* ============================================================
   CITATIONS ORGANISATEURS — événements
   ============================================================ */
.ev-citation {
  background: var(--ardoise-dark);
  padding: 28px 28px 22px;
  margin: 20px 0;
  position: relative;
  overflow: hidden;
}
.ev-citation__deco {
  position: absolute;
  top: -20px; right: -20px;
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(212,160,160,.08);
  pointer-events: none;
}
.ev-citation__deco-2 {
  position: absolute;
  bottom: -30px; left: -30px;
  width: 90px; height: 90px;
  border-radius: 50%;
  border: 1px solid rgba(212,160,160,.05);
  pointer-events: none;
}
.ev-citation__guillemet {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  color: rgba(212,160,160,.2);
  line-height: .8;
  margin-bottom: 10px;
  display: block;
  font-style: normal;
}
.ev-citation__texte {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-style: italic;
  font-weight: 400;
  color: var(--creme);
  line-height: 1.7;
  margin-bottom: 20px;
}
.ev-citation__separateur {
  width: 32px;
  height: 2px;
  background: var(--rose);
  margin-bottom: 16px;
}
.ev-citation__auteur {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ev-citation__initiale {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(212,160,160,.15);
  border: 1px solid rgba(212,160,160,.3);
  color: var(--rose);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ev-citation__infos { flex: 1; }
.ev-citation__prenom {
  font-size: 13px;
  font-weight: 500;
  color: var(--creme);
  line-height: 1.2;
  letter-spacing: .3px;
}
.ev-citation__role {
  font-size: 11px;
  color: rgba(212,160,160,.6);
  font-weight: 300;
  line-height: 1.4;
  margin-top: 3px;
  font-style: italic;
}
.ev-citation__lien {
  font-size: 10px;
  color: var(--rose);
  text-decoration: none;
  letter-spacing: .5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 5px;
  opacity: .65;
  transition: opacity .15s;
}
.ev-citation__lien:hover { opacity: 1; }

/* LIEN EXTERNE ÉVÉNEMENT */
.ev-lien-externe {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--creme);
  border: 1px solid rgba(74,85,104,.15);
  color: var(--ardoise);
  font-size: 12px;
  font-weight: 400;
  padding: 10px 18px;
  text-decoration: none;
  margin-top: 24px;
  transition: background .15s;
}
.ev-lien-externe:hover { background: rgba(212,160,160,.12); }

/* CONTENU RÉDACTIONNEL événement */
.ev-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--ardoise-deep);
  margin: 28px 0 12px;
  line-height: 1.2;
}
.ev-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--ardoise);
  margin: 20px 0 8px;
}
.ev-content p { margin-bottom: 16px; }
.ev-content strong { font-weight: 500; color: var(--ardoise-deep); }


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

.footer__newsletter {
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(212,160,160,0.15);
  border-bottom: 1px solid rgba(212,160,160,0.08);
  padding: 48px 0;
}

.footer__newsletter-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 48px;
  align-items: center;
}

@media (max-width: 768px) {
  .footer__newsletter-inner {
    flex-direction: column;
    gap: 28px;
  }
}

.footer__newsletter-text {
  flex: 0 0 320px;
}

@media (max-width: 768px) {
  .footer__newsletter-text {
    flex: none;
    text-align: center;
  }
}

.footer__newsletter-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 10px;
}

.footer__newsletter-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--creme);
  line-height: 1.3;
  margin-bottom: 10px;
}

.footer__newsletter-sub {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: rgba(245,240,232,0.5);
}

.footer__newsletter-form {
  flex: 1;
}

.footer__newsletter-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.footer__newsletter-fields input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,160,160,0.2);
  border-radius: 4px;
  color: var(--creme);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.footer__newsletter-fields input::placeholder {
  color: rgba(245,240,232,0.35);
}

.footer__newsletter-fields input:focus {
  outline: none;
  border-color: var(--rose);
  background: rgba(255,255,255,0.09);
}

.footer__newsletter-btn {
  width: 100%;
  padding: 14px;
  background: var(--rose);
  color: var(--ardoise-deep);
  border: none;
  border-radius: 4px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  margin-bottom: 10px;
}

.footer__newsletter-btn:hover:not(:disabled) {
  background: #c89090;
}

.footer__newsletter-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.footer__newsletter-btn-loader {
  display: none;
}

.footer__newsletter-legal {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  color: rgba(245,240,232,0.3);
  line-height: 1.5;
}

.footer__newsletter-msg {
  margin-top: 12px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  min-height: 20px;
}

.footer__newsletter-msg--success {
  color: #68d391;
}

.footer__newsletter-msg--error {
  color: var(--rose);
}
