/* =============================================================
   MAMA — Feuille de style du site vitrine
   -------------------------------------------------------------
   Direction artistique dérivée du logo et du flyer :
   - Fond crème chaleureux  #FBF6EA  (dominante, comme le flyer)
   - Bleu nuit              #1F2A55  (titres, texte, pastilles)
   - Or riche               #C19A50  (logo script, accents, CTA)
   - Champagne              #F5ECD8  (sections alternées)
   Typographies :
   - Titres  : Cormorant Garamond (serif élégante)
   - Corps   : Jost (sans-serif sobre)
   - Logotype: Great Vibes (script calligraphique, proche du logo)
   ============================================================= */

/* ----------------------------------------------
   1. VARIABLES & RESET
   ---------------------------------------------- */
:root {
  /* Palette extraite du logo et du flyer */
  --navy: #1f2a55;          /* bleu nuit : titres, texte fort, pastilles */
  --navy-deep: #16203f;     /* variante sombre (footer, dégradés) */
  --navy-soft: #2a3766;     /* variante claire (cartes sur fond nuit) */
  --champagne: #f2e8d2;     /* ivoire champagne (texte sur fond nuit) */
  --gold: #c19a50;          /* or riche, accent principal */
  --gold-dark: #9c7a35;     /* or foncé (hover, texte doré lisible) */
  --taupe: #8e8474;         /* gris-beige discret */
  --ivory: #fef5e8;         /* fond crème des pages — identique au fond du logo */
  --cream-alt: #f5ecd8;     /* fond champagne des sections alternées */
  --white: #ffffff;
  --ink: #283054;           /* texte principal */
  --text-soft: #5f6584;     /* texte secondaire */
  --line: #e6d9bc;          /* filets, bordures dorées pâles */

  /* Typographies */
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Jost", "Helvetica Neue", Arial, sans-serif;
  --font-script: "Great Vibes", cursive;

  /* Rythme */
  --container: 1180px;
  --radius: 6px;
  --section-pad: clamp(4rem, 9vw, 7.5rem);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

body.nav-locked {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* Titres : serif élégante, graisses légères */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }

/* ----------------------------------------------
   2. UTILITAIRES
   ---------------------------------------------- */
.container {
  width: min(var(--container), 92%);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-pad);
}

/* Section alternée : fond champagne, comme les encadrés du flyer */
.section--alt {
  background: var(--cream-alt);
}

/* Sur-titre doré au-dessus des sections */
.eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-soft);
  margin-top: 1rem;
}

/* Animation d'apparition discrète au scroll */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Décalages en cascade pour les grilles */
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }

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

/* ----------------------------------------------
   3. BOUTONS
   ---------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.95em 2.4em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

/* Bouton accent doré (CTA principal) */
.btn--gold {
  background: var(--gold);
  color: var(--navy);
}

.btn--gold:hover {
  background: var(--gold-dark);
  color: var(--white);
}

/* Bouton contour (fond clair) */
.btn--outline {
  border-color: var(--navy);
  color: var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--champagne);
}

/* ----------------------------------------------
   4. HEADER & NAVIGATION
   ---------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  /* Fond opaque volontairement : un backdrop-filter ici ferait du header
     le bloc conteneur du menu mobile en position fixed et le casserait */
  background: var(--ivory);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px rgba(23, 20, 47, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 84px;
}

.brand {
  display: flex;
  align-items: center;
}

/* Logo image dans le header : le fond de la page (--ivory) est calé sur
   la couleur exacte du fond du logo, l'image s'intègre donc sans raccord */
.brand-logo {
  height: 66px;
  width: auto;
}

/* « Mama » en script or métallique — utilisé dans le footer */
.brand-script {
  font-family: var(--font-script);
  font-size: 2.6rem;
  background: linear-gradient(165deg, #e7c577 5%, #c19a50 38%, #8f6f2e 62%, #ddbc6e 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 1px 1px rgba(143, 111, 46, 0.3));
}

.site-nav ul {
  display: flex;
  gap: clamp(1.2rem, 2.5vw, 2.2rem);
}

.site-nav a {
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  padding-block: 0.4rem;
  position: relative;
  transition: color var(--transition);
}

/* Soulignement doré au survol et sur la page active */
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav a.is-active {
  color: var(--gold-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.header-actions .btn {
  padding: 0.75em 1.6em;
}

/* Menu compte (icône personne + déroulant) */
.account-menu {
  position: relative;
}

.account-toggle {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}

.account-toggle:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.account-dropdown {
  position: absolute;
  top: calc(100% + 0.7rem);
  right: 0;
  min-width: 185px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(23, 20, 47, 0.12);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.account-menu.is-open .account-dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.account-dropdown a {
  display: block;
  padding: 0.65rem 1.3rem;
  font-size: 0.9rem;
  color: var(--ink);
  transition: background var(--transition), color var(--transition);
}

.account-dropdown a:hover {
  background: var(--ivory);
  color: var(--gold-dark);
}

/* Burger (mobile) */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  margin-inline: auto;
  background: var(--navy);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ----------------------------------------------
   5. HERO (accueil)
   ---------------------------------------------- */
.hero {
  position: relative;
  min-height: calc(100svh - 84px);
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 45% at 70% 25%, rgba(193, 154, 80, 0.14), transparent 65%),
    radial-gradient(ellipse 50% 40% at 25% 70%, rgba(193, 154, 80, 0.1), transparent 60%),
    linear-gradient(180deg, var(--ivory) 0%, #f3e7cd 100%);
  overflow: hidden;
}

/* Étincelles dorées discrètes, clin d'œil au logo et au flyer */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 18% 28%, rgba(156, 122, 53, 0.5), transparent 60%),
    radial-gradient(1px 1px at 32% 62%, rgba(156, 122, 53, 0.35), transparent 60%),
    radial-gradient(2px 2px at 56% 18%, rgba(156, 122, 53, 0.45), transparent 60%),
    radial-gradient(1px 1px at 72% 44%, rgba(156, 122, 53, 0.4), transparent 60%),
    radial-gradient(1.5px 1.5px at 84% 70%, rgba(156, 122, 53, 0.4), transparent 60%),
    radial-gradient(1px 1px at 44% 82%, rgba(156, 122, 53, 0.3), transparent 60%),
    radial-gradient(1px 1px at 90% 24%, rgba(156, 122, 53, 0.35), transparent 60%),
    radial-gradient(1.5px 1.5px at 10% 78%, rgba(156, 122, 53, 0.3), transparent 60%);
  pointer-events: none;
}

/* Fin cadre doré autour du message, comme la bordure du flyer */
.hero-content {
  position: relative;
  padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  margin-block: 4rem;
  max-width: 780px;
  width: 92%;
  margin-inline: auto;
  border: 1px solid var(--gold);
  outline: 1px solid rgba(193, 154, 80, 0.35);
  outline-offset: 6px;
}

.hero-script {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gold-dark);
  display: block;
  margin-bottom: 1.2rem;
}

.hero h1 {
  color: var(--navy);
}

.hero p {
  color: var(--text-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  max-width: 560px;
  margin: 1.6rem auto 2.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ----------------------------------------------
   6. GRILLE DE PIÈCES (cartes produit)
   ---------------------------------------------- */
.pieces-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
}

.piece-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.piece-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(23, 20, 47, 0.1);
}

.piece-card img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
}

.piece-card figcaption {
  padding: 1.2rem 1.3rem 1.4rem;
}

.piece-brand {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.piece-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
  margin-top: 0.25rem;
}

.piece-state {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-top: 0.2rem;
}

.section-cta {
  text-align: center;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

/* Mention alternative sous un bouton d'appel à l'action */
.cta-alt {
  margin-top: 1.2rem;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.cta-alt a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ----------------------------------------------
   7. RÉASSURANCE / VALEURS (cartes avec icône)
   ---------------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  text-align: center;
}

/* Pastille bleu nuit avec icône dorée, comme sur le flyer */
.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: var(--navy);
  border-radius: 50%;
  color: var(--gold);
  margin-bottom: 1.3rem;
}

.feature-card h3 {
  margin-bottom: 0.7rem;
}

.feature-card p {
  font-size: 0.98rem;
  color: var(--text-soft);
}

/* ----------------------------------------------
   8. PROCESSUS (étapes numérotées)
   ---------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
  counter-reset: step;
}

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

.step {
  counter-increment: step;
  padding-top: 1.6rem;
  border-top: 1px solid var(--gold);
  position: relative;
}

.step::before {
  content: "0" counter(step);
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-style: italic;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
  line-height: 1;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.96rem;
  color: var(--text-soft);
}

/* ----------------------------------------------
   9. TÉMOIGNAGES
   ---------------------------------------------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.testimonial-stars {
  color: var(--gold);
  letter-spacing: 0.25em;
  font-size: 0.9rem;
}

.testimonial blockquote {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-style: italic;
  color: var(--navy);
  flex: 1;
}

.testimonial figcaption {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ----------------------------------------------
   10. BANDEAU CTA
   ---------------------------------------------- */
.cta-band {
  text-align: center;
}

.cta-band h2 {
  max-width: 620px;
  margin-inline: auto;
}

.cta-band p {
  max-width: 520px;
  margin: 1.2rem auto 2.4rem;
}

/* ----------------------------------------------
   11. PAGES INTÉRIEURES (bandeau d'entrée)
   ---------------------------------------------- */
.page-hero {
  background: linear-gradient(180deg, var(--ivory) 0%, #f3e7cd 100%);
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding-block: clamp(4.5rem, 9vw, 7rem);
}

.page-hero h1 {
  color: var(--navy);
}

.page-hero p {
  color: var(--text-soft);
  max-width: 620px;
  margin: 1.4rem auto 0;
  font-size: 1.12rem;
}

/* Mise en page texte + image */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.split--reverse > :first-child {
  order: 2;
}

.split img {
  border-radius: var(--radius);
  width: 100%;
}

.split h2 {
  margin-bottom: 1.2rem;
}

.split p + p {
  margin-top: 1rem;
}

/* Liste à puces dorées */
.gold-list {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.7rem;
}

.gold-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--text-soft);
}

.gold-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.7rem;
  height: 1px;
  background: var(--gold);
}

/* ----------------------------------------------
   12. FORMULAIRES
   ---------------------------------------------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 3rem);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  transition: border-color var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-hint {
  font-size: 0.85rem;
  color: var(--text-soft);
}

.form-consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.form-consent input {
  margin-top: 0.35rem;
  accent-color: var(--gold-dark);
}

.form-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
}

.form-feedback {
  font-size: 0.95rem;
}

.form-feedback.is-success { color: #3e7a4f; }
.form-feedback.is-error { color: #a8403e; }

/* ----------------------------------------------
   13. PAGE CONTACT
   ---------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 0.6rem;
}

.contact-info address {
  font-style: normal;
  color: var(--text-soft);
}

.contact-block + .contact-block {
  margin-top: 2.2rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--line);
}

.hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.hours td {
  padding-block: 0.45rem;
  color: var(--text-soft);
}

.hours td:last-child {
  text-align: right;
  color: var(--ink);
}

.map-wrap {
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

/* ----------------------------------------------
   14. FOOTER
   ---------------------------------------------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(239, 230, 212, 0.72);
  padding-block: clamp(3.5rem, 6vw, 5rem) 2rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(239, 230, 212, 0.14);
}

.footer-brand .brand-script {
  font-size: 2.5rem;
  background: linear-gradient(165deg, #efd28a 5%, #d4ad60 40%, #a8853f 65%, #e8c97c 90%);
  -webkit-background-clip: text;
  background-clip: text;
}

.footer-brand p {
  margin-top: 0.9rem;
  max-width: 280px;
}

.site-footer h4 {
  color: var(--champagne);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.site-footer li + li {
  margin-top: 0.6rem;
}

.site-footer a {
  transition: color var(--transition);
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1.8rem;
  font-size: 0.82rem;
  color: rgba(239, 230, 212, 0.45);
}

/* ----------------------------------------------
   15. RESPONSIVE
   ---------------------------------------------- */
@media (max-width: 1024px) {
  .pieces-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  /* Navigation mobile : panneau plein écran */
  .nav-burger { display: flex; }

  .site-nav {
    position: fixed;
    top: 84px;
    left: 0;
    width: 100%;
    height: calc(100vh - 84px);
    height: calc(100dvh - 84px);
    background: var(--ivory);
    padding: 2.5rem 8%;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 40;
  }

  .site-nav.is-open {
    transform: none;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 1.6rem;
  }

  .site-nav a {
    font-size: 1.05rem;
  }

  .header-actions .btn {
    padding: 0.7em 1.2em;
    font-size: 0.78rem;
  }

  .feature-grid,
  .testimonials,
  .steps--three {
    grid-template-columns: 1fr;
  }

  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .split--reverse > :first-child {
    order: 0;
  }

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

@media (max-width: 560px) {
  .pieces-grid,
  .steps {
    grid-template-columns: 1fr;
  }

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

  .brand-logo {
    height: 52px;
  }
}
