/* ========================================
   ÉVASION INTÉRIEURE — style.css
   ======================================== */

/* ----------------------------------------
   VARIABLES & RESET
   ---------------------------------------- */
:root {
  --color-bg: #F7F5F2;
  --color-bg-warm: #EDE8E1;
  --color-bg-dark: #2C2825;
  --color-bg-accent: #D4CEC5;
  --color-text: #2C2825;
  --color-text-light: #6B6560;
  --color-text-muted: #9B9590;
  --color-text-on-dark: #F7F5F2;
  --color-accent: #8B7355;
  --color-accent-light: #B8A48A;
  --color-accent-dark: #6B5540;
  --color-border: #D4CEC5;
  --color-white: #FFFFFF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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


/* ----------------------------------------
   ANIMATIONS
   ---------------------------------------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes expandLine {
  from { width: 0; }
  to { width: 60px; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }


/* ----------------------------------------
   NAVIGATION
   ---------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition), padding var(--transition);
}

.nav.scrolled {
  background: rgba(247, 245, 242, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 3rem;
  box-shadow: 0 1px 0 var(--color-border);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav__logo span {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text-light);
  margin-top: 2px;
}

/* Si vous utilisez un logo image */
.nav__logo-img {
  height: 45px;
  width: auto;
}

.nav__links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav__links a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding-bottom: 4px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.nav__hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--color-text);
  transition: var(--transition);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.nav__close {
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--color-text);
}


/* ----------------------------------------
   HERO
   ---------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(139, 115, 85, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 206, 197, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero__tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 2.5rem;
  animation: fadeIn 1s ease 0.3s both;
}

.hero__tag::before,
.hero__tag::after {
  content: '—';
  margin: 0 0.8rem;
  color: var(--color-accent-light);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.15;
  max-width: 800px;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.5s both;
}

.hero__title em {
  font-style: italic;
  color: var(--color-accent);
}

.hero__subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--color-text-light);
  max-width: 550px;
  line-height: 1.8;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease 0.7s both;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 1rem 2.5rem;
  border: 1px solid var(--color-accent);
  color: var(--color-accent-dark);
  transition: var(--transition);
  animation: fadeInUp 1s ease 0.9s both;
}

.hero__cta:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.hero__cta svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.hero__cta:hover svg {
  transform: translateX(4px);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  animation: fadeIn 1s ease 1.2s both;
}

.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: var(--color-accent-light);
  margin: 0.8rem auto 0;
  animation: expandLine 1.5s ease 1.5s both;
  transform-origin: top;
}


/* ----------------------------------------
   SECTIONS — COMMUN
   ---------------------------------------- */
section {
  padding: 7rem 2rem;
}

.section-tag {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-tag::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--color-accent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--color-accent);
}


/* ----------------------------------------
   PHILOSOPHIE
   ---------------------------------------- */
.philosophie {
  background: var(--color-white);
}

.philosophie__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.philosophie__visual {
  position: relative;
  height: 500px;
}

.philosophie__img-main {
  width: 85%;
  height: 400px;
  background: var(--color-bg-warm);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.philosophie__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophie__img-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,115,85,0.1) 0%, transparent 60%);
}

.philosophie__img-accent {
  width: 55%;
  height: 250px;
  background: var(--color-bg-accent);
  border-radius: 2px;
  position: absolute;
  bottom: 0;
  right: 0;
  box-shadow: -20px -20px 0 var(--color-white);
  overflow: hidden;
}

.philosophie__img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophie__text p {
  color: var(--color-text-light);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.philosophie__text p:first-of-type {
  font-size: 1.15rem;
  color: var(--color-text);
  line-height: 1.8;
}

.philosophie__signature {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.philosophie__signature-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--color-accent);
}

.philosophie__signature-role {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 0.3rem;
}


/* ----------------------------------------
   SERVICES
   ---------------------------------------- */
.services {
  background: var(--color-bg);
}

.services__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services__header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 4rem;
}

.services__header .section-tag {
  justify-content: center;
}

.services__header .section-tag::before {
  display: none;
}

.services__header p {
  color: var(--color-text-light);
  font-size: 1rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.service-card {
  padding: 2.5rem 2rem;
  background: var(--color-white);
  border: 1px solid transparent;
  transition: var(--transition);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  border-color: var(--color-border);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44, 40, 37, 0.06);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--color-accent-light);
  line-height: 1;
  margin-bottom: 1.2rem;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.service-card__text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}


/* ----------------------------------------
   PROCESSUS
   ---------------------------------------- */
.processus {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
}

.processus__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.processus__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 5rem;
}

.processus__header .section-tag {
  justify-content: center;
  color: var(--color-accent-light);
}

.processus__header .section-tag::before {
  background: var(--color-accent-light);
  display: none;
}

.processus__header .section-title {
  color: var(--color-text-on-dark);
}

.processus__header p {
  color: rgba(247, 245, 242, 0.6);
}

.processus__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.processus__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(184, 164, 138, 0.25);
}

.step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.step__number {
  width: 56px;
  height: 56px;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--color-accent-light);
  background: var(--color-bg-dark);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.step:hover .step__number {
  background: var(--color-accent);
  color: var(--color-white);
}

.step__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--color-text-on-dark);
}

.step__items {
  list-style: none;
  font-size: 0.82rem;
  color: rgba(247, 245, 242, 0.55);
  line-height: 1.9;
}


/* ----------------------------------------
   À PROPOS
   ---------------------------------------- */
.apropos {
  background: var(--color-white);
}

.apropos__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}

.apropos__portrait {
  width: 100%;
  height: 550px;
  background: var(--color-bg-warm);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.apropos__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apropos__portrait::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--color-accent-light);
  border-radius: 2px;
  z-index: -1;
}

.apropos__content .section-title {
  margin-bottom: 2rem;
}

.apropos__content p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.apropos__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-border);
}

.apropos__highlight-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--color-accent);
  line-height: 1;
}

.apropos__highlight-label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}


/* ----------------------------------------
   CONTACT
   ---------------------------------------- */
.contact {
  background: var(--color-bg);
  position: relative;
}

.contact__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
}

.contact__info {
  padding-top: 1rem;
}

.contact__details {
  margin-top: 2.5rem;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.contact__detail-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
}

.contact__detail-icon svg {
  width: 16px;
  height: 16px;
}

.contact__detail-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.3rem;
}

.contact__detail-value {
  font-size: 1rem;
  color: var(--color-text);
}

.contact__detail-value a {
  transition: color var(--transition);
}

.contact__detail-value a:hover {
  color: var(--color-accent);
}

/* WhatsApp Button */
.contact__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2rem;
  padding: 0.9rem 1.8rem;
  background: #25D366;
  color: white;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 400;
  transition: var(--transition);
}

.contact__whatsapp:hover {
  background: #1EBE57;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.contact__whatsapp svg {
  width: 20px;
  height: 20px;
}

/* Social Links */
.contact__social {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.contact__social a {
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  transition: var(--transition);
}

.contact__social a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

.contact__social svg {
  width: 16px;
  height: 16px;
}

/* Form */
.contact__form {
  background: var(--color-white);
  padding: 3rem;
  box-shadow: 0 4px 30px rgba(44, 40, 37, 0.05);
}

.contact__form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.contact__form > p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

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

.form-group {
  margin-bottom: 1.2rem;
}

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

.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-text);
  transition: border-color var(--transition);
  border-radius: 0;
  -webkit-appearance: none;
}

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

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239B9590' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6.5 6.5 6.5-6.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: var(--color-accent-dark);
}


/* ----------------------------------------
   NOTIFICATION (après soumission formulaire)
   ---------------------------------------- */
.notification {
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  padding: 1rem 2rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  transition: top 0.5s ease;
  max-width: 90%;
}

.notification.show {
  top: 1.5rem;
}

.notification.succes {
  background: #2C5E3F;
  color: white;
}

.notification.erreur {
  background: #8B3A3A;
  color: white;
}

.notification button {
  background: none;
  border: none;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.notification button:hover {
  opacity: 1;
}


/* ----------------------------------------
   FOOTER
   ---------------------------------------- */
.footer {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
  padding: 3rem 2rem;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer__logo span {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  font-family: var(--font-body);
  font-weight: 300;
  color: rgba(247, 245, 242, 0.5);
  margin-top: 2px;
}

.footer__copy {
  font-size: 0.75rem;
  color: rgba(247, 245, 242, 0.4);
}

.footer__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer__links a {
  font-size: 0.75rem;
  color: rgba(247, 245, 242, 0.5);
  transition: color var(--transition);
}

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


/* ----------------------------------------
   RESPONSIVE — Tablette
   ---------------------------------------- */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .processus__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .processus__steps::before {
    display: none;
  }

  .step:nth-child(4),
  .step:nth-child(5) {
    margin-top: 1rem;
  }
}


/* ----------------------------------------
   RESPONSIVE — Mobile
   ---------------------------------------- */
@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav {
    padding: 1.2rem 1.5rem;
  }

  section {
    padding: 5rem 1.5rem;
  }

  .hero {
    padding: 7rem 1.5rem 4rem;
  }

  .philosophie__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .philosophie__visual {
    height: 350px;
  }

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

  .processus__steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .apropos__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .apropos__portrait {
    height: 350px;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .contact__form {
    padding: 2rem;
  }

  .footer__inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }
}


/* ----------------------------------------
   RESPONSIVE — Petit mobile
   ---------------------------------------- */
@media (max-width: 480px) {
  .hero__title {
    font-size: 2.2rem;
  }

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