/*     ====================
	   Main Desktop
	   ==================== */

		.landing-video{
  position: relative;
  width: 100%;
  min-height: calc(100vh - 110px);
  overflow: hidden;
  background: #000;
}

.landing-video__media{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.landing-video__overlay{
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 110px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  background: rgba(0,0,0,0.18);
}

.landing-video__title{
  margin: 0;
  color: #fff;
  font-family: var(--font-base);
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
}

@media (max-width: 768px){
  .landing-video,
  .landing-video__overlay{
    min-height: calc(100svh - 76px);
  }

  .landing-video__title{
    font-size: clamp(2.6rem, 12vw, 4.5rem);
  }
}

		/* Hero */

		.hero-image {
		  width: 100%;
		  aspect-ratio: 16 / 9; /* or use 3/2, 4/3, etc., depending on your image */
		  overflow: hidden;
		  position: relative;
		}

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

		/* Sections */
		.about-section,
		.card-section,
		.record-section {
		  text-align: center;
		  padding: 3rem 1rem;
		  background-color: var(--bg-light);
		}

		/* ===============================
   FIXED ABOUT UNDERLAY + COVERING SECTIONS
   =============================== */

		/* Fixed hero (underlay) */
		.about-fixed{
		  position: relative;
		  width: 100%;
		  min-height: calc(100vh - 110px);
		  z-index: 1;

		  background: var(--bg-light);
		  overflow: hidden;

		  display: grid;
		  place-items: center;
		  text-align: center;
		  padding: 7rem 1rem 5rem;
		}

		/* Content wrapper so it stays nicely centered */
		.about-inner {
		  width: min(720px, 100%);
		  margin: 0 auto;
		}

		/* Everything after sits above and “covers” the fixed about */
		.page-stack{
		  position: relative;
		  z-index: 1;
			margin-top: 0;
			background: #fff;
		}

		

		/* ===============================
		   ABOUT TYPOGRAPHY / LOGO
		   =============================== */

		.about-fixed h2{
		  color: #f18b00;
		  margin: 0 0 3rem;
		  font-size: clamp(1.8rem, 6vw, 2.1rem);
		  font-weight: 700;
		  line-height: 1.3;
		}

		

		.about-fixed .logo{
		  margin-top: 2.4rem;
		  text-align: center;
		}

		.about-logo{
		  display: block;
		  margin: 0 auto 1.5rem;
		  height: clamp(100px, 10vw, 120px);
		  width: auto;
		}

	




/* ===============================
   NAV BUBBLES — DESKTOP ONLY (STABLE)
   - Rest: clean image (no dark overlay / no filter)
   - Hover: +10% bigger, +20% brighter
   - Text perfectly aligned (clean crossfade)
   - No responsive rules
   - No cyclic "jump" (no animating CSS vars)
   =============================== */

		.nav-bubbles-section{
		  background:#fff;
		  padding: 3rem 1rem 2rem;
		  overflow:hidden;
		}

		.nav-bubbles{
		  position:relative;
		  max-width:1100px;
		  height:660px;
		  margin:0 auto;
		}

		/* anchors */
		.nav-bubble{
		  --size: 280px;
		  --x: 50%;
		  --y: 50%;
		  --orbit: 10px;
		  --dur: 12s;
		  --phase: 0s;
		  --tilt: 0deg;

		  /* image per bubble set below */
		  --bubble-bg: none;

		  position:absolute;
		  left:var(--x);
		  top:var(--y);
		  width:var(--size);
		  height:var(--size);

		  transform:translate(-50%, -50%) rotate(var(--tilt));
		  text-decoration:none;
		  color:inherit;
		  z-index:1;
		  -webkit-tap-highlight-color:transparent;
		}

		/* triangle layout */
		.nav-bubble.b1{ --x:22%; --y:52%; --dur:13s;   --phase:-2s; --tilt:-2deg; }
		.nav-bubble.b2{ --x:52%; --y:30%; --dur:11.5s; --phase:-5s; --tilt: 1deg; }
		.nav-bubble.b3{ --x:78%; --y:64%; --dur:14s;   --phase:-1s; --tilt: 2deg; }

		/* orbit wrapper */
		.nav-bubble .orbit{
		  position:absolute;
		  inset:0;
		  display:grid;
		  place-items:center;
		  animation: orbit var(--dur) linear infinite;
		  animation-delay: var(--phase);
		}

		/* bubble card (ONLY hover transform here) */
		.bubble-card{
		  position:relative;
		  width:100%;
		  height:100%;
		  border-radius:999px;
		  overflow:hidden;

		  /* glass */
		  background: rgba(255,255,255,0.12);
		  backdrop-filter: blur(10px);
		  border: 1px solid rgba(0,0,0,0.06);

		  box-shadow:
			0 18px 40px rgba(0,0,0,0.12),
			0  6px 16px rgba(0,0,0,0.10);

		  transition:
			transform 1s cubic-bezier(.22,1,.36,1),
			box-shadow 1s ease,
			filter 1s ease,
			background 1s ease,
			border-color 1s ease;
		}

		/* inner layer: handles breathing + background layers (stable everywhere) */
		.bubble-inner{
		  position:absolute;
		  inset:0;
		  border-radius:inherit;
		  overflow:hidden;
		  transform: scale(1);
		  animation: breatheInner 5.5s ease-in-out infinite;
		}

		/* background image (clean at rest) */
		.bubble-inner::before{
		  content:"";
		  position:absolute;
		  inset:0;
		  background: var(--bubble-bg) center/cover no-repeat;
		  z-index:0;
		}

		/* dark overlay ONLY on hover for readability */
		.bubble-inner::after{
		  content:"";
		  position:absolute;
		  inset:0;
		  z-index:1;
		  background:
			radial-gradient(120% 120% at 50% 30%,
			  rgba(0,0,0,0.10) 0%,
			  rgba(0,0,0,0.26) 60%,
			  rgba(0,0,0,0.42) 100%);
		  opacity:0;
		  transition: opacity .35s ease;
		}

		/* text: perfectly aligned stack (no offset differences) */
		.bubble-title,
		.bubble-sub{
		  position:absolute;
		  inset:0;
		  display:grid;
		  place-items:center;
		  text-align:center;

		  width:100%;
		  padding:0 10%;
		  margin:0;

		  color:#fff;
		  text-shadow:0 6px 18px rgba(0,0,0,.35);

		  z-index:2;
		  opacity:0;
		  transition: opacity .6s ease;
		  pointer-events:none;
		}

		.bubble-title{
		  font-family: var(--font-base);
		  font-weight: 900;
		  letter-spacing: .02em;
		  font-size: 1.6rem;
		  opacity: 1; /* visible at rest */
		}

		.bubble-sub{
		  font-family: var(--font-script);
		  font-weight: 800;
		  font-size: 1.4rem;
		}

		/* hover behavior */
		.nav-bubble:hover{ z-index:5; }
		.nav-bubble:hover .orbit{ animation-play-state: paused; }

		/* pause breathing on hover (prevents any motion while hovered) */
		.nav-bubble:hover .bubble-inner{ animation-play-state: paused; }

		.nav-bubble:hover .bubble-card{
		  transform: scale(1.1);       /* +10% bigger */
		  filter: brightness(1.2);     /* +20% brighter */
		  background: rgba(255,255,255,0.22);
		  border-color: rgba(255,255,255,0.22);
		  backdrop-filter: blur(12px);

		  box-shadow:
			0 28px 80px rgba(0,0,0,0.18),
			0 12px 28px rgba(0,0,0,0.12);
		}

		.nav-bubble:hover .bubble-inner::after{ opacity:1; } /* overlay on hover */

		.nav-bubble:hover .bubble-title{ opacity:0; }
		.nav-bubble:hover .bubble-sub{ opacity:1; }

		/* animations */
		@keyframes orbit{
		  0%   { transform: translate( var(--orbit), 0); }
		  25%  { transform: translate(0, var(--orbit)); }
		  50%  { transform: translate(calc(var(--orbit) * -1), 0); }
		  75%  { transform: translate(0, calc(var(--orbit) * -1)); }
		  100% { transform: translate( var(--orbit), 0); }
		}

		/* REAL transform animation (smooth in all browsers) */
		@keyframes breatheInner{
		  0%   { transform: scale(1); }
		  50%  { transform: scale(1.02); }
		  100% { transform: scale(1); }
		}

		/* reduced motion */
		@media (prefers-reduced-motion: reduce){
		  .nav-bubble .orbit,
		  .bubble-inner{ animation: none !important; }
		}

		/* set images */
		.nav-bubble.b1{ --bubble-bg: url("../images/index/produits.png"); }
		.nav-bubble.b2{ --bubble-bg: url("../images/index/fabrication.png"); }
		.nav-bubble.b3{ --bubble-bg: url("../images/index/histoire.png"); }




/* ===== Circularity section (normal, no overlap hacks) ===== */
.circularity-section{
  background: var(--bg-light);
  padding: 6rem 1rem 3rem;
  text-align: center;
  position: relative;
  z-index: 5;
}

/* ===== Seam section: top half orange, bottom half beige (perfect 50/50) ===== */
.photo-seam{
  /* tune these 2 knobs */
  --seam-height: 520px;                    /* total height of the seam block */
  --photo-width: clamp(400px, 60vw, 720px);

  position: relative;
  z-index: 6;
  height: var(--seam-height);

  /* THIS is the magic: 50% orange, 50% beige */
  background: linear-gradient(
    to bottom,
     var(--bg-light) 0%,
     var(--bg-light) 50%,
    #FFFF 50%,
    #FFFF 100%
  );

  display: grid;
  place-items: center;
  overflow: visible;
}

/* Center the photo exactly on the 50/50 line */
.photo-seam-inner{
  width: var(--photo-width);
  position: relative;
  top: 0;                 /* stays centered */
}

/* Photo styling (reuse your current look) */
.photo-seam .circularity-photo{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  transform: rotate(-2deg);

  box-shadow:
    20px 30px 12px rgba(0,0,0,0.18),
    0px 0px 5px rgba(0,0,0,0.15);
}

/* ===== Record section: keep opaque so fixed-about never peeks through ===== */
.record-section{
  background: #FFFF;
  text-align: center;
  padding: 4rem 1rem 5rem;
  position: relative;
  z-index: 7;
}

.record-section h2 {
  margin: 0;              /* remove default spacing */
}

.record-section h2 + h2 {
  margin-top: 0rem;     /* control space between 2024 and Record battu */
}



/* ===============================
   CURIOUS BUTTON – Animated
   =============================== */

.curious-button{
  position: relative;
  width: clamp(140px, 15vw, 180px);
  height: clamp(140px, 15vw, 180px);
  margin: 6rem auto;

  display: flex;
  align-items: center;
  justify-content: center;

  transform-origin: 50% 60%;
  animation: curiousBreathe 4.5s ease-in-out infinite;
  cursor: pointer;
  z-index: 10;
}

/* Remove link underline if wrapped in <a> */
.curious-button,
.curious-button:visited,
.curious-button:hover,
.curious-button:active{
  text-decoration: none;
}


/* Inner wrapper (needed for spring effect) */
.curious-button-inner{
  position: relative;
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  transform: scale(1);
}


/* Hover spring pulse */
.curious-button:hover .curious-button-inner{
  animation: curiousSpring 0.65s cubic-bezier(.22,1.28,.4,1) both;
}

/* Pause breathing while hovering */
.curious-button:hover{
  animation-play-state: paused;
}


/* Decorative blob */
.curious-button .button-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 0;
  pointer-events: none;
}


/* Text perfectly centered */
.curious-button .script-button{
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  color: #FFF;
  font-family: var(--font-script);
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  line-height: 1.25;

  pointer-events: none;
}


/* =====================
   ANIMATIONS
   ===================== */

/* Breathing (keeps natural 4deg rotation base) */
@keyframes curiousBreathe{
  0%   { transform: rotate(4deg) scale(.92); }
  50%  { transform: rotate(8deg) scale(1.08); }
  100% { transform: rotate(4deg) scale(.92); }
}

/* Spring / water-drop effect */
@keyframes curiousSpring{
  0%   { transform: scale(1.05); }
  35%  { transform: scale(1.14); }
  60%  { transform: scale(1.08); }
  80%  { transform: scale(1.11); }
  100% { transform: scale(1.09); }
}


/* Accessibility */
@media (prefers-reduced-motion: reduce){
  .curious-button{
    animation: none;
  }
  .curious-button:hover .curious-button-inner{
    animation: none;
    transform: scale(1.05);
  }
}

	.highlight {
	  color: var(--brand-orange);
	  font-weight: bold;
	}


/* ===================================================
   Responsive Main Layout (≤768px)
   =================================================== */

	@media (max-width: 768px) {
	  /* ===== Hero Image ===== */
	  .hero-image {
		aspect-ratio: 3 / 4; /* plus vertical, mieux pour mobile */
	  }

	  /* ===== About Section ===== */
	   .about-logo {
		  width: auto;
		  display: block;
		  margin: 0 auto 1.5rem;
		  height: clamp(70px, 10vw, 90px);
		}
		
	  .about-section {
		padding: 2.5rem 1rem;
	  }

	  .about-section h2 {
		font-size: 1.6rem;
		margin-bottom: 2rem;
	  }

	  .about-section p {
		margin-bottom: 1.5rem;
		
	  }

	  /* ===== Card Section ===== */
	  .card-grid {
		flex-direction: column;
		align-items: center;
		gap: 2rem;
	  }

	  .card {
		width: 90%;
		height: auto;
		border-radius: 3rem 3rem 2rem 2rem;
	  }

	  .card-img {
		height: 220px;
	  }

	  .card-text h3 {
		font-size: 1.2rem;
	  }

	 

	  /* ===== Circularity Section ===== */
	  .circularity-section{
		  padding: 3rem 1rem 2.5rem;   /* was 15rem -> removes empty orange wall */
		}

	  .curious-button{
		  width: 154px;                /* 140 * 1.1 */
		  height: 154px;
		  margin: 3rem auto 1.5rem;    /* tighter than 6rem */
		}

	  .circularity-photo {
		width: 85%;
		margin-top: 3rem;
	  }

	  .circularity-photo-wrapper {
		margin-top: -200px;
	  }

	  /* ===== Record Section ===== */
	  .record-section {
		padding: 2.5rem 1rem;
	  }

	  .record-section h2 {
		font-size: clamp(2.7rem, 5vw, 2.9rem); /* à harmoniser */
		  font-weight: 800;
		  line-height: 1.3;
		  color: var(--text-color);
		  text-align: center;
		  margin-bottom: 1.2rem;
	  }
		
		.record-section .script-title{
  color: var(--brand-orange);
			
}


	  .record-section p {
		margin: 2rem ;
	  }
		
/* ===== Mobile seam: 3/4 portrait, stronger tilt, nicer shadow ===== */

.photo-seam{
  height: 520px; /* adjust if needed */
  background: linear-gradient(
    to bottom,
    var(--bg-light) 0%,
    var(--bg-light) 50%,
    #fff 50%,
    #fff 100%
  );
  display: grid;
  place-items: center;
  overflow: visible;
  z-index: 6;
}

.photo-seam-inner{
  width: min(88vw, 420px);
  aspect-ratio: 3 / 4;   /* full 3:4 portrait */
  position: relative;
}

.photo-seam .circularity-photo{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;

  border-radius: 6px;

  transform: rotate(-5deg);   /* stronger tilt */

  box-shadow: 
    20px 30px 12px rgba(0,0,0,0.18),
    0px 0px 5px rgba(0,0,0,0.15);
}

		

	}

		

/* ====================
   Responsive overrides
   ==================== */
/* Tablet + Mobile → ALWAYS single column */
@media (max-width: 1024px) {

  .nav-bubbles{
    height: auto;
    display: flex;
    flex-direction: column;   /* ← force vertical */
    align-items: center;
    gap: 32px;
    padding: 0 1rem 3rem;
  }

  .nav-bubble{
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: min(280px, 85vw);
    height: auto;
    aspect-ratio: 1 / 1;
  }
}



@media (max-width: 768px) {
  /* Safer viewport sizing for mobile browsers */
  .about-fixed{
    height: 100vh;
  }
  .page-stack{
    margin-top: 100vh;
  }
	}


/* LOCAL FIX: more breathing room for the circularity headline section */
.circularity-section{
  padding-top: 5rem;
  padding-bottom: 4rem;
}

/* LOCAL FIX: prevent rotated photo from being clipped + add spacing before 2024 */
@media (max-width: 768px){
  .photo-seam{
    height: 620px;        /* more room for rotation/shadow */
    padding-bottom: 3rem; /* creates space before the record section */
  }

  /* keep the image visually higher so bottom isn't cut */
  .photo-seam-inner{
    transform: translateY(-10px);
  }
}

/* LOCAL FIX: keep 2024 big, but control the scripted subtitle size */
@media (max-width: 768px){
  .record-section .script-title{
    font-size: clamp(2rem, 7vw, 2.6rem);
    line-height: 1.05;
    margin-top: 0.5rem;
  }

  /* optional: tighten spacing so it matches your top block */
  .record-section h2{
    margin-bottom: 0.5rem;
  }
}

/* LOCAL FIX: let the tilted image sit above the record section */
.photo-seam{
  position: relative;
  z-index: 8;   /* higher than record-section */
}

.record-section{
  position: relative;
  z-index: 7;
}

/* LOCAL FIX: control record typography hierarchy */

/* 2024 */
.record-section > h2:first-of-type{
  font-size: clamp(2.7rem, 5vw, 2.9rem);
  font-weight: 800;
}

/* Script subtitle — match top subtitle scale */
.record-section .script-title{
  font-size: clamp(1.8rem, 4.5vw, 2.2rem);
  line-height: 1.05;
  color: var(--brand-orange);
}

/* LOCAL FIX: slightly smaller circularity photo on mobile */
@media (max-width: 768px){

  .photo-seam-inner{
    width: min(78vw, 360px);  /* smaller than 88vw / 420px */
  }

}

/* ===================================================
   MOBILE (≤768): 3 bubbles visible, but NOT stretched
   Header height = 76px (your body padding-top)
   =================================================== */
@media (max-width: 768px){

  .nav-bubbles-section{
    /* occupy exactly the visible area under the fixed header */
    min-height: calc(100svh - 76px);
    padding: 1rem 1rem;
    display: flex;
    align-items: center;
  }

  .nav-bubbles{
    /* center the stack instead of spreading to extremes */
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;              /* key change */
    align-items: center;
    gap: clamp(18px, 3vh, 34px);          /* controlled spacing */
    padding: 0;
  }

  .nav-bubble{
    /* size based on viewport height, but capped so it doesn't feel huge */
    --size: clamp(150px, 22svh, 190px);
    width: var(--size);
    height: var(--size);

    position: relative;
    left: auto;
    top: auto;
    transform: none;
  }

  /* optional: slightly calmer motion on small screens */
  .nav-bubble{ --orbit: 6px; }
}


/* ===============================
   FULL HEIGHT NAV GRID
   =============================== */

.nav-grid-section{
  background: #fff;
  position: relative;
  z-index: 10;

  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  height: 100vh;   /* KEY: full screen height */
  padding: 0;
}

.nav-grid{
  height: 100%;    /* fill section height */
  width: 100%;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

/* Each card fills vertical space */
.nav-card{
  position: relative;
  height: 100%;   /* fill grid cell */
  overflow: hidden;
}

/* Image fills entire card */
.nav-card img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;

  transition: transform .7s cubic-bezier(.22,1,.36,1);
}

.nav-card:hover img{
  transform: scale(1.08);
}

/* Center text vertically */
.nav-card-overlay{
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 20px;

  background: radial-gradient(120% 120% at 50% 25%,
    rgba(0,0,0,0.10) 0%,
    rgba(0,0,0,0.35) 60%,
    rgba(0,0,0,0.55) 100%);
}

.nav-card-title,
.nav-card-sub{
  margin: 0;
  color: #fff;
  text-shadow: 0 8px 22px rgba(0,0,0,.35);
}

.nav-card-sub{
  margin-top: .8rem;
}


/* NAV GRID — typography + no dark overlay */
.nav-card-overlay{
  background: none !important;   /* removes the dark layer */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem;                     /* spacing between title + subtitle */
}

/* kill default h2 margins so vertical centering is true */
.nav-card-overlay h2{
  margin: 0 !important;
}

/* keep readability without dark overlay */
.nav-card-title,
.nav-card-sub{
  color: #fff;
  text-shadow: 0 10px 26px rgba(0,0,0,.35);
}


/* NAV GRID — controlled h2 sizing (smaller than global) */

.nav-card-overlay .h2_title_white{
  font-size: clamp(1.1rem, 3vw, 5rem);
  line-height: 1.2;
}

.nav-card-overlay .script-title-white{
  font-size: clamp(1rem, 1.8vw, 2.8rem);
  line-height: 1;
}

/* ===============================
   NAV GRID — restore hover effect
   =============================== */

.nav-card{
  cursor: pointer;
}

.nav-card img{
  transition: transform .7s cubic-bezier(.22,1,.36,1);
  transform: scale(1);
}

.nav-card:hover img{
  transform: scale(1.08);
}

/* Optional subtle lift */
.nav-card:hover{
  z-index: 2;
}

/* ===============================
   Bottom Full-Width Image — 16:9
   =============================== */

.bottom-full-image{
  position: relative;

  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  aspect-ratio: 16 / 9;   /* KEY */
  overflow: hidden;
  line-height: 0;
}

.bottom-full-image img{
  width: 100%;
  height: auto;
  object-fit: cover;      /* fills 16:9 frame */
  object-position: center;
  display: block;
}

@media (max-width: 768px){

  .bottom-full-image{
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    aspect-ratio: 4 / 5 !important;
    height: auto !important;       /* ensure aspect-ratio drives height */
    overflow: hidden !important;
  }

  .bottom-full-image img{
    width: 100% !important;
    height: 100% !important;       /* KEY: fill the 4:5 box */
    object-fit: cover !important;  /* KEY: crop to 4:5 */
    object-position: center top !important;
    display: block;
  }
	
	  .curious-button{
    margin-top: 4rem;     /* space above */
    margin-bottom: 4rem;    /* tighter below */
  }


}

@media (max-width: 768px){
  .about-fixed{
    min-height: 80vh !important;
    height: auto !important;
    padding: 0 !important;
  }

  .page-stack{
    margin-top: 0 !important;
  }

  .about-fixed .logo{
    margin-top: 0 !important;
  }

  .about-logo{
    margin: 0 auto 0.5rem !important;
    height: clamp(56px, 9vw, 72px);
  }


}


@media (max-width: 768px){

  .nav-bubble{
    --size: clamp(165px, 24.2svh, 209px); /* about 10% bigger than current */
    width: var(--size);
    height: var(--size);
  }

  .nav-bubble.b1,
  .nav-bubble.b3{
    transform: translateX(25%);
  }

  .nav-bubble.b2{
    transform: translateX(-25%);
  }
}

@media (max-width: 768px){
  .curious-button .script-button{
    font-size: clamp(1.2rem, 4.2vw, 1.6rem);
  }
}

.index-fullframe-image{
  position: relative;

  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  height: 100vh;
  overflow: hidden;
  line-height: 0;
}

.index-fullframe-image img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px){
  .index-fullframe-image{
    height: 100svh;
  }

  .index-fullframe-image img{
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 768px){

  .landing-video,
  .about-fixed,
  .nav-bubbles-section,
  .index-fullframe-image,
  .circularity-section,
  .bottom-full-image{
    min-height: calc(100svh - 76px) !important;
  }

  .landing-video,
  .about-fixed,
  .nav-bubbles-section,
  .circularity-section{
    display: grid;
    place-items: center;
  }

  .index-fullframe-image,
  .bottom-full-image{
    aspect-ratio: auto !important;
    height: calc(100svh - 76px) !important;
  }

  .index-fullframe-image img,
  .bottom-full-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}
