@font-face {
  font-family: "Garamontio";
  src: url("Fonts/garamontio/variable/garamontio.woff2") format("woff2-variations"),
       url("Fonts/garamontio/variable/garamontio.woff2") format("woff2"),
       url("Fonts/garamontio/variable/garamontio.ttf") format("truetype-variations"),
       url("Fonts/garamontio/variable/garamontio.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Garamontio";
  src: url("Fonts/garamontio/variable/garamontio_it.woff2") format("woff2-variations"),
       url("Fonts/garamontio/variable/garamontio_it.woff2") format("woff2"),
       url("Fonts/garamontio/variable/garamontio_it.ttf") format("truetype-variations"),
       url("Fonts/garamontio/variable/garamontio_it.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Garamontio Capo";
  src: url("Fonts/garamontio_capo/font/Garamontio Capo.woff2") format("woff2"),
       url("Fonts/garamontio_capo/font/Garamontio Capo.woff") format("woff"),
       url("Fonts/garamontio_capo/font/Garamontio Capo.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #000;
  color: #f2ede4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(90vw, 640px);
  container-type: inline-size;
  padding: 5vh 0;
}

.quote {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 3vh;
  font-family: "Garamontio", serif;
  font-style: italic;
  font-weight: 400;
  /* fallback for browsers without container query units */
  font-size: 2rem;
  /* locked to the stage's own width (same driver as the image), so the
     text and the image always shrink/grow together in lockstep */
  font-size: clamp(0.9rem, 5.6cqw, 2.25rem);
  letter-spacing: 0.02em;
  color: #f2ede4;
  text-align: center;
}

.quote_small {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3vh 0 0;
  font-family: "Garamontio", serif;
  font-style: italic;
  font-weight: 400;
  /* fallback for browsers without container query units */
  font-size: 1.2rem;
  /* same driver as .quote, scaled down to ~60% so it stays visibly
     smaller at every width instead of matching .quote 1:1 */
  font-size: clamp(0.75rem, 3.36cqw, 1.35rem);
  letter-spacing: 0.02em;
  color: #f2ede4;
  text-align: center;
}

.drop-cap {
  font-family: "Garamontio Capo", serif;
  font-style: normal;
  font-size: 3.4em;
  line-height: 1;
  padding-right: 0.12em;
  color: #f2ede4;
}

.patience {
  display: block;
  width: 100%;
  height: auto;
}
