:root {
  --navy: #08172f;
  --navy-light: #0d2244;
  --navy-mid: #112a4a;
  --royal: #1a5fff;
  --royal-soft: #3a7aff;
  --cream: #f6f1e8;
  --cream-dark: #e8e0d2;
  --gold: #c8a96b;
  --gold-light: #d4ba82;
  --gold-dark: #b08f4f;
  --white: #ffffff;
  --text-dark: #08172f;
  --text-light: #c8c4bc;
  --text-muted: #7a8ba8;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-accent: "Cormorant Garamond", Georgia, serif;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: 120px;
  --space-2xl: 200px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-elegant: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.home {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

body.home ::selection {
  background: var(--gold);
  color: var(--navy);
}

body.home img {
  max-width: 100%;
  display: block;
}

body.home a {
  text-decoration: none;
  color: inherit;
}

body.home button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.8s var(--ease-smooth), visibility 0.8s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-monogram {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--gold);
  opacity: 0;
  animation: preloaderFadeIn 1s var(--ease-smooth) 0.3s forwards;
}

.preloader-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-top: 24px;
  transform: scaleX(0);
  animation: preloaderLine 1.2s var(--ease-smooth) 0.6s forwards;
}

@keyframes preloaderFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@keyframes preloaderLine {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}


.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px clamp(28px, 5vw, 72px) 72px;
  overflow: hidden;
  z-index: 1;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 36%, rgba(58, 122, 255, 0.12) 0%, rgba(58, 122, 255, 0) 28%),
    linear-gradient(90deg, rgba(8, 23, 47, 0.96) 0%, rgba(8, 23, 47, 0.88) 46%, rgba(8, 23, 47, 0.74) 68%, rgba(8, 23, 47, 0.56) 100%);
  z-index: 1;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(62vw, 1160px);
  text-align: center;
  padding-left: clamp(12px, 2vw, 28px);
  padding-top: clamp(140px, 19vh, 220px);
}


.hero-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  opacity: 1;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 96px);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: var(--space-md);
  opacity: 1;
  white-space: nowrap;
}

.hero-rule {
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto var(--space-md);
  transform: scaleX(1);
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: clamp(16px, 1.6vw, 24px);
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
  opacity: 1;
}

.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 1;
}

.hero-scroll-text {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollLine 2s var(--ease-smooth) infinite;
}

@keyframes scrollLine {
  0% {
    top: -100%;
  }

  50% {
    top: 0;
  }

  100% {
    top: 100%;
  }
}

.section {
  position: relative;
  padding: clamp(80px, 12vw, 160px) clamp(24px, 6vw, 80px);
}

.section-dark {
  background: var(--navy);
}

.section-cream {
  background: var(--cream);
  color: var(--text-dark);
}

.section-deep {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}

.section-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  display: block;
}

.section-cream .section-label {
  color: var(--gold-dark);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 56px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: var(--space-lg);
}

.section-cream .section-title {
  color: var(--navy);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

.reveal-delay-6 {
  transition-delay: 0.6s;
}

.pillars {
  text-align: center;
}

.pillars-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(18px, 1.4vw, 22px);
  color: #5a6a7a;
  font-weight: 300;
  max-width: 560px;
  margin: -32px auto var(--space-xl) auto;
  line-height: 1.7;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(8, 23, 47, 0.08);
  max-width: 960px;
  margin: 0 auto;
}

.pillar-card {
  background: var(--cream);
  padding: clamp(32px, 4vw, 56px) clamp(20px, 2vw, 32px);
  text-align: center;
  transition: background 0.5s ease;
  position: relative;
  cursor: default;
}

.pillar-card:hover {
  background: #f0e9db;
}

.pillar-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 40px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.4s var(--ease-elegant);
}

.pillar-card:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.pillar-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto var(--space-sm);
  color: var(--gold-dark);
}

.pillar-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar-name {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.pillar-desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: #7a8690;
  letter-spacing: 0.02em;
  line-height: 1.6;
  font-weight: 400;
}

.works-section {
  background: transparent;
  padding-bottom: clamp(80px, 12vw, 160px);
  overflow: hidden;
}

.works-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.works-track-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.works-track {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  padding: 0 clamp(24px, 6vw, 80px);
  transition: transform 0.7s var(--ease-elegant);
  cursor: grab;
}

.works-track:active {
  cursor: grabbing;
}

.work-card {
  display: block;
  flex: 0 0 clamp(260px, 22vw, 320px);
  text-align: center;
  opacity: 0.4;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s var(--ease-elegant);
  text-decoration: none;
}

.work-card.active {
  opacity: 1;
  transform: scale(1);
}

.work-cover {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 4px;
  margin-bottom: var(--space-md);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.5s ease;
}

.work-cover-image,
.work-cover-fallback {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

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

.work-cover-fallback {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 20px 22px;
  background: linear-gradient(145deg, #112a4a, #08172f);
  border: 1px solid rgba(200, 169, 107, 0.65);
  text-align: left;
}

.work-card.active .work-cover {
  border-color: rgba(200, 169, 107, 0.25);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 8px 30px rgba(0, 0, 0, 0.3);
}

.work-cover-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}

.work-cover-publisher {
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: auto;
  padding-top: 16px;
  font-weight: 500;
}

.work-cover-title {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.35vw, 21px);
  color: var(--cream);
  line-height: 1.28;
  font-weight: 400;
  text-align: left;
  padding: 0;
  margin-top: auto;
  max-width: 92%;
}

.work-cover-author {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-style: normal;
  margin-top: 0;
  margin-bottom: auto;
  padding-bottom: 0;
  font-weight: 500;
}

.work-title {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.1vw, 18px);
  color: var(--cream);
  margin-bottom: 6px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.work-meta {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.works-footer {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.works-all-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border: 1px solid rgba(200, 169, 107, 0.24);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.works-all-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.works-all-link:hover {
  border-color: var(--gold);
  background: rgba(200, 169, 107, 0.08);
}

.works-all-link:hover svg {
  transform: translateX(4px);
}

.works-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: var(--space-lg);
}

.works-nav-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(200, 169, 107, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s ease;
}

.works-nav-btn:hover {
  background: rgba(200, 169, 107, 0.1);
  border-color: var(--gold);
}

.works-nav-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.coming-books-section {
  padding-top: clamp(88px, 10vw, 128px);
  padding-bottom: clamp(88px, 10vw, 128px);
  background: #e5ded1 !important;
}

.coming-books-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.coming-books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  justify-content: center;
  gap: clamp(24px, 2.8vw, 36px);
}

.coming-books-grid .work-card {
  justify-self: center;
  opacity: 1;
  transform: none;
  flex: none;
}

.coming-books-grid .work-title {
  color: var(--gold);
}

.coming-books-grid .work-card:hover {
  transform: translateY(-6px);
}

.works-dots {
  display: flex;
  gap: 8px;
}

.works-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(200, 169, 107, 0.2);
  transition: all 0.4s ease;
  cursor: pointer;
}

.works-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.research-section {
  text-align: center;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  max-width: 900px;
  margin: 0 auto;
}

.research-item {
  padding: clamp(28px, 3vw, 44px) clamp(16px, 2vw, 28px);
  border: 1px solid rgba(200, 169, 107, 0.08);
  border-radius: 4px;
  transition: all 0.5s var(--ease-elegant);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.research-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 169, 107, 0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.research-item:hover {
  border-color: rgba(200, 169, 107, 0.2);
  transform: translateY(-4px);
}

.research-item:hover::before {
  opacity: 1;
}

.research-number {
  font-family: var(--font-body);
  font-size: 9px;
  color: var(--gold-dark);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  position: relative;
  font-weight: 500;
}

.research-name {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.1vw, 17px);
  color: var(--cream);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.authority-section {
  text-align: center;
  overflow: hidden;
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(48px, 6vw, 80px);
}

.authority-publisher {
  margin: 0;
}

.authority-publisher-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.authority-publisher-name {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  color: var(--navy);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.authority-publisher-sub {
  font-family: var(--font-accent);
  font-size: clamp(15px, 1.2vw, 19px);
  color: #6a7a8a;
  font-style: italic;
  margin-top: 8px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(8, 23, 47, 0.08);
  max-width: 800px;
  margin: 0 auto;
}

.stat-card {
  background: var(--cream);
  padding: clamp(36px, 4vw, 56px) var(--space-md);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 64px);
  color: var(--navy);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number .stat-suffix {
  color: var(--gold-dark);
}

.stat-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #7a8690;
  font-weight: 500;
}

.quote-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(80px, 12vw, 160px) clamp(24px, 8vw, 120px);
}

.quote-mark {
  font-family: var(--font-accent);
  font-size: clamp(60px, 8vw, 120px);
  color: var(--gold);
  line-height: 1;
  opacity: 0.3;
  margin-bottom: -20px;
}

.quote-text {
  font-family: var(--font-accent);
  font-size: clamp(22px, 3vw, 46px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto;
}

.quote-attribution {
  margin-top: var(--space-md);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.connect-section {
  text-align: center;
}

.connect-types {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-xl);
}

.connect-type {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7a8690;
  font-weight: 400;
  padding: 12px 24px;
  border: 1px solid rgba(8, 23, 47, 0.1);
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: default;
}

.connect-type:hover {
  border-color: var(--gold-dark);
  color: var(--navy);
}

.connect-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
  padding: 20px 48px;
  border: 1.5px solid var(--navy);
  border-radius: 0;
  transition: all 0.4s ease;
  margin-bottom: var(--space-xl);
}

.connect-cta:hover {
  background: var(--navy);
  color: var(--cream);
}

.connect-cta svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.connect-cta:hover svg {
  transform: translateX(4px);
}

.connect-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.connect-link {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.connect-link:hover {
  color: var(--navy);
}

.connect-separator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cream-dark);
}

.footer {
  background: var(--navy);
  padding: var(--space-lg) clamp(24px, 6vw, 80px);
  text-align: center;
}

.footer-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto var(--space-md);
  opacity: 0.3;
}

.footer-monogram {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  opacity: 0.6;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.footer-link {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--cream);
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 10px;
  color: rgba(200, 196, 188, 0.3);
  letter-spacing: 0.1em;
}

@media (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .coming-books-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: 128px;
    padding-bottom: 96px;
  }

  .hero-content {
    width: 100%;
    padding-left: 0;
    padding-top: 0;
    text-align: center;
  }

  .hero-photo {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(82vw, 460px);
    height: auto;
    margin: 32px auto 0;
  }

  .hero-scroll {
    bottom: 24px;
  }

  .hero-name {
    letter-spacing: 0.1em;
    white-space: normal;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .research-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
  }

  .works-grid,
  .coming-books-grid {
    grid-template-columns: repeat(2, minmax(240px, 320px));
  }

  .connect-types {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .connect-links {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .connect-separator {
    display: none;
  }
}

@media (max-width: 480px) {
  .works-grid,
  .coming-books-grid {
    grid-template-columns: 1fr;
  }

  .work-card {
    max-width: 340px;
    margin: 0 auto;
  }

  .hero-label {
    font-size: 9px;
    letter-spacing: 0.25em;
  }

  .hero-photo {
    width: min(88vw, 360px);
  }

  .hero-name {
    letter-spacing: 0.08em;
  }

  .section {
    padding: clamp(64px, 10vw, 120px) clamp(20px, 5vw, 40px);
  }

  .quote-text {
    font-size: clamp(20px, 5vw, 28px);
  }

  .stat-number {
    font-size: clamp(32px, 10vw, 48px);
  }
}

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

  .hero-scroll-line::after {
    animation: none;
  }
}
