
:root {
  --bg:       #080808;
  --bg2:      #0d0d0d;
  --surface:  #111111;
  --border:   rgba(255, 255, 255, 0.07);
  --border-h: rgba(201, 169, 110, 0.3);
  --gold:   #c9a96e;
  --gold-l: #e8cca0;
  --gold-d: rgba(201, 169, 110, 0.08);
  --white:  #f5f0e8;
  --muted:  #6b6560;
  --muted2: #3a3530;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background:   var(--bg);
  color:        var(--white);
  font-family:  'Syne', sans-serif;
  overflow-x:   hidden;
  cursor:       none;
}

/* Grain / noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  opacity: .5;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}
.cursor {
  position:      fixed;
  width:         8px;
  height:        8px;
  background:    var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index:       9999;
  mix-blend-mode: difference;
}

.cursor-ring {
  position:      fixed;
  width:         36px;
  height:        36px;
  border:        1px solid rgba(201, 169, 110, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index:       9998;
  transition:    width .3s, height .3s, opacity .3s;
}
nav {
  position:        fixed;
  top:             0;
  left:            0;
  right:           0;
  z-index:         100;
  display:         flex;
  justify-content: space-between;
  align-items:     center;
  padding:         24px 60px;
}

nav::after {
  content:    '';
  position:   absolute;
  inset:      0;
  background: linear-gradient(to bottom, rgba(8, 8, 8, .96), transparent);
  z-index:    -1;
}

.nav-logo {
  font-family:     'Cormorant Garamond', serif;
  font-size:       20px;
  font-weight:     300;
  letter-spacing:  .14em;
  color:           var(--white);
  text-decoration: none;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display:    flex;
  gap:        28px;
  list-style: none;
}

.nav-links a {
  font-size:       10px;
  letter-spacing:  .2em;
  text-transform:  uppercase;
  color:           var(--muted);
  text-decoration: none;
  transition:      color .3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-avail {
  display:        flex;
  align-items:    center;
  gap:            8px;
  font-family:    'DM Mono', monospace;
  font-size:      10px;
  letter-spacing: .14em;
  color:          var(--muted);
}

.avail-dot {
  width:         6px;
  height:        6px;
  border-radius: 50%;
  background:    var(--gold);
  box-shadow:    0 0 8px var(--gold);
  animation:     glow 2s infinite;
}
.hero {
  position:       relative;
  min-height:     100vh;
  display:        flex;
  flex-direction: column;
  justify-content: flex-end;
  padding:        0 60px 100px;
  overflow:       hidden;
}

.hero-bg {
  position:   absolute;
  inset:      0;
  background:
    radial-gradient(ellipse 70% 70% at 80% 20%, rgba(201, 169, 110, .055) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 85%, rgba(201, 169, 110, .03)  0%, transparent 55%);
}
.vline {
  position:   absolute;
  top:        0;
  bottom:     0;
  width:      1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(201, 169, 110, .2)  40%,
    rgba(201, 169, 110, .06) 76%,
    transparent
  );
}

.vline:nth-child(2) { left: 22%; }
.vline:nth-child(3) { left: 55%; }
.vline:nth-child(4) { left: 82%; }

.hero-inner {
  position:  relative;
  z-index:   1;
  max-width: 1000px;
}

.hero-eyebrow {
  font-family:    'DM Mono', monospace;
  font-size:      11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color:          var(--gold);
  margin-bottom:  28px;
  display:        flex;
  align-items:    center;
  gap:            14px;
  opacity:        0;
  animation:      fadeUp 1s .2s forwards;
}

.hero-eyebrow::before {
  content:    '';
  width:      36px;
  height:     1px;
  background: var(--gold);
}

.hero-name {
  font-family:    'Cormorant Garamond', serif;
  font-size:      clamp(80px, 12vw, 180px);
  font-weight:    300;
  line-height:    .88;
  letter-spacing: -.02em;
  margin-bottom:  32px;
  opacity:        0;
  animation:      fadeUp 1.2s .4s forwards;
}

.hero-name em {
  font-style: italic;
  color:      var(--gold);
}

.hero-tagline {
  font-family:    'DM Mono', monospace;
  font-size:      11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color:          var(--muted);
  margin-bottom:  36px;
  opacity:        0;
  animation:      fadeUp .9s .65s forwards;
}

.hero-desc {
  font-size:     15px;
  line-height:   1.88;
  color:         rgba(245, 240, 232, .56);
  max-width:     600px;
  margin-bottom: 52px;
  opacity:       0;
  animation:     fadeUp .9s .85s forwards;
}

.hero-desc strong {
  color:       var(--white);
  font-weight: 400;
}

.hero-actions {
  display:     flex;
  gap:         20px;
  align-items: center;
  opacity:     0;
  animation:   fadeUp .9s 1.05s forwards;
}
.hero-scroll {
  position:       absolute;
  right:          60px;
  bottom:         72px;
  display:        flex;
  flex-direction: column;
  align-items:    center;
  gap:            10px;
  opacity:        0;
  animation:      fadeIn 1s 1.6s forwards;
}

.hero-scroll span {
  font-family:    'DM Mono', monospace;
  font-size:      9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color:          var(--muted);
  writing-mode:   vertical-rl;
}

.scroll-line {
  width:      1px;
  height:     52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation:  spulse 2s infinite;
}
.btn-gold {
  display:         inline-flex;
  align-items:     center;
  padding:         15px 34px;
  background:      var(--gold);
  color:           #080808;
  font-family:     'Syne', sans-serif;
  font-size:       11px;
  font-weight:     700;
  letter-spacing:  .18em;
  text-transform:  uppercase;
  text-decoration: none;
  position:        relative;
  overflow:        hidden;
  transition:      color .3s;
  cursor:          pointer;
  border:          none;
}

.btn-gold::before {
  content:    '';
  position:   absolute;
  inset:      0;
  background: #080808;
  transform:  translateX(-100%);
  transition: transform .4s cubic-bezier(.65, 0, .35, 1);
}

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

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

.btn-gold span {
  position: relative;
  z-index:  1;
}

.btn-ghost {
  font-size:       11px;
  letter-spacing:  .16em;
  text-transform:  uppercase;
  color:           var(--muted);
  text-decoration: none;
  border-bottom:   1px solid var(--border);
  padding-bottom:  3px;
  transition:      all .3s;
}

.btn-ghost:hover {
  color:        var(--white);
  border-color: var(--white);
}
.stats-bar {
  display:               grid;
  grid-template-columns: repeat(4, 1fr);
  border-top:            1px solid var(--border);
  border-bottom:         1px solid var(--border);
  background:            var(--surface);
}
.stat-item {
  padding:      32px 40px;
  border-right: 1px solid var(--border);
  position:     relative;
  overflow:     hidden;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item::before {
  content:          '';
  position:         absolute;
  top:              0;
  left:             0;
  right:            0;
  height:           2px;
  background:       linear-gradient(to right, var(--gold), var(--gold-l));
  transform:        scaleX(0);
  transform-origin: left;
  transition:       transform .5s cubic-bezier(.23, 1, .32, 1);
}

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size:   48px;
  font-weight: 300;
  color:       var(--gold);
  line-height: 1;
  display:     block;
}

.stat-label {
  font-size:      10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color:          var(--muted);
  margin-top:     7px;
  line-height:    1.55;
}


/* ============================================================
   SECTIONS (shared)
   ============================================================ */

.section {
  padding: 130px 60px;
}

.section + .section {
  border-top: 1px solid var(--border);
}

.sec-label {
  font-family:    'DM Mono', monospace;
  font-size:      10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color:          var(--gold);
  margin-bottom:  56px;
  display:        flex;
  align-items:    center;
  gap:            16px;
}

.sec-label::after {
  content:    '';
  flex:       1;
  max-width:  52px;
  height:     1px;
  background: var(--gold);
  opacity:    .4;
}
.about-bg {
  background: var(--bg2);
}
.about-grid {
  display:               grid;
  grid-template-columns: 340px 1fr;
  gap:                   80px;
  align-items:           start;
}

.about-photo-wrap {
  position: relative;
}

.about-photo-wrap::before {
  content:  '';
  position: absolute;
  top:      -12px;
  left:     -12px;
  width:    100%;
  height:   100%;
  border:   1px solid rgba(201, 169, 110, .18);
  z-index:  0;
}

.about-photo-wrap img {
  position: relative;
  z-index:  1;
  width:    100%;
  display:  block;
}

.about-quote {
  margin-top:  28px;
  padding:     22px 26px;
  border-left: 2px solid var(--gold);
  background:  var(--gold-d);
}

.about-quote p {
  font-family:  'Cormorant Garamond', serif;
  font-size:    17px;
  font-style:   italic;
  font-weight:  300;
  line-height:  1.7;
  color:        rgba(245, 240, 232, .78);
}

.about-title {
  font-family:   'Cormorant Garamond', serif;
  font-size:     clamp(36px, 4vw, 58px);
  font-weight:   300;
  line-height:   1.08;
  margin-bottom: 32px;
}

.about-title em {
  font-style: italic;
  color:      var(--gold);
}

.about-text {
  font-size:     14px;
  line-height:   1.95;
  color:         rgba(245, 240, 232, .58);
  margin-bottom: 20px;
}

.about-text strong {
  color:       var(--white);
  font-weight: 400;
}

.info-grid {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   2px;
  margin-top:            36px;
}

.info-block {
  padding:    16px 20px;
  background: var(--surface);
  border:     1px solid var(--border);
}

.info-lbl {
  font-family:    'DM Mono', monospace;
  font-size:      9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color:          var(--muted);
  margin-bottom:  5px;
}

.info-val {
  font-size: 13px;
  color:     var(--white);
}

.exp-inner {
  display:               grid;
  grid-template-columns: 240px 1fr;
  gap:                   80px;
  align-items:           start;
}

.exp-head-title {
  font-family: 'Cormorant Garamond', serif;
  font-size:   clamp(36px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.05;
}

.exp-head-title em {
  font-style: italic;
  color:      var(--gold);
}

.exp-head-sub {
  font-size:   13px;
  color:       var(--muted);
  line-height: 1.8;
  margin-top:  18px;
}

.timeline {
  position: relative;
}

.timeline::before {
  content:    '';
  position:   absolute;
  left:       0;
  top:        0;
  bottom:     0;
  width:      1px;
  background: var(--border);
}

.tl-item {
  padding:  0 0 52px 44px;
  position: relative;
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-dot {
  position:      absolute;
  left:          -5px;
  top:           7px;
  width:         10px;
  height:        10px;
  border-radius: 50%;
  border:        1px solid var(--gold);
  background:    var(--bg);
  box-shadow:    0 0 12px rgba(201, 169, 110, .35);
}

.tl-dot.new {
  border-color: var(--gold-l);
  box-shadow:   0 0 18px rgba(201, 169, 110, .6);
}

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

.tl-period {
  font-family:    'DM Mono', monospace;
  font-size:      10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color:          var(--gold);
  white-space:    nowrap;
  flex-shrink:    0;
}

.tl-role {
  font-family:   'Cormorant Garamond', serif;
  font-size:     22px;
  font-weight:   400;
  margin-bottom: 3px;
}

.tl-co {
  font-family:    'DM Mono', monospace;
  font-size:      10px;
  color:          var(--muted);
  margin-bottom:  14px;
  letter-spacing: .1em;
}

.tl-body {
  font-size:   13px;
  line-height: 1.87;
  color:       rgba(245, 240, 232, .5);
}

.tl-body strong {
  color:       rgba(245, 240, 232, .82);
  font-weight: 400;
}

.tl-resps {
  margin-top:     14px;
  display:        flex;
  flex-direction: column;
  gap:            6px;
}

.tl-resp {
  display:     flex;
  align-items: flex-start;
  gap:         10px;
  font-size:   12px;
  line-height: 1.7;
  color:       rgba(245, 240, 232, .45);
}

.tl-resp::before {
  content:    '·';
  color:      var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}
.chips {
  display:   flex;
  flex-wrap: wrap;
  gap:       7px;
  margin-top: 14px;
}

.chip {
  font-family:    'DM Mono', monospace;
  font-size:      9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color:          var(--gold);
  border:         1px solid rgba(201, 169, 110, .2);
  padding:        4px 11px;
}

.chip-new {
  background:   rgba(201, 169, 110, .08);
  border-color: rgba(201, 169, 110, .4);
}
.lead-bg {
  background: var(--bg2);
}

.lead-title {
  font-family: 'Cormorant Garamond', serif;
  font-size:   clamp(38px, 4.5vw, 64px);
  font-weight: 300;
  line-height: .93;
  margin-bottom: 16px;
}

.lead-title em {
  font-style: italic;
  color:      var(--gold);
}

.lead-sub {
  font-size:     14px;
  color:         var(--muted);
  line-height:   1.8;
  max-width:     560px;
  margin-bottom: 64px;
}

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

.event-card {
  position:     relative;
  overflow:     hidden;
  background:   var(--surface);
  aspect-ratio: 3/4;
  cursor:       pointer;
}

.event-card img {
  width:            100%;
  height:           100%;
  object-fit:       cover;
  object-position:  top;
  filter:           grayscale(15%) brightness(.72);
  transition:       all .6s cubic-bezier(.23, 1, .32, 1);
}

.event-card:hover img {
  filter:    grayscale(0%) brightness(.88);
  transform: scale(1.04);
}

.event-overlay {
  position:   absolute;
  inset:      0;
  background: linear-gradient(
    to top,
    rgba(8, 8, 8, .92) 0%,
    rgba(8, 8, 8, .15) 55%,
    transparent       100%
  );
}

.event-content {
  position: absolute;
  bottom:   0;
  left:     0;
  right:    0;
  padding:  24px;
}

.event-cat {
  font-family:    'DM Mono', monospace;
  font-size:      9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color:          var(--gold);
  margin-bottom:  6px;
}

.event-title {
  font-family:   'Cormorant Garamond', serif;
  font-size:     18px;
  font-weight:   400;
  line-height:   1.25;
  margin-bottom: 6px;
}

.event-desc {
  font-size:   11px;
  color:       rgba(245, 240, 232, .55);
  line-height: 1.55;
}
.skills-cols {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   72px;
}

.sk-title {
  font-family:   'Cormorant Garamond', serif;
  font-size:     clamp(34px, 3.8vw, 50px);
  font-weight:   300;
  margin-bottom: 44px;
}

.sk-title em {
  font-style: italic;
  color:      var(--gold);
}

.sk-row {
  margin-bottom: 26px;
}

.sk-header {
  display:       flex;
  justify-content: space-between;
  margin-bottom: 7px;
}

.sk-name {
  font-size:      11px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.sk-pct {
  font-family: 'DM Mono', monospace;
  font-size:   11px;
  color:       var(--gold);
}

.sk-bar {
  height:   1px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.sk-fill {
  position:   absolute;
  top:        0;
  left:       0;
  bottom:     0;
  background: linear-gradient(to right, var(--gold), var(--gold-l));
  width:      0;
  transition: width 1.6s cubic-bezier(.23, 1, .32, 1);
}
.soft-grid {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   2px;
}

.soft-item {
  padding:    18px 20px;
  background: var(--surface);
  border:     1px solid var(--border);
  position:   relative;
  overflow:   hidden;
  transition: background .3s;
}

.soft-item::before {
  content:          '';
  position:         absolute;
  left:             0;
  top:              0;
  bottom:           0;
  width:            2px;
  background:       var(--gold);
  transform:        scaleY(0);
  transition:       transform .3s;
}

.soft-item:hover {
  background: var(--gold-d);
}

.soft-item:hover::before {
  transform: scaleY(1);
}

.soft-name {
  font-size:      11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color:          var(--muted);
  transition:     color .3s;
}

.soft-item:hover .soft-name {
  color: var(--white);
}
.ach-bg {
  background: var(--bg2);
}

.ach-grid {
  display:               grid;
  grid-template-columns: repeat(4, 1fr);
  gap:                   2px;
}
.ach-card {
  padding:    40px 32px;
  background: var(--surface);
  border:     1px solid var(--border);
  position:   relative;
  overflow:   hidden;
  transition: all .4s cubic-bezier(.23, 1, .32, 1);
}

.ach-card::before {
  content:    '';
  position:   absolute;
  inset:      0;
  background: linear-gradient(135deg, rgba(201, 169, 110, .05), transparent 60%);
  opacity:    0;
  transition: opacity .4s;
}

.ach-card:hover {
  border-color: var(--border-h);
  transform:    translateY(-4px);
}

.ach-card:hover::before {
  opacity: 1;
}

.ach-num {
  font-family:   'Cormorant Garamond', serif;
  font-size:     58px;
  font-weight:   300;
  color:         var(--gold);
  line-height:   1;
  margin-bottom: 10px;
}

.ach-title {
  font-size:      11px;
  font-weight:    700;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom:  10px;
}

.ach-body {
  font-size:   12px;
  line-height: 1.75;
  color:       rgba(245, 240, 232, .45);
}
.proj-list {
  display:        flex;
  flex-direction: column;
  gap:            2px;
}
.proj-item {
  display:               grid;
  grid-template-columns: 64px 1fr auto;
  gap:                   32px;
  align-items:           center;
  padding:               28px 36px;
  background:            var(--surface);
  border:                1px solid var(--border);
  transition:            all .4s cubic-bezier(.23, 1, .32, 1);
  position:              relative;
  overflow:              hidden;
}

.proj-item::before {
  content:    '';
  position:   absolute;
  inset:      0;
  background: linear-gradient(135deg, rgba(201, 169, 110, .04), transparent 60%);
  opacity:    0;
  transition: opacity .4s;
}

.proj-item:hover {
  border-color: var(--border-h);
  transform:    translateX(5px);
}

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

.proj-num {
  font-family:    'DM Mono', monospace;
  font-size:      11px;
  color:          var(--muted);
  letter-spacing: .1em;
}

.proj-name {
  font-family:   'Cormorant Garamond', serif;
  font-size:     22px;
  font-weight:   400;
  margin-bottom: 4px;
  transition:    color .3s;
}

.proj-item:hover .proj-name {
  color: var(--gold);
}

.proj-tags {
  display: flex;
  gap:     9px;
}

.proj-tag {
  font-family:    'DM Mono', monospace;
  font-size:      9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color:          var(--muted);
}

.proj-arrow {
  width:       36px;
  height:      36px;
  border:      1px solid var(--border);
  display:     flex;
  align-items: center;
  justify-content: center;
  font-size:   15px;
  color:       var(--muted);
  transition:  all .3s;
  flex-shrink: 0;
}

.proj-item:hover .proj-arrow {
  border-color: var(--gold);
  color:        var(--gold);
  background:   var(--gold-d);
}

.contact-bg {
  background:  var(--surface);
  border-top:  1px solid var(--border);
}

.contact-inner {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   90px;
}

.contact-title {
  font-family:    'Cormorant Garamond', serif;
  font-size:      clamp(44px, 5.5vw, 80px);
  font-weight:    300;
  line-height:    .93;
  letter-spacing: -.02em;
}

.contact-title em {
  font-style: italic;
  color:      var(--gold);
}

.contact-sub {
  font-size:   14px;
  color:       var(--muted);
  line-height: 1.8;
  margin-top:  22px;
  max-width:   290px;
}

.clinks {
  margin-top: 40px;
}

.clink {
  display:         flex;
  align-items:     center;
  gap:             13px;
  padding:         15px 0;
  border-bottom:   1px solid var(--border);
  color:           var(--white);
  text-decoration: none;
  font-size:       13px;
  transition:      all .3s;
}

.clink:hover {
  color:        var(--gold);
  padding-left: 9px;
}

.clink-icon {
  width:       32px;
  height:      32px;
  border:      1px solid var(--border);
  display:     flex;
  align-items: center;
  justify-content: center;
  font-size:   11px;
  flex-shrink: 0;
  transition:  all .3s;
}

.clink:hover .clink-icon {
  border-color: var(--gold);
  background:   var(--gold-d);
}

/* Form */
.fgroup {
  margin-bottom: 20px;
}

.fgroup label {
  display:        block;
  font-size:      9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color:          var(--muted);
  margin-bottom:  8px;
}

.fgroup input,
.fgroup textarea,
.fgroup select {
  width:       100%;
  background:  rgba(255, 255, 255, .025);
  border:      1px solid var(--border);
  padding:     13px 16px;
  color:       var(--white);
  font-family: 'Syne', sans-serif;
  font-size:   13px;
  outline:     none;
  transition:  border-color .3s;
  resize:      none;
  appearance:  none;
}

.fgroup input:focus,
.fgroup textarea:focus,
.fgroup select:focus {
  border-color: rgba(201, 169, 110, .42);
}

.fgroup textarea {
  height: 100px;
}

.fgroup select option {
  background: #111;
}
footer {
  padding:         28px 60px;
  border-top:      1px solid var(--border);
  display:         flex;
  justify-content: space-between;
  align-items:     center;
}

footer p {
  font-family:    'DM Mono', monospace;
  font-size:      10px;
  color:          var(--muted2);
  letter-spacing: .12em;
}

.foot-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size:   18px;
  font-weight: 300;
  color:       var(--white);
}

.foot-logo span {
  color: var(--gold);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes glow {
  0%,  100% { opacity: 1; }
  50%        { opacity: .3; }
}

@keyframes spulse {
  0%,  100% { opacity: .3; }
  50%        { opacity: 1; }
}

/* Scroll reveal */
.reveal {
  opacity:    0;
  transform:  translateY(34px);
  transition: opacity .88s cubic-bezier(.23, 1, .32, 1),
              transform .88s cubic-bezier(.23, 1, .32, 1);
}

.reveal.visible {
  opacity:   1;
  transform: none;
}
@media (max-width: 960px) {

  nav {
    padding: 20px 24px;
  }

  .nav-avail {
    display: none;
  }

  .nav-links {
    gap: 18px;
  }

  .hero {
    padding: 140px 24px 80px;
  }

  .section {
    padding: 80px 24px;
  }

  .about-grid,
  .exp-inner,
  .skills-cols,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ach-grid {
    grid-template-columns: 1fr 1fr;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item {
    border-right:  none;
    border-bottom: 1px solid var(--border);
  }

  footer {
    flex-direction: column;
    gap:            12px;
    text-align:     center;
    padding:        24px;
  }

}
