/* --- JOST (seul le Regular est utilisé) --- */
@font-face {
  font-family: 'Jost';
  src: url('fonts/Jost-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* --- CORMORANT GARAMOND --- */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --- CAVEAT --- */
@font-face {
  font-family: 'Caveat';
  src: url('fonts/Caveat-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Caveat';
  src: url('fonts/Caveat-Bold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

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

:root {
  /* Palette principale */
  --cream:        #f4f1ea;
  --ink:          #1a1a18;
  --sage:         #7a9068;
  --sage-light:   #c8d4b8;
  --sage-pale:    #dce5d4;
  --blush:        #c4906a;
  --blush-light:  #e8d5c4;
  --muted:        #5c5854;
  --violet:       #5b52a3;
  --violet-light: #9d96d4;
  --white-card:   #faf8f4;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--ink);
  height: 100vh;
  display: flex;
  flex-direction: column;
}

#about {
  display: flex;
  flex-direction: column;
  flex: 1;
}


/* ─────────────────────────────────────────────
   2. NAVIGATION
   ───────────────────────────────────────────── */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 3rem;
  background: var(--cream);
  border-bottom: 0.5px solid rgba(122, 144, 104, 0.3);
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Bouton burger*/
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 100;
}

.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 105;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Quand le JavaScript ajoute la classe .open, on active l'affichage ET les clics */
.mobile-menu.open {
  display: flex;
  opacity: 1;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.mobile-menu ul li a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: color 0.2s;
  display: block;
}

.mobile-menu ul li a:hover {
  color: var(--sage);
}

.logo {
  font-family: 'Caveat', cursive;
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}


/* ─────────────────────────────────────────────
   3. VISIBILITÉ DES SECTIONS
   ───────────────────────────────────────────── */
.section {
  display: none;
  width: 100%;
}

.section.visible {
  display: block;
}


/* ─────────────────────────────────────────────
   4. PAGE ACCUEIL / HERO
   ───────────────────────────────────────────── */
.hero {
  padding: 3rem 3rem 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.hero-bg-floral {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.hero-bg-floral-left {
  right: auto;
  left: -12%;
  transform: scaleX(-1);
}

.hero-title-wrap {
  position: relative;
  width: fit-content;
  margin: 0 auto 3.5rem;
  z-index: 2;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 110px;
  font-weight: 700;
  line-height: 0.9;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.hero-title .italic {
  font-style: italic;
  font-weight: 300;
  color: var(--sage);
}

.doodle-overlay {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 750px;
  height: 150px;
  pointer-events: none;
  z-index: 3;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 2;
}

.hero-content-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

h1.hero-bio {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 2rem;
}

.hero-content-centered .hero-bio {
  max-width: 480px;
  text-align: center;
}

.hero-content-centered .hero-signature {
  text-align: center;
}

.tags-centered {
  justify-content: center;
}

.hero-content-centered .cta-btn {
  justify-content: center;
}

.hero-signature {
  font-family: 'Caveat', cursive;
  font-size: 48px;
  font-weight: 600;
  color: var(--violet);
  line-height: 1;
  margin-bottom: 1.5rem;
  transform: rotate(-2deg);
  display: inline-block;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border: 0.5px solid var(--sage-light);
  border-radius: 100px;
  color: var(--sage);
  background: rgba(200, 212, 184, 0.2);
}

.cta-btn {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: none;
  padding: 0;
  transition: color 0.2s;
}

.cta-btn:hover {
  color: var(--sage);
}

.cta-btn .arrow {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  transition: transform 0.2s;
}

.cta-btn:hover .arrow {
  transform: translateX(4px);
}

.hero-right {
  position: relative;
  height: 340px;
}

.deco-box {
  position: absolute;
  border: 0.5px solid var(--sage-light);
  border-radius: 12px;
  background: rgba(200, 212, 184, 0.12);
}

.deco-box-1 {
  top: 0;
  left: 40px;
  width: 200px;
  height: 260px;
}

.deco-box-2 {
  top: 30px;
  left: 260px;
  width: 140px;
  height: 180px;
  background: rgba(196, 144, 106, 0.08);
  border-color: rgba(196, 144, 106, 0.25);
}

.deco-label {
  font-family: 'Caveat', cursive;
  font-size: 15px;
  color: var(--muted);
  position: absolute;
}

.note-1 { top: 20px;    left: 60px;  transform: rotate(-3deg); }
.note-2 { top: 50px;    left: 270px; transform: rotate(4deg);  color: var(--blush); }
.note-3 { bottom: 20px; left: 20px;  transform: rotate(-1deg); font-size: 13px; }

.hero-right-doodles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}


/* ─────────────────────────────────────────────
   5. EN-TÊTES DE SECTIONS (Design / Archi / 3D)
   ───────────────────────────────────────────── */
.section-hero {
  padding: 4rem 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.section-doodle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.section-big-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 700;
  color: var(--ink);
  line-height: 0.95;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
  display: inline-block;
}

.section-big-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--sage);
}

.section-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5rem;
  border-bottom: 0.5px solid rgba(122, 144, 104, 0.25);
  margin-bottom: 2rem;
}

h2.section-desc {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.7;
}

.section-count {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: var(--violet);
}


/* ─────────────────────────────────────────────
   6. GRILLES DE PROJETS & CARTES
   ───────────────────────────────────────────── */
.projects-grid {
  padding: 0 5rem 5rem;
  display: grid;
  gap: 1.25rem;
}

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

.span2 { grid-column: span 2; }

.project-card {
  border: 0.5px solid rgba(122, 144, 104, 0.25);
  background: var(--white-card);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
  position: relative;
}

.project-card:hover {
  transform: translateY(-3px);
  border-color: var(--sage);
}

.card-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.card-thumb.wide { aspect-ratio: 16 / 7; }
.card-thumb.tall { aspect-ratio: 3 / 4; }

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

.card-doodle-label {
  font-family: 'Caveat', cursive;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

.card-doodle-label.dark {
  color: rgba(44, 44, 42, 0.35);
}

.card-year {
  position: absolute;
  top: 12px;
  right: 10px;
  font-size: 12px;
  letter-spacing: 0.1em;
  background: rgba(250, 248, 244, 0.9);
  padding: 2px 8px;
  color: var(--muted);
  border-radius: 100px;
  z-index: 2;
}

.card-body {
  padding: 0.9rem 1.1rem 1.1rem;
  border-top: 0.5px solid rgba(122, 144, 104, 0.2);
  position: relative;
}

.card-cat {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.3rem;
}

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.card-sub {
  font-size: 13px;
  color: var(--muted);
}

.card-annotation {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-family: 'Caveat', cursive;
  font-size: 14px;
  color: #554a9d;
  transform: rotate(-2deg);
}

.glb-modal-cat {
  display: block; /* S'assure que le span prend sa place */
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #506440; /* Le vert sauge passe très bien sur le fond crème */
  margin-bottom: 0.2rem;
}

.glb-modal-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--ink); /* Noir d'encre pour un contraste maximal */
}

/* ─────────────────────────────────────────────
   7. FOOTER
   ───────────────────────────────────────────── */
footer {
  border-top: 0.5px solid rgba(122, 144, 104, 0.3);
  padding: 2rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--ink);
}


/* ─────────────────────────────────────────────
   8. RESPONSIVE
   ───────────────────────────────────────────── */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .burger {
    display: flex;
  }

  .mobile-menu {
    display: none;
  }

  .mobile-menu.open {
    display: flex;
  }

  .hero {
    padding: 3rem 1.5rem 2rem;
    min-height: auto;
  }

  .hero-title {
    font-size: 64px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-right {
    display: none;
  }

  .hero-bg-floral-left {
    display: none;
  }
  
  .hero-content-centered {
    max-width: 100%;
  }

  .section-hero {
    padding: 2.5rem 1.5rem 1rem;
  }

  .section-big-title {
    font-size: 48px;
  }

  .section-meta {
    padding: 1rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .projects-grid {
    padding: 0 1.5rem 3rem;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .span2 {
    grid-column: span 1;
  }

  footer {
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}


/* ─────────────────────────────────────────────
   9. MODALES (PDF, Galerie, 3D, Vidéo)
   ───────────────────────────────────────────── */
.grid-1 { grid-template-columns: 1fr; max-width: 700px; }

.pdf-modal-overlay {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 300;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.pdf-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.pdf-modal-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem 2rem 1.5rem;
  gap: 1rem;
}

.pdf-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  border-bottom: 0.5px solid rgba(122, 144, 104, 0.3);
  padding-bottom: 1rem;
}

.pdf-tabs {
  display: flex;
  gap: 0.5rem;
}

.pdf-tab {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: 0.5px solid rgba(122, 144, 104, 0.3);
  border-radius: 100px;
  padding: 6px 18px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.pdf-tab:hover {
  color: var(--ink);
  border-color: var(--sage);
}

.pdf-tab.active {
  color: var(--ink);
  background: rgba(200, 212, 184, 0.3);
  border-color: var(--sage);
}

.pdf-modal-close {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.2s;
}

.pdf-modal-close:hover {
  color: var(--ink);
}

.pdf-viewer-wrap {
  flex: 1;
  border: 0.5px solid rgba(122, 144, 104, 0.25);
  border-radius: 8px;
  overflow: hidden;
}

.pdf-viewer-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .pdf-modal-inner {
    padding: 1rem;
  }
  .pdf-tabs {
    flex-direction: column;
    gap: 0.4rem;
  }
  .pdf-tab {
    font-size: 10px;
    padding: 5px 12px;
  }
}

#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0.5px solid rgba(122, 144, 104, 0.45);
  background: var(--cream);
  color: var(--sage);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease, color 0.2s ease;
  box-shadow: 0 2px 12px rgba(26, 26, 24, 0.08);
}

#back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#back-to-top:hover {
  background: var(--sage);
  color: var(--cream);
  border-color: var(--sage);
}

.design-pdf-card {
  cursor: pointer;
}

.design-logo-thumb {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: var(--cream);
}

.design-logo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  transition: transform 0.4s ease;
}

.design-pdf-card:hover .design-logo-thumb img {
  transform: scale(1.03);
}

.design-logo-thumb::after {
  content: 'Voir le PDF →';
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(244, 241, 234, 0.88);
  backdrop-filter: blur(4px);
  padding: 5px 18px;
  border-radius: 100px;
  border: 0.5px solid rgba(122, 144, 104, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
}

.design-pdf-card:hover .design-logo-thumb::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.video-viewer-wrap {
  flex: 1 1 0;
  min-height: 0;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #0e0e0c;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-viewer-wrap video {
  max-height: 100%;
  max-width: 100%;
  border-radius: 4px;
}

#gallery-modal {
  background: rgba(26, 26, 24, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
}

#gallery-modal .pdf-modal-inner {
  width: min(860px, 92vw);
  max-height: 90vh;
  height: auto;
  border-radius: 12px;
  border: 0.5px solid rgba(122, 144, 104, 0.25);
  background: var(--cream);
  box-shadow: 0 20px 60px rgba(26, 26, 24, 0.22);
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

#gallery-modal .pdf-modal-header {
  padding: 1.1rem 1.5rem;
  border-bottom: 0.5px solid rgba(122, 144, 104, 0.2);
  flex-shrink: 0;
}

#gallery-modal .gallery-main-wrap {
  flex-shrink: 0;
  height: 420px;
  background: #f0ece4;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#gallery-modal .gallery-main-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 0;
}

#gallery-modal .gallery-count {
  position: absolute;
  bottom: 10px;
  right: 14px;
  font-family: 'Caveat', cursive;
  font-size: 15px;
  color: rgba(26, 26, 24, 0.45);
  pointer-events: none;
}

#gallery-modal .gallery-thumbs {
  flex-shrink: 0;
  display: flex;
  gap: 8px;
  padding: 14px 1.5rem 16px;
  overflow-x: auto;
  border-top: 0.5px solid rgba(122, 144, 104, 0.18);
  scrollbar-width: thin;
  scrollbar-color: var(--sage-light) transparent;
}

#gallery-modal .gallery-thumbs::-webkit-scrollbar {
  height: 4px;
}
#gallery-modal .gallery-thumbs::-webkit-scrollbar-thumb {
  background: var(--sage-light);
  border-radius: 4px;
}

.gallery-thumb-item {
  width: 72px;
  height: 54px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  border: 1.5px solid transparent;
  opacity: 0.6;
  transition: opacity 0.2s, border-color 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.gallery-thumb-item:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.gallery-thumb-item.active {
  border-color: var(--sage);
  opacity: 1;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0.5px solid rgba(122, 144, 104, 0.4);
  background: rgba(244, 241, 234, 0.88);
  backdrop-filter: blur(4px);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s, border-color 0.2s;
}

.gallery-arrow:hover {
  background: var(--cream);
  border-color: var(--sage);
}

.gallery-arrow-prev { left: 14px; }
.gallery-arrow-next { right: 14px; }

@media (max-width: 600px) {
  #gallery-modal .gallery-main-wrap {
    height: 240px;
  }
  #gallery-modal .pdf-modal-inner {
    max-height: 95vh;
  }
  .gallery-thumb-item {
    width: 56px;
    height: 42px;
  }
}

#glb-modal .pdf-modal-inner {
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

#glb-modal .glb-viewer-wrap {
  flex: 1 1 0;
  min-height: 0;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #f0ece4;
  border: 0.5px solid rgba(122, 144, 104, 0.2);
}

#glb-modal model-viewer {
  display: block;
  width: 100%;
  height: 100%;
  --poster-color: #f0ece4;
}