/* ================================================================
   MADISON CROSBIE — ATHLETE PORTFOLIO
   Clean editorial × bold sport. Crimson / gold / deep-red on warm white.
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Bebas+Neue&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* Backgrounds */
  --bg:          #FFFFFF;
  --bg-alt:      #F7F2EA;
  --bg-dark:     #2A0E12;
  --bg-dark-2:   #45161C;
  --bg-card:     #FFFFFF;

  /* Text */
  --text:        #1C1410;
  --text-sub:    #6B5D54;
  --text-dim:    #A99C8E;
  --text-on-dark: #F7F2EA;
  --text-on-dark-sub: rgba(247, 242, 234, 0.68);

  /* Accents */
  --crimson:      #A6192E;
  --crimson-dark: #7A1322;
  --crimson-dim:  rgba(166, 25, 46, 0.08);
  --gold:         #C9A227;
  --gold-light:   #E2BE5C;
  --gold-dim:     rgba(201, 162, 39, 0.10);

  /* Borders */
  --border:      #E8E0D3;
  --border-mid:  #DCD0BD;

  /* Type */
  --display:    'Fraunces', serif;
  --sport:      'Bebas Neue', sans-serif;
  --body:       'Inter', sans-serif;

  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --trans:      all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:     0 4px 16px rgba(28, 20, 16, 0.06);
  --shadow-lg:  0 20px 48px rgba(28, 20, 16, 0.10);
}

/* ================================================================
   RESET
   ================================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5 { font-family: var(--display); font-weight: 600; line-height: 1.15; }
a { text-decoration: none; color: inherit; transition: var(--trans); }
img { max-width: 100%; height: auto; display: block; }

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

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
}

.nav-logo {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  color: var(--text-on-dark);
  transition: color 0.4s ease;
}
.navbar.scrolled .nav-logo { color: var(--text); }
.nav-logo:hover { color: var(--crimson); }

.nav-menu { display: flex; list-style: none; gap: 36px; }

.nav-menu a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-on-dark-sub);
  position: relative;
  padding: 4px 0;
  transition: color 0.4s ease;
}
.navbar.scrolled .nav-menu a { color: var(--text-sub); }
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-menu a:hover { color: var(--text); }
.navbar.scrolled .nav-menu a:hover { color: var(--crimson); }
.nav-menu a:hover::after { width: 100%; }

.nav-menu a.active { color: var(--text); }
.navbar.scrolled .nav-menu a.active { color: var(--crimson); }
.nav-menu a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text-on-dark); border-radius: 1px; transition: var(--trans); display: block; }
.navbar.scrolled .nav-toggle span { background: var(--text); }

/* ================================================================
   HERO  —  bold sport statement: deep crimson, gold type, angular
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(155deg, var(--bg-dark) 0%, var(--bg-dark-2) 60%, var(--crimson-dark) 100%);
  display: flex;
  align-items: center;
  padding-top: 76px;
}

/* Bold angular gold stripe — the "bold sport" graphic device */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -8%;
  width: 46%;
  height: 130%;
  background: linear-gradient(180deg, rgba(201,162,39,0.18) 0%, transparent 70%);
  clip-path: polygon(30% 0%, 100% 0%, 70% 100%, 0% 100%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 10% 90%, rgba(166,25,46,0.25) 0%, transparent 60%);
  pointer-events: none;
}

.hero-watermark {
  position: absolute;
  top: 50%;
  right: -2%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-weight: 700;
  font-size: 34vw;
  line-height: 1;
  color: var(--text-on-dark);
  opacity: 0.045;
  pointer-events: none;
  z-index: 1;
  user-select: none;
  white-space: nowrap;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 80px;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* ---- Photo ---- */
.hero-image {
  position: relative;
  flex-shrink: 0;
  width: 400px;
  opacity: 0;
  transform: translateX(-30px);
  animation: heroImgIn 1.1s var(--ease) 0.05s forwards;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: -10px -10px -10px -10px;
  border: 1px solid rgba(201,162,39,0.4);
  border-radius: 4px;
  z-index: 0;
}

.hero-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 2px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  filter: saturate(0.86) contrast(1.08) sepia(0.07) brightness(1.02);
  transition: transform 0.2s linear;
}

/* ---- Text ---- */
.hero-text { flex: 1; text-align: left; }

.hero-text > * {
  opacity: 0;
  transform: translateY(20px);
  animation: heroTextIn 0.85s var(--ease) forwards;
}
.hero h1            { animation-delay: 0.15s; }
.hero .hero-club    { animation-delay: 0.30s; }
.hero .hero-position{ animation-delay: 0.44s; }
.hero .hero-badges  { animation-delay: 0.57s; }
.hero .btn          { animation-delay: 0.70s; }

@keyframes heroImgIn  { to { opacity: 1; transform: translateX(0); } }
@keyframes heroTextIn { to { opacity: 1; transform: translateY(0); } }

.hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(3.2rem, 6vw, 6rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--text-on-dark);
  margin-bottom: 22px;
}

.hero-club {
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.hero-position {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-on-dark-sub);
  margin-bottom: 30px;
  line-height: 1.5;
}
.hero-position span {
  font-family: var(--body);
  letter-spacing: 0.01em;
  color: var(--text-on-dark);
  font-weight: 700;
  font-size: 1.2rem;
}

.flag-icon { font-size: 0.95em; margin: 0 1px; }

.hero-badges { margin-bottom: 38px; }

.status-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--bg-dark);
  padding: 9px 26px 8px;
  font-family: var(--body);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-block;
  padding: 16px 44px;
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--trans);
  border: none;
  border-radius: 2px;
}
.btn-primary { background: var(--crimson); color: var(--text-on-dark); }
.btn-primary:hover {
  background: var(--crimson-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(166,25,46,0.35);
}

/* ================================================================
   SECTIONS
   ================================================================ */
.section { padding: 108px 0; }
.section.about     { background: var(--bg); }
.section.highlights { background: var(--bg-alt); }
.section.career     { background: var(--bg); }
.section.stats      { background: var(--bg-alt); }
.section.contact {
  background: linear-gradient(155deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
}

/* ================================================================
   SECTION TITLES — editorial serif, gold/crimson rule beneath
   ================================================================ */
.section-title {
  font-family: var(--display);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  color: var(--text);
  text-align: left;
  margin-bottom: 56px;
  position: relative;
  display: inline-block;
}
.section.contact .section-title { color: var(--text-on-dark); }

.section-title::after {
  content: '';
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  border-radius: 2px;
}

/* ================================================================
   ABOUT
   ================================================================ */
.about-content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}

.about-image { position: relative; }

.profile-photo {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  filter: saturate(0.86) contrast(1.08) sepia(0.07) brightness(1.02);
}

.about-text .lead {
  font-size: 1.18rem;
  line-height: 1.8;
  color: var(--text-sub);
  margin-bottom: 34px;
}

.about-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.detail-item {
  padding: 18px 20px;
  background: var(--bg-alt);
  border-left: 3px solid var(--border-mid);
  border-radius: 3px;
  transition: border-left-color 0.25s ease;
}
.detail-item:hover { border-left-color: var(--crimson); }

.detail-item strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 5px;
}
.detail-item span { font-size: 1rem; font-weight: 600; color: var(--text); }

.detail-item.academic-highlight {
  border-left-color: var(--gold);
  background: var(--gold-dim);
}
.detail-item.academic-highlight strong { color: var(--gold); }

/* ================================================================
   HIGHLIGHTS
   ================================================================ */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 0;
}

.highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.3s ease;
}
.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-mid);
}

.video-container {
  position: relative;
  width: 100%; padding-bottom: 56.25%; height: 0; overflow: hidden;
  background: var(--bg-dark);
}
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

.highlight-card h4 {
  padding: 16px 20px;
  font-family: var(--body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
}

/* ================================================================
   CAREER HISTORY
   ================================================================ */
.career-category { margin-bottom: 56px; }
.career-category:last-child { margin-bottom: 0; }

.career-category-title {
  font-family: var(--body);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-mid);
  display: inline-block;
  width: 100%;
}

.career-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 34px;
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 34px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease, transform 0.3s var(--ease), border-color 0.3s ease;
}

.career-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--crimson), var(--gold));
}

.career-item:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border-mid);
  transform: translateY(-2px);
}

.career-item:last-child { margin-bottom: 0; }

/* Variant: no photo available — content spans full width, subtle texture fills the space */
.career-item.no-photo {
  grid-template-columns: 1fr;
  background-image:
    radial-gradient(circle at 100% 0%, var(--crimson-dim) 0%, transparent 38%),
    repeating-linear-gradient(135deg, rgba(166,25,46,0.025) 0px, rgba(166,25,46,0.025) 1px, transparent 1px, transparent 14px);
}

.career-content { display: flex; flex-direction: column; }

.career-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 16px;
  flex-wrap: wrap;
}

.career-header h4 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 5px;
}

.career-role {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text-sub);
}

.career-year {
  font-family: var(--sport);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  background: var(--crimson-dim);
  border: 1px solid rgba(166,25,46,0.22);
  color: var(--crimson);
  padding: 7px 16px 5px;
  border-radius: 3px;
  white-space: nowrap;
  line-height: 1.2;
  flex-shrink: 0;
}

.career-highlights { list-style: none; padding: 0; }

.career-highlights li {
  padding: 7px 0 7px 20px;
  font-size: 0.98rem;
  color: var(--text-sub);
  line-height: 1.6;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.career-highlights li:last-child { border-bottom: none; }
.career-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.career-highlights li strong { color: var(--text); font-weight: 700; }

.ranking-callout {
  margin-top: 22px;
  padding: 24px 26px;
  background: linear-gradient(135deg, var(--gold-dim) 0%, var(--crimson-dim) 100%);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 6px;
}

.ranking-callout-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.ranking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ranking-item { text-align: center; }

.ranking-value {
  font-family: var(--sport);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--crimson);
  margin-bottom: 6px;
}

.ranking-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.ranking-rank {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-sub);
}

.career-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center center;
  border-radius: 4px;
  display: block;
  box-shadow: 0 12px 28px rgba(28,20,16,0.18);
  filter: saturate(0.86) contrast(1.08) sepia(0.07) brightness(1.02);
}

/* ================================================================
   PULL QUOTE
   ================================================================ */
.pull-quote-section {
  background: var(--bg);
  padding: 96px 0;
}

.pull-quote {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1.4;
  color: var(--text);
}

.pull-quote .quote-mark {
  display: block;
  font-family: var(--display);
  font-style: normal;
  font-size: 3.5rem;
  color: var(--crimson);
  line-height: 1;
  margin-bottom: 8px;
}

.pull-quote-cite {
  display: block;
  margin-top: 24px;
  font-family: var(--body);
  font-style: normal;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ================================================================
   STATS
   ================================================================ */
.stats-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-sub);
  text-align: left;
  margin-top: -40px;
  margin-bottom: 56px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--crimson);
  border-radius: 4px;
  padding: 44px 22px 36px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-family: var(--sport);
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  line-height: 1;
  color: var(--crimson);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.stat-detail {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 6px;
  font-style: italic;
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact-content { max-width: 820px; margin: 0 auto; }

.contact-columns {
  display: flex;
  justify-content: center;
}

.contact-columns .contact-group {
  width: 100%;
  max-width: 420px;
}

.contact-group-title {
  font-family: var(--body);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(247,242,234,0.18);
  text-align: center;
}

.contact-info { display: flex; flex-direction: column; gap: 12px; }

.contact-item {
  padding: 18px 22px;
  background: rgba(247,242,234,0.05);
  border: 1px solid rgba(247,242,234,0.12);
  border-radius: 4px;
  transition: border-color 0.25s, background 0.25s;
}
.contact-item:hover {
  border-color: rgba(201,162,39,0.45);
  background: rgba(247,242,234,0.08);
}
.contact-icon { display: none; }

.contact-item strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-on-dark-sub);
  margin-bottom: 5px;
}
.contact-item p { font-size: 1.02rem; color: var(--text-on-dark); }
.contact-item a { color: var(--text-on-dark); }
.contact-item a:hover { color: var(--gold-light); }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--bg-dark);
  padding: 32px 48px;
  text-align: center;
}
.footer p {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,242,234,0.4);
}

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.section-title.reveal { transform: translateX(-16px); }
.section-title.reveal.visible { opacity: 1; transform: translateX(0); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .hero-image { width: 340px; }
  .hero-content { gap: 56px; padding: 60px 48px; }
  .about-content { grid-template-columns: 240px 1fr; gap: 48px; }
}

@media (max-width: 900px) {
  .career-item { grid-template-columns: 1fr; }
  .career-photo { height: 260px; }
  .career-item::before { width: 100%; height: 4px; top: 0; left: 0; bottom: auto; background: linear-gradient(90deg, var(--crimson), var(--gold)); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-container { padding: 0 24px; }

  .nav-menu {
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 28px 24px;
    gap: 22px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s var(--ease), opacity 0.3s ease, visibility 0.3s;
  }
  .nav-menu.active { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-menu a { color: var(--text-sub) !important; }
  .nav-toggle { display: flex; }
  .nav-toggle span { background: var(--text-on-dark); }
  .navbar.scrolled .nav-toggle span { background: var(--text); }

  .hero { padding-top: 0; min-height: 100svh; align-items: flex-end; padding-bottom: 56px; }
  .hero-content { flex-direction: column; gap: 0; padding: 0; position: relative; }
  .hero-image {
    position: absolute;
    top: 0; left: 0; right: 0;
    width: 100%;
    height: 62vmax;
    opacity: 0;
    animation: heroImgIn 1.1s var(--ease) 0.05s forwards;
  }
  .hero-image::before { display: none; }
  .hero-image img { width: 100%; height: 100%; border-radius: 0; object-position: center 25%; }
  .hero-image::after {
    content: '';
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(42,14,18,0.1) 0%, rgba(42,14,18,0.7) 50%, var(--bg-dark) 80%);
  }
  .hero-text { position: relative; z-index: 2; margin-top: calc(56vmax - 40px); padding: 0 28px; }
  .hero h1 { font-size: clamp(2.6rem, 11vw, 4rem); }
  .hero-position { font-size: 1.05rem; }
  .hero-watermark { display: none; }

  .about-content { grid-template-columns: 1fr; gap: 36px; }
  .about-image { max-width: 240px; }
  .profile-photo { height: 280px; }
  .about-details { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights-grid { grid-template-columns: 1fr; }
  .ranking-grid { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: clamp(2.2rem, 13vw, 3.2rem); }
}
