/* ================================
   RESET & BASE
================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #0a0a0a;
  --white: #f5f5f0;
  --cream: #ebe8e0;
  --accent: #c9a227;
  --accent-dark: #8b7019;
  --gray: #666;
  --gray-light: #999;
  --gray-dark: #333;
}

html {
  scroll-behavior: smooth;
  cursor: none;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', system-ui, sans-serif;
  overflow-x: hidden;
  cursor: none;
}

body.no-scroll {
  overflow: hidden;
}

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

button {
  cursor: none;
}

::selection {
  background: var(--accent);
  color: var(--black);
}

#top {
  position: absolute;
  top: 0;
  left: 0;
}

/* ================================
   CURSEUR CUSTOM
================================= */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: transform 0.1s ease;
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

.cursor.hover {
  transform: translate(-50%, -50%) scale(2);
}

.cursor-follower.hover {
  width: 60px;
  height: 60px;
  border-color: var(--white);
}

@media (max-width: 900px) {
  .cursor, .cursor-follower {
    display: none;
  }
  html, body, a, button {
    cursor: auto;
  }
}

/* ================================
   NOISE OVERLAY
================================= */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ================================
   HEADER
================================= */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 48px;
  background: transparent;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

#header.scrolled {
  padding: 16px 48px;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
}

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

.header-brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-line {
  width: 24px;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.header-brand:hover .brand-line {
  width: 40px;
}

.header-nav {
  display: flex;
  gap: 48px;
}

.header-nav a {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: var(--gray-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
  overflow: hidden;
}

.header-nav a::after {
  content: attr(data-text);
  position: absolute;
  top: 100%;
  left: 0;
  color: var(--accent);
  transition: top 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-nav a:hover {
  color: transparent;
}

.header-nav a:hover::after {
  top: 8px;
}

.header-time {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.time-separator {
  color: var(--accent);
}

/* ================================
   HERO
================================= */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 48px 80px;
  text-align: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(150px, 25vw, 400px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
  letter-spacing: -0.05em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.hero-vertical-text {
  position: absolute;
  left: 48px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gray);
  white-space: nowrap;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 1000px;
  position: relative;
  z-index: 2;
}

.hero-overline {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: var(--gray-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
}

.overline-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 14px;
  color: var(--accent);
  font-weight: 400;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 32px 0;
}

.title-line {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(48px, 10vw, 120px);
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  opacity: 0;
  transform: translateY(40px);
  animation: titleReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.title-line[data-delay="1"] {
  animation-delay: 0.15s;
}

.title-line[data-delay="2"] {
  animation-delay: 0.3s;
}

.title-line.title-accent {
  color: var(--accent);
  font-weight: 400;
}

@keyframes titleReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.author-dash {
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.hero-author {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(18px, 3vw, 24px);
  color: var(--white);
  letter-spacing: 0.1em;
}

.author-nobel {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  border: 1px solid var(--accent);
  margin-left: 8px;
}

.hero-cta {
  position: absolute;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cta-circle {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-cta:hover .cta-circle {
  border-color: var(--accent);
  background: var(--accent);
}

.hero-cta:hover .cta-circle svg {
  stroke: var(--black);
}

.cta-circle svg {
  transition: stroke 0.3s ease;
  animation: bounce 2s ease-in-out infinite;
}

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

.cta-text {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}

.hero-scroll-indicator {
  position: absolute;
  right: 48px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-scroll-indicator span {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ================================
   SECTION NUMBER
================================= */
.section-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 14px;
  color: var(--accent);
  font-weight: 400;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-number.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================
   EXPERIENCE 3D
================================= */
#experience {
  background: var(--black);
  padding: 120px 0 0;
  position: relative;
}

.experience-header {
  text-align: center;
  padding: 0 48px 64px;
}

.experience-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(36px, 6vw, 64px);
  color: var(--white);
  line-height: 1.1;
}

.title-small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

.experience-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--gray);
  max-width: 500px;
  margin: 24px auto 0;
  line-height: 1.8;
}

.canvas-container {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 500px;
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.canvas-container:fullscreen,
.canvas-container:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
}

#c {
  width: 100%;
  height: 100%;
  display: block;
}

.canvas-container.active #c {
  cursor: none;
}

/* Overlay pour inviter à cliquer */
.canvas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(2px);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.5s ease;
  z-index: 10;
}

.canvas-container.active .canvas-overlay {
  opacity: 0;
}

.overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.overlay-icon {
  width: 80px;
  height: 80px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

.canvas-overlay-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.05em;
}

.canvas-overlay-hint {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Contrôles en bas */
.canvas-controls {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 48px;
  padding: 16px 32px;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: opacity 0.3s ease;
  z-index: 20;
}

.canvas-container.active .canvas-controls {
  opacity: 0;
  pointer-events: none;
}

.control-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.control-key {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.control-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 10px;
  color: var(--gray);
  letter-spacing: 0.05em;
}

/* Instructions en plein écran */
.canvas-fullscreen-ui {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 48px;
  padding: 16px 32px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--gray);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 20;
}

.canvas-container.active .canvas-fullscreen-ui {
  opacity: 1;
}

.canvas-fullscreen-ui span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.canvas-fullscreen-ui strong {
  font-weight: 500;
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 0.05em;
}

.canvas-fullscreen-ui .escape-hint {
  color: var(--gray);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 48px;
}

/* ================================
   CARROUSEL VIDÉOS
================================= */
#videos {
  padding: 120px 48px;
  background: var(--black);
  overflow: hidden;
  position: relative;
}

.videos-header {
  text-align: center;
  margin-bottom: 64px;
}

.videos-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(36px, 6vw, 64px);
  color: var(--white);
  margin-bottom: 16px;
}

.videos-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--gray);
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 32px;
}

.carousel-track-container {
  overflow: hidden;
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 16 / 9;
}

.carousel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(30%);
  transition: filter 0.5s ease;
}

.carousel-slide:hover .carousel-video,
.carousel-slide.playing .carousel-video {
  filter: grayscale(0%);
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.slide-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 14px;
  color: var(--accent);
  font-weight: 400;
}

.slide-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 32px;
  color: var(--white);
}

.slide-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 0.05em;
}

/* Boutons navigation */
.carousel-btn {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.carousel-dot {
  width: 32px;
  height: 2px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.4);
}

.carousel-dot.active {
  background: var(--accent);
  width: 64px;
}

/* Play indicator */
.carousel-slide::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
}

.carousel-slide:hover::after {
  opacity: 1;
}

.carousel-slide.playing::after {
  opacity: 0;
}

/* ================================
   SECTION LIVRE / PROMO
================================= */
#livre {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 48px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.livre-bg-text {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(200px, 30vw, 500px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.03);
  letter-spacing: -0.05em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.promo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  max-width: 1200px;
  width: 100%;
  align-items: center;
  position: relative;
  z-index: 2;
}

.promo-image {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-image.visible {
  opacity: 1;
  transform: translateX(0);
}

.promo-image-frame {
  position: relative;
  display: inline-block;
}

.promo-image-placeholder {
  width: 320px;
  height: 480px;

  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 0.1em;
}

.image-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid var(--accent);
}

.image-corner-tl { top: -30px; left: -12px; border-right: none; border-bottom: none; }
.image-corner-tr { top: -30px; right: -12px; border-left: none; border-bottom: none; }
.image-corner-bl { bottom: -30px; left: -12px; border-right: none; border-top: none; }
.image-corner-br { bottom: -30px; right: -12px; border-left: none; border-top: none; }

.promo-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--black);
  opacity: 0;
  transform: translateX(40px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.2s;
}

.promo-text.visible {
  opacity: 1;
  transform: translateX(0);
}

.promo-overline {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.promo-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--black);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.promo-author {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--black);
}

.promo-description {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.9;
  color: var(--gray);
  margin-top: 8px;
  max-width: 450px;
}

.promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding: 20px 40px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--black);
  border: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  width: fit-content;
  position: relative;
  overflow: hidden;
}

.promo-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.promo-btn:hover::before {
  transform: translateX(0);
}

.btn-text, .btn-arrow {
  position: relative;
  z-index: 1;
}

.promo-btn:hover {
  color: var(--black);
}

.btn-arrow {
  transition: transform 0.3s ease;
}

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

/* ================================
   MARQUEE
================================= */
.marquee-section {
  background: var(--accent);
  padding: 20px 0;
  overflow: hidden;
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 0 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
}

.marquee-separator {
  font-size: 8px;
  opacity: 0.5;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================================
   FOOTER
================================= */
#contact {
  background: var(--black);
  color: var(--white);
  padding: 120px 48px 48px;
  position: relative;
}

.footer-top-line {
  position: absolute;
  top: 0;
  left: 48px;
  right: 48px;
  height: 1px;
  background: linear-gradient(to right, var(--accent), transparent 20%, transparent 80%, var(--accent));
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 36px;
  margin-bottom: 32px;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.footer-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.footer-text {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.9;
  color: var(--gray);
  max-width: 380px;
}

.footer-list {
  list-style: none;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 2.4;
  color: var(--gray);
}

.footer-list span {
  display: inline-block;
  width: 100px;
  color: var(--gray-light);
}

.footer-address {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.9;
  font-style: normal;
  color: var(--gray);
}

.footer-address a {
  color: var(--white);
  transition: color 0.3s ease;
  position: relative;
}

.footer-address a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.footer-address a:hover::after {
  width: 100%;
}

.footer-bottom {
  max-width: 1200px;
  margin: 80px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: var(--gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-credits {
  color: var(--gray);
}

/* ================================
   RESPONSIVE
================================= */
@media (max-width: 1200px) {
  .hero-vertical-text,
  .hero-scroll-indicator {
    display: none;
  }
}

@media (max-width: 900px) {
  #header {
    padding: 16px 24px;
  }

  .header-nav {
    display: none;
  }

  .header-time {
    display: none;
  }

  .hero-bg-text {
    font-size: 100px;
  }

  #hero {
    padding: 100px 24px 80px;
  }

  .promo-inner {
    grid-template-columns: 1fr;
    gap: 64px;
    text-align: center;
  }

  .promo-text {
    align-items: center;
    order: 2;
  }

  .promo-description {
    max-width: 100%;
  }

  .promo-image {
    order: 1;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-text {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .canvas-controls {
    gap: 24px;
    padding: 12px 20px;
  }

  .canvas-fullscreen-ui {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 32px;
    padding: 12px 20px;
  }

  .canvas-fullscreen-ui .escape-hint {
    border-left: none;
    padding-left: 0;
    width: 100%;
    justify-content: center;
  }

  .carousel-container {
    flex-direction: column;
    gap: 24px;
  }

  .carousel-btn {
    display: none;
  }

  #videos {
    padding: 80px 24px;
  }

  #livre {
    padding: 80px 24px;
  }

  .livre-bg-text {
    display: none;
  }
}

@media (max-width: 600px) {
  #header {
    padding: 12px 16px;
  }

  .header-brand {
    font-size: 12px;
  }

  .brand-line {
    width: 16px;
  }

  #hero {
    padding: 80px 16px 60px;
  }

  .hero-cta {
    bottom: 60px;
  }

  .cta-circle {
    width: 48px;
    height: 48px;
  }

  #experience {
    padding: 80px 0 0;
  }

  .experience-header {
    padding: 0 16px 48px;
  }

  .canvas-container {
    height: 60vh;
    min-height: 400px;
  }

  .canvas-controls {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    bottom: 16px;
  }

  .canvas-fullscreen-ui {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .canvas-fullscreen-ui span {
    justify-content: center;
  }

  .canvas-fullscreen-ui .escape-hint {
    padding-left: 0;
    border-left: none;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  #videos {
    padding: 60px 16px;
  }

  .videos-header {
    margin-bottom: 40px;
  }

  .slide-overlay {
    padding: 24px;
  }

  .slide-title {
    font-size: 24px;
  }

  #livre {
    padding: 60px 16px;
  }

  .promo-inner {
    gap: 48px;
  }

  .promo-image-placeholder {
    width: 260px;
    height: 380px;
  }

  #contact {
    padding: 60px 16px 32px;
  }

  .footer-top-line {
    left: 16px;
    right: 16px;
  }

  .footer-list span {
    width: 80px;
  }

  .marquee-section {
    padding: 16px 0;
  }

  .marquee-content {
    font-size: 11px;
    gap: 32px;
  }
}
