/* ============================================================
   AQIL — The Next Chapter
   Portfolio stylesheet
   Palette: Charcoal / Off-White / Crimson / Gold / Grey
   ============================================================ */

:root {
  --charcoal: #121212;
  --charcoal-2: #1b1b1b;
  --offwhite: #f4edda;      /* warm cream */
  --offwhite-2: #e9dec6;
  --crimson: #8e1b21;
  --crimson-bright: #ab242b;
  --crimson-neon: #e23b45;  /* brighter crimson, glow only */
  --gold: #b49a62;
  --gold-soft: #c9b487;
  --gold-neon: #e7cb86;
  --grey: #a8a8a8;
  --ink: #1a1a1a;

  /* neon glow tokens (same hues, higher energy) */
  --glow-crimson: rgba(226,59,69,0.55);
  --glow-gold: rgba(231,203,134,0.5);

  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;
  --font-hand: "Caveat", cursive;

  --maxw: 1180px;
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--offwhite);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* paper / map texture overlay for light sections */
.section-light::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(180,154,98,0.05) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(142,27,33,0.04) 0, transparent 40%);
}

/* ---------- scroll progress route ---------- */
.route-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  background: rgba(0,0,0,0.06); z-index: 1000;
}
.route-progress span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--crimson));
  transition: width 0.1s linear;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), padding 0.35s var(--ease);
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(18,18,18,0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  padding: 12px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; flex-direction: column; line-height: 1; color: #fff; }
.brand-mark {
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem;
  letter-spacing: 3px;
}
.brand-mark::first-letter { color: var(--crimson-bright); }
.brand-sub {
  font-family: var(--font-hand); color: var(--gold-soft);
  font-size: 1rem; margin-top: 2px;
}
/* keep brand readable before scroll (hero is dark, so white is fine) */

.nav-desktop { display: flex; gap: 4px; }
.nav-link {
  position: relative; display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.72); font-weight: 600; font-size: 0.9rem;
  padding: 8px 12px; border-radius: 8px; transition: color 0.25s var(--ease);
}
.nav-link i {
  font-family: var(--font-display); font-style: normal; font-weight: 600;
  font-size: 0.72rem; color: var(--gold); opacity: 0.85;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link.active i { color: var(--crimson-bright); }
.nav-link::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 2px;
  height: 2px; background: var(--crimson-bright); transform: scaleX(0);
  transform-origin: left; transition: transform 0.3s var(--ease);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px; background: none;
  border: 0; cursor: pointer; padding: 8px; z-index: 950;
}
.menu-toggle span {
  width: 26px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 940;
  background: linear-gradient(160deg, #141414, #1f1416);
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 32px; transform: translateY(-100%);
  transition: transform 0.45s var(--ease); visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.team-sheet-label {
  font-family: var(--font-hand); color: var(--gold-soft);
  font-size: 1.5rem; margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 1px dashed rgba(180,154,98,0.4);
}
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu a {
  display: flex; align-items: baseline; gap: 16px; color: #f3f0e9;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
}
.mobile-menu a i {
  font-style: normal; color: var(--crimson-bright); font-size: 1rem;
  min-width: 34px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block; font-weight: 700; font-size: 0.92rem;
  padding: 13px 24px; border-radius: 10px; cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
  letter-spacing: 0.3px;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--crimson); color: #fff; box-shadow: 0 8px 20px rgba(142,27,33,0.3); }
.btn-primary:hover { background: var(--crimson-bright); }
.btn-ghost { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-ghost:hover { background: var(--gold); color: var(--charcoal); }
.btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.35); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-outline-light { background: transparent; color: #f3f0e9; border: 1px solid rgba(243,240,233,0.4); }
.btn-outline-light:hover { background: rgba(243,240,233,0.1); border-color: #f3f0e9; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  background: radial-gradient(120% 120% at 80% 0%, #201316 0%, var(--charcoal) 55%);
  color: var(--offwhite); display: flex; flex-direction: column; justify-content: center;
  padding: 130px 0 60px; overflow: hidden;
}
.pitch-lines {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(rgba(180,154,98,0.06) 1px, transparent 1px);
  background-size: 100% 46px;
}
.pitch-lines::before {
  content: ""; position: absolute; top: 50%; left: -10%; width: 55%; aspect-ratio: 1;
  border: 1px solid rgba(180,154,98,0.12); border-radius: 50%;
  transform: translateY(-50%);
}

.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.25fr 0.9fr; gap: 50px; align-items: center;
}

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 3px;
  font-size: 0.8rem; color: var(--gold-soft); margin-bottom: 18px;
}
.kicker .dot, .dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--crimson-bright);
  box-shadow: 0 0 0 4px rgba(171,36,43,0.2); display: inline-block;
}

.hero-title {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(3.2rem, 9vw, 6.4rem); line-height: 0.92; letter-spacing: 1px;
}
.hero-title .accent { color: var(--crimson-bright); }
.hero-role {
  font-family: var(--font-display); font-weight: 400; letter-spacing: 1px;
  color: var(--gold-soft); font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  margin-top: 20px; text-transform: uppercase;
}
.hero-statement {
  font-size: 1.15rem; color: rgba(243,240,233,0.82); max-width: 460px; margin-top: 16px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.hero-tagline {
  position: relative; z-index: 2; text-align: center;
  font-family: var(--font-hand); font-size: 1.5rem; color: var(--gold-soft);
  margin-top: 54px; padding-top: 24px;
  border-top: 1px dashed rgba(180,154,98,0.3); max-width: 720px; margin-left: auto; margin-right: auto;
}

/* player-profile card */
.profile-card {
  background: linear-gradient(165deg, rgba(40,26,28,0.9), rgba(20,20,20,0.9));
  border: 1px solid rgba(180,154,98,0.25); border-radius: 18px;
  padding: 22px; box-shadow: 0 30px 60px rgba(0,0,0,0.45); backdrop-filter: blur(4px);
}
.pc-top { position: relative; padding: 0 0 18px; }

/* reference-style profile photo card (name on top, handle bar at bottom) */
.pc-photo {
  position: relative; width: 100%; aspect-ratio: 3 / 4; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border-radius: 18px; border: 1px solid rgba(255,255,255,0.14);
  background: radial-gradient(circle at 50% 30%, #2c2022, #141414);
  box-shadow: 0 12px 34px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.16);
}
.pc-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; object-position: 65% center; display: block;
  user-select: none; pointer-events: none;
  filter: saturate(1) contrast(1.04) brightness(1.02);
}
/* scrims: darken top (name) and bottom (bar) for legibility */
.pc-photo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(10,8,9,0.74), transparent 26%),
    linear-gradient(to top, rgba(10,8,9,0.9), transparent 36%);
}
.pc-fallback {
  position: absolute; inset: 0; z-index: 0; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 3.4rem; letter-spacing: 4px;
  color: var(--gold-soft);
}
/* name + role overlay */
.pc-overlay-top { position: absolute; top: 20px; left: 22px; right: 22px; z-index: 3; }
.pc-name {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 1.7rem; line-height: 1.02; letter-spacing: 0.5px; color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
}
.pc-role {
  margin-top: 7px; font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 2px; font-size: 0.72rem; color: var(--gold-soft);
}
/* glass handle bar */
.pc-bar {
  position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 3;
  display: flex; align-items: center; gap: 10px;
  padding: 8px 8px 8px 10px; border-radius: 14px;
  background: rgba(20,16,17,0.55); border: 1px solid rgba(255,255,255,0.15);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.pc-avatar {
  width: 34px; height: 34px; flex: 0 0 34px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700;
  font-size: 0.82rem; letter-spacing: 1px; color: #fff;
  background: linear-gradient(150deg, var(--crimson), #5e1216); border: 1px solid rgba(255,255,255,0.22);
}
.pc-bar-id { display: flex; flex-direction: column; line-height: 1.15; margin-right: auto; min-width: 0; }
.pc-handle { font-weight: 700; font-size: 0.9rem; color: #fff; }
.pc-handle:hover { color: var(--gold-soft); }
.pc-status { display: inline-flex; align-items: center; gap: 6px; font-size: 0.72rem; color: var(--grey); }
.online-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #35d07f;
  box-shadow: 0 0 8px rgba(53,208,127,0.85); animation: onlinePulse 2s ease-in-out infinite;
}
@keyframes onlinePulse { 0%,100% { box-shadow: 0 0 0 0 rgba(53,208,127,0.55); } 70% { box-shadow: 0 0 0 7px rgba(53,208,127,0); } }
.pc-contact {
  flex: 0 0 auto; font-family: var(--font-body); font-weight: 700; font-size: 0.8rem; color: #fff;
  background: var(--crimson); padding: 9px 15px; border-radius: 10px; white-space: nowrap;
  box-shadow: 0 6px 16px rgba(142,27,33,0.4); transition: background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.pc-contact:hover { background: var(--crimson-bright); box-shadow: 0 6px 20px var(--glow-crimson); }
.pc-panel { padding-top: 8px; }
.pc-row {
  display: flex; flex-direction: column; padding: 11px 2px;
  border-bottom: 1px dashed rgba(255,255,255,0.09);
}
.pc-row:last-child { border-bottom: 0; }
.pc-key {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1.5px;
  font-size: 0.7rem; color: var(--grey);
}
.pc-val { font-weight: 600; font-size: 0.98rem; color: #f3f0e9; }
.pc-val.accent { color: var(--gold-soft); }

/* ============================================================
   GENERIC SECTIONS
   ============================================================ */
.section { position: relative; padding: 100px 0; overflow: hidden; }
.section-light { background: var(--offwhite); color: var(--ink); }
.section-dark { background: var(--charcoal); color: var(--offwhite); }

.section-head { display: flex; align-items: flex-start; gap: 22px; margin-bottom: 54px; }
.section-no {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.8; color: var(--crimson);
  -webkit-text-stroke: 0; opacity: 0.95;
}
.section-dark .section-no { color: var(--crimson-bright); }
.map-label {
  font-family: var(--font-hand); font-size: 1.35rem; color: var(--gold);
  line-height: 1; margin-bottom: 4px;
}
.section-title {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  font-size: clamp(1.9rem, 4.5vw, 3rem); letter-spacing: 1px; line-height: 1;
}
.compass { color: var(--gold); font-size: 0.7em; animation: spin 14s linear infinite; display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   ABOUT / PROFILE
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 46px; }
.about-lead p { font-size: 1.1rem; margin-bottom: 18px; color: #333; }
.about-lead strong { color: var(--crimson); }

.about-cards { display: flex; flex-direction: column; gap: 18px; }
.info-block {
  background: #fff; border: 1px solid var(--offwhite-2); border-left: 4px solid var(--gold);
  border-radius: var(--radius); padding: 22px 24px;
  box-shadow: 0 10px 26px rgba(18,18,18,0.05);
}
.info-block h3 {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1px;
  font-size: 1.15rem; margin-bottom: 12px; display: flex; align-items: center; gap: 10px;
}
.ib-icon { font-size: 1.1rem; }
.info-block ul li { position: relative; padding: 4px 0 4px 20px; color: #444; font-size: 0.98rem; }
.info-block ul li::before {
  content: ""; position: absolute; left: 0; top: 13px; width: 8px; height: 8px;
  border-radius: 50%; background: var(--crimson);
}
.info-block ul.two-col { display: grid; grid-template-columns: 1fr 1fr; column-gap: 14px; }
.info-block li.hl { color: var(--crimson); font-weight: 700; }

.quality-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.quality-chips span {
  background: var(--offwhite-2); color: #3a3a3a; padding: 6px 14px; border-radius: 999px;
  font-size: 0.85rem; font-weight: 600; border: 1px solid rgba(180,154,98,0.35);
}

/* ============================================================
   PROJECTS
   ============================================================ */
.projects-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px;
}
.project-card {
  position: relative; background: var(--charcoal-2); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); padding: 26px; overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.project-card:hover {
  transform: translateY(-6px); border-color: rgba(180,154,98,0.4);
  box-shadow: 0 24px 44px rgba(0,0,0,0.4);
}
.tactical-line {
  position: absolute; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--crimson-bright), var(--gold));
  transition: width 0.45s var(--ease);
}
.project-card:hover .tactical-line { width: 100%; }

.pj-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 14px; }
.pj-mission {
  font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); white-space: nowrap;
  border: 1px solid rgba(180,154,98,0.4); padding: 4px 10px; border-radius: 6px;
}
.pj-titles h3 {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  font-size: 1.5rem; letter-spacing: 0.5px; line-height: 1;
}
.pj-sub { color: var(--gold-soft); font-size: 0.85rem; font-weight: 600; }
.pj-desc { color: rgba(243,240,233,0.72); font-size: 0.95rem; margin-bottom: 16px; }

.pj-stats {
  display: flex; gap: 10px; margin-bottom: 18px;
  border-top: 1px dashed rgba(255,255,255,0.1); border-bottom: 1px dashed rgba(255,255,255,0.1);
  padding: 12px 0;
}
.pj-stats li { flex: 1; text-align: center; }
.pj-stats b {
  display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.5rem;
  color: var(--crimson-bright);
}
.pj-stats span { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1px; color: var(--grey); }

.pj-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px 14px; margin-bottom: 18px;
}
.pj-features li { position: relative; padding-left: 16px; font-size: 0.85rem; color: rgba(243,240,233,0.8); }
.pj-features li::before {
  content: "▸"; position: absolute; left: 0; color: var(--gold); font-size: 0.7rem; top: 3px;
}
.pj-tech { display: flex; flex-wrap: wrap; gap: 6px; }
.pj-tech span {
  font-size: 0.72rem; font-weight: 600; color: var(--gold-soft);
  background: rgba(180,154,98,0.1); border: 1px solid rgba(180,154,98,0.25);
  padding: 4px 10px; border-radius: 999px;
}

/* ============================================================
   SKILLS
   ============================================================ */
.legend { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 34px; }
.legend .lg { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: #444; }
.legend .lg::before { content: ""; width: 14px; height: 14px; border-radius: 4px; }
.lg-strong::before { background: var(--crimson); }
.lg-mid::before { background: var(--gold); }
.lg-learn::before { background: transparent; border: 2px dashed var(--grey); }

.skills-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.skill-group {
  background: #fff; border: 1px solid var(--offwhite-2); border-radius: var(--radius);
  padding: 22px 24px; box-shadow: 0 10px 26px rgba(18,18,18,0.05);
}
.skill-group.wide { grid-column: 1 / -1; }
.skill-group h3 {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1px;
  font-size: 1.1rem; margin-bottom: 14px; color: var(--crimson);
  display: flex; align-items: center; gap: 10px;
}
.skill-group h3::before {
  content: ""; width: 22px; height: 3px; background: var(--gold); border-radius: 3px;
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips span {
  font-size: 0.85rem; font-weight: 600; padding: 7px 14px; border-radius: 8px;
  transition: transform 0.2s var(--ease);
}
.chips span:hover { transform: translateY(-2px); }
.chips .s3 { background: var(--crimson); color: #fff; }               /* Comfortable */
.chips .s2 { background: rgba(180,154,98,0.22); color: #6b5a30; border: 1px solid var(--gold); } /* Working */
.chips .s1 { background: transparent; color: #6c6c6c; border: 2px dashed var(--grey); }          /* Learning */

/* ============================================================
   JOURNEY TIMELINE
   ============================================================ */
.timeline { position: relative; max-width: 860px; margin: 0 auto; padding-left: 8px; }
.timeline::before {
  content: ""; position: absolute; left: 14px; top: 8px; bottom: 8px; width: 2px;
  background-image: linear-gradient(var(--gold) 60%, transparent 0);
  background-size: 2px 12px; /* dotted route line */
}
.tl-item { position: relative; padding: 0 0 30px 52px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: 6px; top: 4px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--charcoal); border: 3px solid var(--gold); z-index: 2;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.tl-item:hover .tl-dot { transform: scale(1.25); border-color: var(--crimson-bright); }
.tl-card {
  background: var(--charcoal-2); border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid var(--gold); border-radius: 10px; padding: 14px 20px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.tl-item:hover .tl-card { transform: translateX(6px); }
.tl-stage {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 2px;
  font-size: 0.72rem; color: var(--gold-soft); display: block; margin-bottom: 3px;
}
.tl-card p { font-weight: 600; font-size: 1.02rem; color: #f3f0e9; }

.tl-item.current .tl-dot { border-color: var(--crimson-bright); background: var(--crimson); box-shadow: 0 0 0 6px rgba(171,36,43,0.18); }
.tl-item.current .tl-card { border-left-color: var(--crimson-bright); }
.tl-item.current .tl-stage { color: var(--crimson-bright); }
.tl-item.destination .tl-dot { border-style: dashed; }
.tl-item.destination .tl-card { border-left-style: dashed; background: transparent; }

/* ============================================================
   ACHIEVEMENTS
   ============================================================ */
.ach-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.ach-card {
  display: flex; align-items: center; gap: 14px; background: #fff;
  border: 1px solid var(--offwhite-2); border-radius: var(--radius); padding: 18px 20px;
  font-weight: 600; color: #333; box-shadow: 0 8px 20px rgba(18,18,18,0.04);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.ach-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 16px 30px rgba(18,18,18,0.08); }
.ach-icon {
  font-size: 1.4rem; width: 44px; height: 44px; flex: 0 0 44px; display: grid; place-items: center;
  background: var(--offwhite-2); border-radius: 12px;
}

.teamwork-note {
  margin-top: 40px; background: linear-gradient(120deg, #1c1315, #241a1c); color: var(--offwhite);
  border-radius: var(--radius); padding: 30px 34px; border-left: 4px solid var(--crimson);
  position: relative; overflow: hidden;
}
.teamwork-note::after {
  content: "⚽"; position: absolute; right: 24px; bottom: -10px; font-size: 5rem; opacity: 0.08;
}
.tn-label {
  font-family: var(--font-hand); font-size: 1.4rem; color: var(--gold-soft); margin-bottom: 6px;
}
.tn-text { font-size: 1.08rem; max-width: 720px; color: rgba(243,240,233,0.9); }

/* ============================================================
   CONTACT
   ============================================================ */
.section-contact {
  background: radial-gradient(120% 120% at 20% 0%, #201316 0%, var(--charcoal) 55%);
  color: var(--offwhite); padding: 110px 0;
}
.contact-wrap { max-width: 760px; }
.contact-lead { font-size: 1.25rem; color: rgba(243,240,233,0.85); margin-bottom: 18px; }
.contact-avail {
  display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.85rem; color: var(--gold-soft);
  margin-bottom: 8px;
}
.contact-meta { color: rgba(243,240,233,0.72); font-size: 0.95rem; margin-bottom: 28px; }
.contact-meta a { color: var(--gold-soft); }
.contact-meta a:hover { text-decoration: underline; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #0d0d0d; color: var(--grey); padding: 40px 0; }
.footer-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
}
.ft-name { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 2px; color: #f3f0e9; font-size: 1rem; }
.ft-tag { font-family: var(--font-hand); font-size: 1.15rem; color: var(--gold-soft); }
.ft-copy { font-size: 0.85rem; }

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

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .profile-card { max-width: 420px; }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 620px) {
  .section { padding: 72px 0; }
  .section-head { gap: 14px; margin-bottom: 38px; }
  .hero-title { line-height: 0.95; }
  .pj-features { grid-template-columns: 1fr; }
  .info-block ul.two-col { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .btn { flex: 1 1 auto; text-align: center; }
}
