/* ==========================================================================
   OFFICIAL LOCAL FONT FACES: THE SEASONS
   ========================================================================== */
@font-face {
  font-family: 'The Seasons';
  src: url('assets/fonts/The Seasons Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'The Seasons';
  src: url('assets/fonts/The Seasons Light Italic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'The Seasons';
  src: url('assets/fonts/The Seasons Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'The Seasons';
  src: url('assets/fonts/The Seasons Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'The Seasons';
  src: url('assets/fonts/The Seasons Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'The Seasons';
  src: url('assets/fonts/The Seasons Bold Italic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root {
  /* Tema editorial claro — experiência padrão */
  --bg-primary: #f7f7f5;
  --bg-secondary: #efefec;
  --bg-card: #e7e7e3;
  --text-primary: #161310;
  --text-secondary: #55524e;
  --text-muted: #65625e;
  --accent-gold: #C8A97D;
  --accent-gold-glow: rgba(200, 169, 125, 0.25);
  --border-light: rgba(22, 19, 16, 0.12);

  /* Typography System */
  --font-seasons: 'The Seasons', 'Cormorant Garamond', Georgia, serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'Space Mono', monospace;

  /* Transitions & Physics */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-smooth: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-fast: 0.3s var(--ease-out-expo);
  --transition-medium: 0.6s var(--ease-out-expo);
  --transition-slow: 1s var(--ease-out-expo);

  /* Layout Boundaries */
  --container-max: 1520px;
  --nav-height: 90px;
}

[data-theme="dark"] {
  --bg-primary: #161310;
  --bg-secondary: #1f1b17;
  --bg-card: #26221d;
  --text-primary: #ecebeb;
  --text-secondary: #99958f;
  --text-muted: #aaa59e;
  --border-light: rgba(236, 235, 235, 0.12);
  color-scheme: dark;
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Hide default browser scrollbars completely (Awwwards Clean Aesthetic) */
::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

html {
  color-scheme: light;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: initial;
  overflow-x: clip;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

body {
  overflow-x: clip;
  background-color: var(--bg-primary);
  min-height: 100vh;
  position: relative;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

body.is-loading {
  overflow: hidden;
}

/* General Typography & Utilities */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.05;
  color: var(--text-primary);
}

p {
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.mono-badge, .mono-tag {
  font-family: var(--font-mono);
  font-size: clamp(0.7rem, 0.8vw, 0.85rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.gold-accent {
  color: var(--accent-gold);
}

/* ==========================================================================
   PRELOADER CINEMATOGRÁFICO — CLEAN EDITORIAL REVEAL
   ========================================================================== */
.preloader-cinematic {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background-color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  will-change: transform;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.preloader-brand {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.preloader-name,
.preloader-surname {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--text-primary);
  text-transform: uppercase;
  display: inline-flex;
}

.preloader-surname {
  font-style: italic;
  color: var(--text-primary);
  letter-spacing: 0.18em;
}

.char-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.char {
  display: inline-block;
  color: var(--text-primary);
  transform: translateY(110%);
  will-change: transform;
}

.preloader-divider {
  display: block;
  width: 40px;
  height: 1px;
  background-color: rgba(200, 169, 125, 0.4);
  transform: scaleX(0);
  transform-origin: center;
  will-change: transform;
}

.preloader-tagline {
  font-family: var(--font-mono);
  font-size: clamp(0.65rem, 0.9vw, 0.8rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  transform: translateY(10px);
  will-change: opacity, transform;
}

/* ==========================================================================
   NAVBAR STYLES
/* ==========================================================================
   NAVBAR — ESTRUTURA EXATA CRISTINA GÓMEZ (SEM FUNDO + MIX-BLEND DIFFERENCE)
   ========================================================================== */
.cg-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.6rem 2.5rem;
  background: transparent;
  border: none;
  mix-blend-mode: normal;
  pointer-events: none;
}

.cg-navbar-grid {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1.3fr 1.6fr 1fr;
  gap: 1.5rem;
  align-items: start;
  pointer-events: auto;
}

.cg-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cg-label {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.cg-value,
.cg-nav-links,
.cg-theme-toggle {
  font-family: var(--font-sans);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
}

.cg-nav-links,
.cg-theme-toggle {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-wrap: wrap;
}

.cg-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.cg-link:hover {
  opacity: 0.7;
}

.cg-link:focus-visible,
.cg-theme-btn:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 4px;
}

.cg-theme-btn {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.cg-theme-btn.active {
  color: var(--text-primary);
  font-weight: 700;
  text-decoration: none;
}

.cg-theme-btn:hover {
  opacity: 0.8;
}

/* Premium Dual-Layer Rolling Text CTA Buttons */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.4s var(--ease-out-expo), background-color 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  border: 1px solid var(--text-primary);
}

.btn-primary:hover {
  border-color: var(--accent-gold);
  background-color: var(--text-primary);
  box-shadow: 0 10px 30px rgba(200, 169, 125, 0.25);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(231, 228, 220, 0.25);
}

.btn-secondary:hover {
  border-color: var(--accent-gold);
  background-color: rgba(200, 169, 125, 0.05);
  box-shadow: 0 10px 30px rgba(200, 169, 125, 0.15);
}

.btn-text-wrap {
  position: relative;
  display: block;
  height: 1.25em;
  line-height: 1.25em;
  overflow: hidden;
}

.btn-text {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
  white-space: nowrap;
}

.btn-text-2 {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}

.btn-primary .btn-text-2 {
  color: var(--accent-gold);
}

.btn-secondary .btn-text-2 {
  color: var(--accent-gold);
}

.btn-cta:hover .btn-text-1 {
  transform: translateY(-100%);
}

.btn-cta:hover .btn-text-2 {
  transform: translateY(-100%);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 0.5rem;
}

.mobile-toggle span {
  width: 24px;
  height: 1px;
  background-color: var(--text-primary);
  transition: transform 0.3s;
}

/* ==========================================================================
   HERO SECTION STYLES (CRISTINA GÓMEZ MONUMENTAL CLEAN — 100VH NO SCROLL)
   ========================================================================== */
.hero-section {
  position: relative;
  height: 100vh;
  height: 100svh;
  max-height: 100vh;
  max-height: 100svh;
  padding-top: calc(var(--nav-height) + 2.5rem);
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}



.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

.hero-title-container {
  text-align: center;
  padding: 0;
  margin-top: 2rem;
}

.hero-headline {
  font-size: clamp(1.4rem, 3.4vw, 3.8rem);
  letter-spacing: -0.015em;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  width: 100%;
}

.line-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 0.14em 0 0.2em;
  margin: -0.14em 0 -0.2em;
}

.line-inner {
  display: inline-block;
  opacity: 1;
  overflow: visible;
}

.js-enabled:not(.hero-ready) .line-inner {
  opacity: 0;
}

.js-enabled:not(.hero-ready) .hero-portrait-card {
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 88px, 0) scale(0.94);
}

.serif-italic {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-gold);
  text-transform: uppercase;
}

/* Center Architect Portrait Card — Cristina Gómez Signature */
.hero-portrait-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem 0;
}

.hero-portrait-card {
  position: relative;
  width: clamp(190px, 22vw, 240px);
  height: clamp(240px, 30vh, 300px);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 1px rgba(255, 255, 255, 0.15);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
  z-index: 5;
  will-change: transform, opacity;
}

.hero-portrait-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.85), 0 0 1px rgba(255, 255, 255, 0.3);
}

.portrait-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(105%) grayscale(20%);
  transition: filter 0.6s ease, transform 0.8s var(--ease-out-expo);
}

.hero-portrait-card:hover .portrait-img {
  filter: contrast(100%) grayscale(0%);
  transform: scale(1.06);
}

.portrait-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 19, 16, 0) 40%, rgba(22, 19, 16, 0.85) 100%);
  pointer-events: none;
}

.portrait-badge {
  position: absolute;
  bottom: 1rem;
  left: 0.8rem;
  right: 0.8rem;
  z-index: 3;
  text-align: center;
}

.portrait-badge .mono-tag {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(236, 235, 235, 0.85);
}

/* Monumental Base Name Title — Cormorant Garamond, Perfect Base Scale, Zero Clipping */
.hero-name-container {
  text-align: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
  overflow: visible;
  margin-bottom: 0.5rem;
}

.hero-monumental-name {
  font-family: var(--font-seasons);
  font-size: clamp(2.8rem, min(10.2vw, 16svh), 10.5rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.92;
  color: var(--text-primary);
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
  width: 100%;
  display: block;
  overflow: visible;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   SECTION 2: MANIFESTO / ABOUT INTRO (CRISTINA GÓMEZ SIGNATURE STYLE)
   ========================================================================== */
.manifesto-section {
  position: relative;
  height: 200vh;
  height: 200svh;
  max-height: none;
  background-color: var(--bg-primary);
}

.manifesto-stage {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  padding: calc(var(--nav-height) + 1.5rem) 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-primary);
  box-sizing: border-box;
  overflow: hidden;
}

.manifesto-container {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  place-items: center;
  perspective: 1000px;
}

.manifesto-block {
  grid-area: 1 / 1;
  width: 100%;
  margin: 0 auto;
  pointer-events: none;
}

.manifesto-text {
  font-family: var(--font-serif);
  max-width: 1240px;
  margin: 0 auto;
  font-size: clamp(2.35rem, 3.8vw, 4rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  text-align: center;
  text-wrap: balance;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.manifesto-line-clip {
  display: block;
  overflow: hidden;
}

.manifesto-line {
  display: block;
  color: var(--text-primary);
  transform: translate3d(0, -140%, 0);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.manifesto-block-2 .manifesto-line {
  transform: translate3d(0, 140%, 0);
}

.manifesto-block.is-active .manifesto-line {
  transform: translate3d(0, 0, 0);
  transition-delay: 50ms;
}

.manifesto-meta,
.manifesto-footer {
  position: absolute;
  left: 2.5rem;
  right: 2.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.manifesto-meta {
  top: calc(var(--nav-height) + 2rem);
}

.manifesto-footer {
  bottom: 2.25rem;
  gap: 2rem;
}

.manifesto-progress {
  position: relative;
  display: block;
  width: min(28vw, 360px);
  height: 1px;
  overflow: hidden;
  background: var(--border-light);
}

.manifesto-progress-bar {
  position: absolute;
  inset: 0;
  background: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

/* 3D Deck Fan Container — Compact for 100vh fit */
.hero-deck-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-deck-3d {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.deck-card {
  position: absolute;
  width: 220px;
  height: 275px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease, opacity 0.4s ease, box-shadow 0.6s ease;
  cursor: pointer;
  will-change: transform;
  opacity: 0;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;

}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.8s var(--ease-out-expo);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 13, 11, 0) 30%, rgba(13, 13, 11, 0.9) 100%);
  transition: opacity 0.4s ease;
}

.card-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 3;
}

.mono-tag {
  color: var(--text-primary);
  font-size: 0.75rem;
  background: rgba(13, 13, 11, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  border: 1px solid rgba(231, 228, 220, 0.2);
  transition: all 0.4s var(--ease-out-expo);
  display: block;
  text-align: center;
  letter-spacing: 0.06em;
}

/* Card Fan Base Positions — Leque elegante */
.card-left {
  transform: translateX(-220px) translateY(20px) rotateZ(-14deg);
  transform-origin: 50% 85%;
  z-index: 1;
  filter: brightness(0.75);
}

.card-center {
  transform: translateX(0) translateY(-10px) rotateZ(0deg);
  transform-origin: 50% 85%;
  z-index: 3;
  filter: brightness(1);
}

.card-right {
  transform: translateX(220px) translateY(20px) rotateZ(14deg);
  transform-origin: 50% 85%;
  z-index: 2;
  filter: brightness(0.75);
}

/* Dim unhovered cards when one card is focused */
.hero-deck-3d:has(.deck-card:hover) .deck-card:not(:hover) {
  opacity: 0.45;
  filter: brightness(0.45);
}

/* Card Hover Interactions — Smooth levitation & highlight */
.card-left:hover {
  transform: translateX(-235px) translateY(-35px) rotateZ(0deg) scale(1.08) !important;
  z-index: 10 !important;
  filter: brightness(1.15) !important;
  opacity: 1 !important;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85), 0 0 35px var(--accent-gold-glow), 0 0 1px rgba(200, 169, 125, 0.5);
}

.card-center:hover {
  transform: translateX(0) translateY(-40px) rotateZ(0deg) scale(1.08) !important;
  z-index: 10 !important;
  filter: brightness(1.15) !important;
  opacity: 1 !important;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85), 0 0 35px var(--accent-gold-glow), 0 0 1px rgba(200, 169, 125, 0.5);
}

.card-right:hover {
  transform: translateX(235px) translateY(-35px) rotateZ(0deg) scale(1.08) !important;
  z-index: 10 !important;
  filter: brightness(1.15) !important;
  opacity: 1 !important;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85), 0 0 35px var(--accent-gold-glow), 0 0 1px rgba(200, 169, 125, 0.5);
}

.deck-card:hover .card-img {
  transform: scale(1.14);
}

.deck-card:hover .mono-tag {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
  background: rgba(13, 13, 11, 0.9);
  box-shadow: 0 0 15px var(--accent-gold-glow);
}

/* Hero Footer Bar */
.hero-footer-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  opacity: 0;
}

.summary-text {
  font-size: 1.1rem;
  max-width: 540px;
  color: var(--text-secondary);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3rem;
}

.scroll-indicator {
  display: flex;
  align-items: center;
  gap: 0.6rem;

}

.scroll-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.scroll-arrow {
  font-size: 1.1rem;
  color: var(--accent-gold);
  animation: bounceArrow 2s infinite ease-in-out;
}

@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ==========================================================================
   RESPONSIVE ADAPTATION (BREAKPOINTS)
   ========================================================================== */

/* Compact desktop / tablet */
@media (max-width: 1100px) {
  .cg-navbar-grid {
    grid-template-columns: 1.1fr 0.9fr 1.45fr;
  }

  .cg-col:nth-child(4) {
    display: none;
  }

  .cg-value,
  .cg-nav-links,
  .cg-theme-toggle {
    font-size: 0.92rem;
  }

  .hero-headline {
    font-size: clamp(1.75rem, 4.1vw, 2.8rem);
  }

  .manifesto-text {
    font-size: clamp(2rem, 4.25vw, 3.05rem);
  }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
  :root {
    --nav-height: 88px;
  }

  .cg-navbar {
    padding: 1.15rem 1.25rem;
  }

  .cg-navbar-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 1.25rem;
  }

  .cg-col:nth-child(3),
  .cg-col:nth-child(4) {
    display: none;
  }

  .cg-label {
    font-size: 0.62rem;
    line-height: 1.2;
  }

  .cg-value,
  .cg-nav-links,
  .cg-theme-toggle {
    font-size: 0.75rem;
    line-height: 1.25;
  }

  .preloader-brand {
    flex-direction: column;
    gap: 0.5rem;
  }

  .preloader-name,
  .preloader-surname {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .preloader-tagline {
    font-size: 0.56rem;
    letter-spacing: 0.14em;
    text-align: center;
  }

  .hero-section {
    min-height: 560px;
    padding: calc(var(--nav-height) + 1rem) 0 1.1rem;
  }

  .hero-container {
    padding: 0 1.25rem;
  }

  .hero-title-container {
    width: 100%;
    margin-top: 0.75rem;
  }

  .hero-headline {
    width: min(100%, 355px);
    margin: 0 auto;
    font-size: clamp(1.65rem, 7.4vw, 2.25rem);
    line-height: 0.98;
    white-space: normal;
  }

  .hero-portrait-wrapper {
    margin: 0.75rem 0;
  }

  .hero-portrait-card {
    width: clamp(170px, 48vw, 205px);
    height: clamp(225px, 33svh, 285px);
    border-radius: 12px;
  }

  .hero-name-container {
    padding: 0;
    margin-bottom: 0;
  }

  .hero-monumental-name {
    font-size: clamp(2.15rem, 10.7vw, 2.75rem);
    line-height: 0.88;
    letter-spacing: -0.012em;
  }

  .manifesto-section {
    height: 200vh;
    height: 200svh;
  }

  .manifesto-stage {
    min-height: 560px;
    padding: calc(var(--nav-height) + 2.8rem) 1.25rem 5rem;
    align-items: center;
  }

  .manifesto-container {
    place-items: center;
  }

  .manifesto-text {
    font-size: clamp(1.48rem, 6.25vw, 1.9rem);
    line-height: 1.04;
    letter-spacing: -0.025em;
    text-align: center;
  }

  .manifesto-line {
    margin-bottom: 0.08em;
  }

  .manifesto-block {
    opacity: 0;
    transition: opacity 0.3s ease-out;
  }

  .manifesto-block.is-active {
    opacity: 1;
    transition-delay: 50ms;
  }

  .manifesto-line-clip {
    overflow: visible;
  }

  .manifesto-block .manifesto-line,
  .manifesto-block-2 .manifesto-line {
    transform: none;
    transition: none;
  }

  .manifesto-meta,
  .manifesto-footer {
    left: 1.25rem;
    right: 1.25rem;
    font-size: 0.58rem;
  }

  .manifesto-meta {
    top: calc(var(--nav-height) + 1.4rem);
  }

  .manifesto-footer {
    bottom: 1.6rem;
    align-items: flex-end;
  }

  .manifesto-footer > span:first-child {
    max-width: 11rem;
    line-height: 1.45;
  }

  .manifesto-progress {
    width: 32vw;
  }
}

@media (max-width: 360px) {
  .hero-monumental-name {
    font-size: 10.1vw;
  }

  .manifesto-text {
    font-size: 1.34rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .preloader-cinematic {
    display: none !important;
  }

  .js-enabled .line-inner,
  .js-enabled .hero-portrait-card {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .manifesto-section {
    height: auto;
    max-height: none;
    min-height: 100svh;
    overflow: visible;
  }

  .manifesto-stage {
    position: relative;
    height: auto;
    min-height: 100svh;
    overflow: visible;
  }

  .manifesto-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }

  .manifesto-block-2 {
    opacity: 1;
    visibility: visible;
  }

  .manifesto-line {
    transform: none !important;
  }

  .manifesto-progress-bar {
    transform: scaleX(1);
  }
}
