/* =====================================================
   ROOT
===================================================== */

:root {
  --bg: #0b0d0d;
  --bg-soft: #111414;

  --light: #efeee8;
  --light-alt: #e6e5df;

  --text: #f0efe9;
  --text-dark: #151817;

  --muted: #979d99;
  --muted-dark: #656a66;

  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(15, 18, 17, 0.14);

  --accent: #d8d0ae;
  --accent-dark: #807657;

  --font-main: "Manrope", sans-serif;
  --font-display: "Space Grotesk", sans-serif;

  --container: 1240px;

  --ease:
    cubic-bezier(.19, 1, .22, 1);
}



/* =====================================================
   RESET
===================================================== */

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


html {
  margin: 0;
  padding: 0;

  width: 100%;

  scroll-behavior: smooth;

  overflow-x: hidden;
}


body {
  margin: 0;
  padding: 0;

  width: 100%;

  overflow-x: hidden;

  background: var(--bg);

  color: var(--text);

  font-family: var(--font-main);

  font-size: 16px;

  line-height: 1.6;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}


body.menu-open {
  overflow: hidden;
}


img {
  display: block;

  width: 100%;
  max-width: 100%;
}


a {
  color: inherit;

  text-decoration: none;
}


button {
  color: inherit;
  font: inherit;
}


figure {
  margin: 0;
}


ul {
  margin: 0;
}



/* =====================================================
   GENERAL
===================================================== */

.container {
  width:
    min(
      calc(100% - 80px),
      var(--container)
    );

  margin-inline: auto;
}


.section {
  position: relative;

  padding:
    125px 0;

  overflow: hidden;
}


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


.section-dark-alt {
  background: #101313;
  color: var(--text);
}


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


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



/* =====================================================
   NOISE / CURSOR
===================================================== */

.noise {
  position: fixed;

  inset: 0;

  z-index: 99999;

  pointer-events: none;

  opacity: .025;

  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.7'/%3E%3C/svg%3E");
}


.cursor-glow {
  position: fixed;

  left: -140px;
  top: -140px;

  width: 280px;
  height: 280px;

  border-radius: 50%;

  pointer-events: none;

  z-index: 0;

  opacity: .05;

  background:
    radial-gradient(
      circle,
      #e5dcb9,
      transparent 68%
    );
}



/* =====================================================
   HEADER
===================================================== */

.site-header {
  position: fixed;

  top: 22px;
  left: 0;

  width: 100%;

  z-index: 1000;

  pointer-events: none;
}


.nav-shell {
  width:
    min(
      calc(100% - 48px),
      1240px
    );

  min-height: 72px;

  margin-inline: auto;

  padding:
    10px 12px 10px 22px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;

  background:
    rgba(11, 14, 14, .82);

  border:
    1px solid rgba(255, 255, 255, .13);

  border-radius: 22px;

  backdrop-filter:
    blur(18px);

  -webkit-backdrop-filter:
    blur(18px);

  pointer-events: auto;

  box-shadow:
    0 12px 40px rgba(0, 0, 0, .12);
}



.brand {
  flex-shrink: 0;

  display: flex;
  align-items: center;

  min-width: 170px;
}


.brand-copy {
  display: flex;
  flex-direction: column;

  line-height: 1.15;
}


.brand-copy b {
  font:
    600 14px
    var(--font-display);

  letter-spacing: -.015em;
}


.brand-copy small {
  margin-top: 3px;

  font-size: 9px;

  letter-spacing: .08em;

  color: #8f9691;
}


.site-nav {
  display: flex;
  align-items: center;

  gap: 3px;
}


.site-nav > a {
  padding:
    11px 11px;

  border-radius: 9px;

  font:
    500 11px
    var(--font-main);

  color: #c9cdca;

  white-space: nowrap;

  transition:
    background .25s ease,
    color .25s ease;
}


.site-nav > a:hover {
  background:
    rgba(255, 255, 255, .06);

  color: #fff;
}


.site-nav .nav-contact {
  margin-left: 5px;

  padding:
    12px 16px;

  display: flex;
  align-items: center;

  gap: 15px;

  background: var(--light);

  color: #111413;

  border-radius: 11px;
}


.site-nav .nav-contact:hover {
  background: #fff;
  color: #111;
}


.nav-toggle {
  display: none;
}



/* =====================================================
   HERO
===================================================== */

.hero {
  position: relative;

  min-height: 100vh;

  padding-top: 130px;

  background:
    radial-gradient(
      circle at 78% 30%,
      rgba(225, 217, 185, .055),
      transparent 35%
    ),
    #0b0d0d;

  overflow: hidden;
}


.hero-lines {
  position: absolute;

  inset: 0;

  pointer-events: none;

  opacity: .35;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, .025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, .025) 1px,
      transparent 1px
    );

  background-size:
    70px 70px;
}


.hero-layout {
  position: relative;

  min-height:
    calc(100vh - 220px);

  display: grid;

  grid-template-columns:
    1.15fr .85fr;

  align-items: center;

  gap: 75px;

  padding:
    80px 0 75px;
}


.hero-copy {
  min-width: 0;

  position: relative;

  z-index: 2;
}


.availability {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 38px;

  font:
    500 12px
    var(--font-display);

  text-transform: uppercase;

  letter-spacing: .1em;

  color: #babcb8;
}


.availability > span {
  width: 42px;
  height: 1px;

  background: var(--accent);
}


.hero-index {
  margin:
    0 0 18px;

  font:
    600 12px
    var(--font-display);

  letter-spacing: .28em;

  color: #747b77;
}


.hero h1 {
  margin:
    0 0 45px;

  max-width: 870px;

  font:
    400 clamp(
      4.8rem,
      8.1vw,
      8rem
    )/.82
    var(--font-display);

  letter-spacing: -.075em;

  color: #f2f0e9;
}


.hero h1 em {
  font-style: normal;

  font-weight: 400;

  color: #9d9c95;
}


.hero-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  margin-bottom: 55px;
}


.btn {
  min-width: 205px;
  min-height: 58px;

  padding:
    0 18px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 25px;

  border:
    1px solid var(--line);

  border-radius: 5px;

  font:
    600 13px
    var(--font-main);

  transition:
    transform .3s var(--ease),
    background .3s ease,
    color .3s ease;
}


.btn:hover {
  transform:
    translateY(-3px);
}


.btn-primary {
  background: var(--light);

  color: #121514;

  border-color: var(--light);
}


.btn-primary:hover {
  background: #fff;
}


.btn-outline {
  background: transparent;

  color: #e5e5df;
}


.btn-outline:hover {
  background:
    rgba(255, 255, 255, .05);
}


.btn span {
  font-size: 18px;
}


.hero-meta {
  max-width: 740px;

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  border-top:
    1px solid var(--line);
}


.hero-meta > div {
  padding:
    24px 18px 0 0;
}


.hero-meta small {
  display: block;

  margin-bottom: 7px;

  font:
    500 9px
    var(--font-display);

  letter-spacing: .18em;

  color: #707773;
}


.hero-meta strong {
  display: block;

  font-size: 13px;

  font-weight: 500;

  color: #dbddd9;
}



/* =====================================================
   PORTRAIT
===================================================== */

.hero-stage {
  min-width: 0;

  display: flex;

  justify-content: center;
}


.portrait-card {
  position: relative;

  width:
    min(
      100%,
      430px
    );

  padding: 12px;

  background: #171a19;

  border:
    1px solid rgba(255, 255, 255, .14);

  border-radius: 5px;

  box-shadow:
    0 35px 90px rgba(0, 0, 0, .28);
}


.portrait-window {
  overflow: hidden;

  background: #fff;

  border-radius: 2px;
}


.portrait-window img {
  width: 100%;

  aspect-ratio:
    4 / 5;

  object-fit: cover;

  object-position:
    center top;
}


.portrait-caption {
  padding:
    17px 4px 5px;

  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 20px;
}


.portrait-caption div {
  display: flex;
  flex-direction: column;

  gap: 2px;
}


.portrait-caption span {
  font:
    500 11px
    var(--font-display);

  color: #b9bfbb;
}


.portrait-caption strong {
  font:
    500 14px
    var(--font-display);

  color: #efefe9;
}


.portrait-caption small {
  font-size: 9px;

  color: #727975;
}



/* =====================================================
   EXPERTISE STRIP
===================================================== */

.expertise-strip {
  position: relative;

  z-index: 2;

  border-top:
    1px solid var(--line);

  border-bottom:
    1px solid var(--line);

  background:
    rgba(255, 255, 255, .015);
}


.expertise-list {
  min-height: 72px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 22px;
}


.expertise-list span {
  font:
    500 11px
    var(--font-display);

  letter-spacing: .055em;

  color: #a5aaa7;

  white-space: nowrap;
}


.expertise-list i {
  width: 4px;
  height: 4px;

  flex-shrink: 0;

  background: #6b716e;

  border-radius: 50%;
}



/* =====================================================
   SECTION TITLE
===================================================== */

.section-title {
  margin-bottom: 70px;
}


.section-title > p,
.section-title > div > p {
  margin:
    0 0 15px;

  font:
    600 10px
    var(--font-display);

  letter-spacing: .2em;

  color: var(--accent-dark);
}


.section-dark .section-title > p,
.section-dark .section-title > div > p,
.section-dark-alt .section-title > p,
.section-dark-alt .section-title > div > p {
  color: var(--accent);
}


.section-title h2 {
  margin: 0;

  max-width: 950px;

  font:
    500 clamp(
      3.5rem,
      6vw,
      6.2rem
    )/.92
    var(--font-display);

  letter-spacing: -.065em;
}


.section-title h2 span {
  color: #8a8c86;
}


.section-light .section-title h2 span,
.section-light-alt .section-title h2 span {
  color: #858279;
}


.section-title.split {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 65px;
}


.section-note {
  max-width: 430px;

  margin:
    0 0 5px;

  color: #969e99;

  font-size: 14px;

  line-height: 1.75;
}


.dark-note {
  color: #696e6b;
}



/* =====================================================
   ABOUT
===================================================== */

.about-grid {
  display: grid;

  grid-template-columns:
    .75fr 1.25fr;

  align-items: center;

  gap: 90px;
}


.about-photo {
  position: relative;

  max-width: 480px;
}


.about-photo::before {
  content: "";

  position: absolute;

  inset:
    -14px 14px 14px -14px;

  border:
    1px solid rgba(20, 24, 22, .22);

  pointer-events: none;
}


.about-photo img {
  position: relative;

  z-index: 1;

  width: 100%;

  aspect-ratio:
    .82;

  object-fit: cover;

  object-position: center;
}


.about-photo figcaption {
  margin-top: 12px;

  font:
    600 9px
    var(--font-display);

  letter-spacing: .14em;

  color: #757a76;
}


.about-copy {
  max-width: 750px;
}


.about-big {
  margin:
    0 0 28px;

  font:
    500 clamp(
      1.6rem,
      2.65vw,
      2.5rem
    )/1.28
    var(--font-display);

  letter-spacing: -.035em;
}


.about-copy > p:not(.about-big) {
  margin: 0;

  max-width: 680px;

  color: #5e6561;

  font-size: 14px;

  line-height: 1.9;
}



/* =====================================================
   EDUCATION / ORGANIZATION
===================================================== */

.education-organization-grid {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 90px;
}


.journey-track {
  position: relative;

  padding-left: 31px;
}


.journey-track::before {
  content: "";

  position: absolute;

  left: 4px;
  top: 8px;
  bottom: 15px;

  width: 1px;

  background:
    rgba(17, 20, 19, .18);
}


.journey-track article {
  position: relative;

  padding-bottom: 55px;
}


.journey-track article:last-child {
  padding-bottom: 0;
}


.journey-track article::before {
  content: "";

  position: absolute;

  left: -31px;
  top: 7px;

  width: 9px;
  height: 9px;

  background: #171a18;

  border-radius: 50%;

  box-shadow:
    0 0 0 5px var(--light-alt),
    0 0 0 6px rgba(17, 20, 19, .2);
}


.journey-track time,
.org-item time {
  font:
    600 10px
    var(--font-display);

  letter-spacing: .08em;

  color: #777b76;
}


.journey-track h3,
.org-item h3 {
  margin:
    8px 0 7px;

  font:
    500 clamp(
      1.45rem,
      2.3vw,
      2.2rem
    )/1.15
    var(--font-display);

  letter-spacing: -.04em;
}


.journey-track p,
.org-item p {
  margin: 0;

  color: #5d625f;

  font-size: 13px;
}


.journey-track small {
  display: block;

  max-width: 580px;

  margin-top: 12px;

  color: #747975;

  font-size: 12px;

  line-height: 1.7;
}


.subsection-label {
  margin-bottom: 22px;

  padding-bottom: 13px;

  border-bottom:
    1px solid var(--line-dark);

  font:
    600 10px
    var(--font-display);

  letter-spacing: .16em;

  color: #736c56;
}


.org-item {
  padding:
    0 0 28px;

  margin-bottom: 27px;

  border-bottom:
    1px solid var(--line-dark);
}



/* =====================================================
   EXPERIENCE
===================================================== */

.experience-list {
  border-top:
    1px solid var(--line);
}


.exp-item {
  display: grid;

  grid-template-columns:
    55px 1fr;

  gap: 25px;

  padding:
    55px 0;

  border-bottom:
    1px solid var(--line);
}


.exp-number {
  padding-top: 7px;

  font:
    600 10px
    var(--font-display);

  letter-spacing: .16em;

  color: #626965;
}


.exp-heading {
  display: flex;

  align-items: flex-start;
  justify-content: space-between;

  gap: 40px;
}


.badge {
  display: inline-block;

  margin-bottom: 11px;

  padding:
    5px 8px;

  border:
    1px solid rgba(216, 208, 174, .3);

  font:
    600 8px
    var(--font-display);

  letter-spacing: .13em;

  color: var(--accent);
}


.exp-heading h3 {
  margin:
    0 0 7px;

  font:
    500 clamp(
      1.7rem,
      3vw,
      2.8rem
    )/1.05
    var(--font-display);

  letter-spacing: -.045em;
}


.exp-heading p {
  margin: 0;

  color: #8d9590;

  font-size: 13px;
}


.exp-heading time {
  flex-shrink: 0;

  padding-top: 8px;

  font:
    500 10px
    var(--font-display);

  color: #6f7772;
}


.exp-content {
  margin-top: 35px;

  display: grid;

  grid-template-columns:
    .95fr 1.05fr;

  gap: 60px;
}


.exp-content.compact {
  grid-template-columns:
    1.1fr .9fr;
}


.exp-content ul {
  padding-left: 20px;
}


.exp-content li {
  margin-bottom: 12px;

  color: #a0a7a3;

  font-size: 13px;

  line-height: 1.75;
}


.exp-photos {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 10px;
}


.exp-photos.one {
  grid-template-columns: 1fr;
}


.exp-photos img {
  width: 100%;

  height: 260px;

  object-fit: cover;
}



/* =====================================================
   PROJECTS
===================================================== */

.project-case-list {
  display: grid;

  gap: 34px;
}


.project-case {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  min-height: 600px;

  background: #151818;

  border:
    1px solid var(--line);

  overflow: hidden;
}


.project-case.reverse
.project-case-media {
  order: 2;
}


.project-case.reverse
.project-case-copy {
  order: 1;
}


.project-case-media {
  position: relative;

  min-width: 0;

  overflow: hidden;

  background: #181c1b;
}


.project-case-media > img:first-child {
  width: 100%;
  height: 100%;

  min-height: 600px;

  object-fit: cover;

  transition:
    transform .7s var(--ease);
}


.project-case:hover
.project-case-media > img:first-child {
  transform:
    scale(1.025);
}


.project-secondary {
  position: absolute;

  right: 20px;
  bottom: 20px;

  width: 37%;

  aspect-ratio:
    4 / 3;

  object-fit: cover;

  border:
    5px solid #151818;

  box-shadow:
    0 15px 35px rgba(0, 0, 0, .22);
}


.project-number {
  position: absolute;

  top: 20px;
  left: 20px;

  padding:
    7px 9px;

  background:
    rgba(8, 10, 10, .78);

  backdrop-filter: blur(10px);

  font:
    600 9px
    var(--font-display);

  letter-spacing: .12em;
}


.project-case-copy {
  padding:
    55px 48px;

  display: flex;

  flex-direction: column;
  justify-content: center;

  min-width: 0;
}


.project-type {
  margin:
    0 0 10px;

  font:
    600 9px
    var(--font-display);

  letter-spacing: .16em;

  text-transform: uppercase;

  color: var(--accent);
}


.project-case-copy h3 {
  margin:
    0 0 23px;

  font:
    500 clamp(
      2rem,
      3.2vw,
      3.2rem
    )/1.05
    var(--font-display);

  letter-spacing: -.05em;
}


.project-summary {
  margin:
    0 0 28px;

  color: #a0a7a2;

  font-size: 13px;

  line-height: 1.85;
}


.contribution-block {
  padding-top: 25px;

  border-top:
    1px solid var(--line);
}


.contribution-block h4 {
  margin:
    0 0 16px;

  font:
    600 11px
    var(--font-display);

  letter-spacing: .04em;
}


.contribution-block ul {
  padding-left: 18px;
}


.contribution-block li {
  margin-bottom: 8px;

  color: #979f9a;

  font-size: 12px;

  line-height: 1.7;
}


.project-stack {
  margin-top: 28px;

  padding-top: 18px;

  border-top:
    1px solid var(--line);

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  gap: 9px;

  color: #7f8782;

  font:
    600 9px
    var(--font-display);

  letter-spacing: .05em;
}


.project-stack i {
  width: 3px;
  height: 3px;

  background: #626965;

  border-radius: 50%;
}



/* =====================================================
   MORE NOTE
===================================================== */

.more-note {
  max-width: 720px;

  margin-top: 45px;

  display: flex;

  gap: 15px;

  align-items: flex-start;
}


.more-note > span {
  font:
    400 30px
    var(--font-display);

  line-height: 1;
}


.more-note p {
  margin: 3px 0 0;

  color: #979e99;

  font-size: 13px;
}


.more-note.dark-text p {
  color: #696e69;
}



/* =====================================================
   CERTIFICATION
===================================================== */

.certification-layout {
  display: grid;

  grid-template-columns:
    .75fr 1.25fr;

  gap: 70px;

  align-items: start;
}


.certificate-preview-grid {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 14px;
}


.certificate-preview-grid figure {
  padding: 10px;

  background: #e5e4dd;

  border:
    1px solid var(--line-dark);
}


.certificate-preview-grid img {
  width: 100%;

  aspect-ratio:
    3 / 4;

  object-fit: contain;

  background: #fff;
}


.certificate-preview-grid figcaption {
  padding:
    10px 2px 2px;

  color: #696d69;

  font-size: 10px;
}


.training-table {
  border-top:
    1px solid var(--line-dark);
}


.training-row {
  display: grid;

  grid-template-columns:
    60px 1.2fr 1fr 1.15fr;

  border-bottom:
    1px solid var(--line-dark);
}


.training-row span {
  padding:
    15px 13px;

  border-right:
    1px solid var(--line-dark);

  color: #565b57;

  font-size: 11px;

  line-height: 1.55;
}


.training-row span:last-child {
  border-right: 0;
}


.training-head span {
  font:
    600 9px
    var(--font-display);

  letter-spacing: .08em;

  text-transform: uppercase;

  color: #1e2220;
}



/* =====================================================
   PROFESSIONAL
===================================================== */

.professional-grid {
  display: grid;

  gap: 16px;

  max-width: 1050px;
}


.professional-card {
  display: grid;

  grid-template-columns:
    310px 1fr;

  min-height: 260px;

  background: #efeee7;

  border:
    1px solid var(--line-dark);

  overflow: hidden;

  transition:
    transform .35s var(--ease),
    box-shadow .35s ease;
}


.professional-card:hover {
  transform:
    translateY(-4px);

  box-shadow:
    0 18px 45px rgba(20, 20, 18, .08);
}


.professional-image {
  overflow: hidden;
}


.professional-image img {
  width: 100%;
  height: 100%;

  min-height: 260px;

  object-fit: cover;
}


.professional-copy {
  padding:
    35px 38px;

  align-self: center;
}


.professional-copy time {
  font:
    600 10px
    var(--font-display);

  color: #747873;
}


.professional-copy h3 {
  margin:
    8px 0 7px;

  font:
    500 clamp(
      1.4rem,
      2.2vw,
      2rem
    )/1.15
    var(--font-display);

  letter-spacing: -.035em;
}


.professional-org {
  margin:
    0 0 17px !important;

  color: #847a5f !important;

  font-size: 11px !important;

  font-weight: 600;
}


.professional-copy > p {
  margin: 0;

  max-width: 640px;

  color: #656a65;

  font-size: 13px;

  line-height: 1.75;
}



/* =====================================================
   SKILLS
===================================================== */

.skills-grid {
  display: grid;

  grid-template-columns:
    1.25fr .75fr;

  gap: 15px;
}


.skill-card {
  position: relative;

  min-height: 340px;

  padding:
    38px;

  background: #121515;

  border:
    1px solid var(--line);
}


.skill-number {
  display: block;

  margin-bottom: 38px;

  font:
    600 9px
    var(--font-display);

  letter-spacing: .18em;

  color: #646b67;
}


.skill-card h3 {
  margin:
    0 0 28px;

  font:
    500 clamp(
      1.7rem,
      2.5vw,
      2.4rem
    )
    var(--font-display);

  letter-spacing: -.04em;
}


.skill-cloud {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;
}


.skill-cloud span {
  padding:
    8px 10px;

  border:
    1px solid var(--line);

  font-size: 11px;

  color: #a6ada8;
}


.software-list {
  padding-left: 18px;

  columns: 2;

  column-gap: 45px;
}


.software-list li {
  margin-bottom: 10px;

  break-inside: avoid;

  color: #9ca39f;

  font-size: 12px;
}


.language-card {
  background: #d6cfb3;

  color: #151817;

  border-color: transparent;
}


.language-card .skill-number {
  color: #837c62;
}


.language-score {
  display: grid;

  gap: 14px;
}


.language-score > div {
  padding:
    17px 0;

  display: flex;

  flex-direction: column;

  gap: 4px;

  border-bottom:
    1px solid rgba(20, 23, 21, .18);
}


.language-score span {
  font-size: 11px;

  color: #655f4b;
}


.language-score b {
  font:
    600 18px
    var(--font-display);
}



/* =====================================================
   CONTACT
===================================================== */

.contact {
  background: #080a0a;
}


.contact-shell {
  position: relative;

  padding:
    75px 65px;

  min-height: 600px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  background: #121414;

  border:
    1px solid var(--line);

  overflow: hidden;
}


.contact-kicker {
  margin:
    0 0 25px;

  font:
    600 10px
    var(--font-display);

  letter-spacing: .18em;

  color: var(--accent);
}


.contact-shell h2 {
  margin:
    0;

  font:
    400 clamp(
      4.2rem,
      8vw,
      8.2rem
    )/.84
    var(--font-display);

  letter-spacing: -.075em;
}


.contact-shell h2 em {
  font-style: normal;

  color: #a9a69b;
}


.contact-intro {
  max-width: 620px;

  margin:
    35px 0 50px;

  color: #919893;

  font-size: 14px;

  line-height: 1.8;
}


.contact-row {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  border-top:
    1px solid var(--line);

  border-bottom:
    1px solid var(--line);
}


.contact-row > a {
  min-width: 0;

  padding:
    22px 20px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 15px;

  border-right:
    1px solid var(--line);

  transition:
    background .25s ease;
}


.contact-row > a:last-child {
  border-right: 0;
}


.contact-row > a:hover {
  background:
    rgba(255, 255, 255, .035);
}


.contact-row small {
  display: block;

  margin-bottom: 5px;

  font:
    600 8px
    var(--font-display);

  letter-spacing: .16em;

  color: #686f6b;
}


.contact-row strong {
  display: block;

  min-width: 0;

  font-size: 12px;

  font-weight: 500;

  overflow-wrap: anywhere;
}


.contact-row > a > span {
  flex-shrink: 0;

  font-size: 19px;
}



/* =====================================================
   FOOTER
===================================================== */

footer {
  background: #080a0a;

  border-top:
    1px solid var(--line);
}


.footer-inner {
  min-height: 120px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;

  color: #727975;

  font-size: 10px;
}


.footer-inner > div {
  display: flex;

  flex-direction: column;

  gap: 2px;
}


.footer-inner b {
  color: #c9cdc9;

  font:
    600 10px
    var(--font-display);
}



/* =====================================================
   REVEAL
===================================================== */

.reveal {
  opacity: 0;

  transform:
    translateY(24px);

  transition:
    opacity .8s var(--ease),
    transform .8s var(--ease);
}


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


.reveal.is-visible {
  opacity: 1;

  transform:
    translateY(0);
}



/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

  .container {
    width:
      min(
        calc(100% - 50px),
        var(--container)
      );
  }


  .hero-layout {
    grid-template-columns:
      1fr .8fr;

    gap: 40px;
  }


  .hero h1 {
    font-size:
      clamp(
        4.4rem,
        8.3vw,
        7rem
      );
  }


  .site-nav > a {
    padding:
      10px 7px;

    font-size: 10px;
  }


  .about-grid {
    gap: 55px;
  }


  .education-organization-grid {
    gap: 55px;
  }


  .project-case-copy {
    padding:
      42px 34px;
  }


  .certification-layout {
    gap: 45px;
  }

}



/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

  html,
  body {
    width: 100%;

    max-width: 100%;

    overflow-x: hidden;
  }


  .container {
    width: 100%;

    padding-left: 20px;
    padding-right: 20px;
  }



  /* =============================
     HEADER MOBILE
  ============================== */

  .site-header {
    top:
      calc(
        env(safe-area-inset-top)
        + 10px
      );

    left: 12px;
    right: 12px;

    width: auto;
  }


  .nav-shell {
    position: relative;

    width: 100%;

    min-height: 62px;

    padding:
      0 12px 0 16px;

    border-radius: 16px;
  }


  .brand {
    min-width: 0;
  }


  .brand-copy b {
    font-size: 12px;
  }


  .brand-copy small {
    font-size: 8px;
  }



  /* =============================
     HAMBURGER
  ============================== */

  .nav-toggle {
    position: relative;

    z-index: 10002;

    width: 44px;
    height: 44px;

    flex-shrink: 0;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 0;

    background: transparent;

    border: 0;

    cursor: pointer;
  }


  .nav-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    flex-shrink: 0;

    background: #efeee8;

    border-radius: 10px;

    transition:
      transform .3s ease,
      opacity .3s ease;
  }


  .nav-toggle[
    aria-expanded="true"
  ]
  span:first-child {

    transform:
      translateY(4.5px)
      rotate(45deg);

  }


  .nav-toggle[
    aria-expanded="true"
  ]
  span:last-child {

    transform:
      translateY(-4.5px)
      rotate(-45deg);

  }



  /* =============================
     MENU MOBILE
  ============================== */

  .site-nav {
    position: fixed;

    top:
      calc(
        env(safe-area-inset-top)
        + 83px
      );

    left: 12px;
    right: 12px;

    width: auto;

    max-height:
      calc(
        100dvh
        - env(safe-area-inset-top)
        - 105px
      );

    overflow-y: auto;

    display: flex;

    flex-direction: column;

    align-items: stretch;

    gap: 0;

    padding: 8px;

    background:
      rgba(11, 14, 14, .98);

    border:
      1px solid rgba(
        255,
        255,
        255,
        .13
      );

    border-radius: 16px;

    backdrop-filter:
      blur(22px);

    -webkit-backdrop-filter:
      blur(22px);

    box-shadow:
      0 24px 70px rgba(
        0,
        0,
        0,
        .5
      );

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform:
      translateY(-8px)
      scale(.985);

    transform-origin: top;

    transition:
      opacity .22s ease,
      visibility .22s ease,
      transform .28s var(--ease);

    z-index: 10001;
  }


  .site-nav.is-open {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
      translateY(0)
      scale(1);
  }


  .site-nav > a {
    width: 100%;

    padding:
      14px 13px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    border-radius: 0;

    border-bottom:
      1px solid rgba(
        255,
        255,
        255,
        .075
      );

    color: #d4d8d4;

    font-size: 13px;
  }


  .site-nav > a:last-child {
    border-bottom: 0;
  }


  .site-nav .nav-contact {
    margin:
      7px 0 0;

    padding:
      14px 14px;

    border-radius: 9px;

    background: var(--light);

    color: #141716;
  }



  /* =============================
     HERO MOBILE
  ============================== */

  .hero {
    min-height: 0;

    padding-top:
      calc(
        env(safe-area-inset-top)
        + 100px
      );
  }


  .hero-layout {
    min-height: 0;

    display: grid;

    grid-template-columns: 1fr;

    gap: 55px;

    padding:
      50px 20px 55px;
  }


  .hero-copy {
    width: 100%;

    min-width: 0;
  }


  .availability {
    margin-bottom: 31px;

    gap: 9px;

    font-size: 10px;

    line-height: 1.5;

    letter-spacing: .08em;
  }


  .availability > span {
    width: 32px;
  }


  .hero-index {
    margin-bottom: 19px;

    font-size: 10px;

    letter-spacing: .23em;
  }


  .hero h1 {
    width: 100%;

    max-width: 100%;

    margin-bottom: 37px;

    font-size:
      clamp(
        3.05rem,
        13.2vw,
        4.5rem
      );

    line-height: .88;

    letter-spacing: -.065em;

    overflow-wrap: normal;

    word-break: normal;

    hyphens: none;
  }


  .hero h1 em {
    display: block;

    font-size: .94em;

    line-height: .92;

    white-space: normal;
  }


  .hero-actions {
    display: grid;

    grid-template-columns: 1fr;

    gap: 9px;

    margin-bottom: 45px;
  }


  .btn {
    width: 100%;

    min-width: 0;
    min-height: 56px;

    padding:
      0 18px;
  }


  .hero-meta {
    width: 100%;

    grid-template-columns: 1fr;
  }


  .hero-meta > div {
    padding:
      18px 0;

    border-bottom:
      1px solid var(--line);
  }


  .hero-meta strong {
    font-size: 14px;
  }



  /* PORTRAIT */

  .hero-stage {
    width: 100%;

    justify-content: center;
  }


  .portrait-card {
    width:
      min(
        100%,
        390px
      );
  }


  .portrait-window img {
    height: auto;

    aspect-ratio: auto;

    object-fit: contain;
  }


  .portrait-caption {
    align-items: flex-start;

    flex-direction: column;

    gap: 8px;
  }



  /* EXPERTISE */

  .expertise-list {
    justify-content: flex-start;

    gap: 18px;

    min-height: 61px;

    overflow-x: auto;

    white-space: nowrap;

    scrollbar-width: none;
  }


  .expertise-list::-webkit-scrollbar {
    display: none;
  }


  .expertise-list i {
    display: none;
  }



  /* =============================
     GENERAL SECTIONS
  ============================== */

  .section {
    padding:
      82px 0;
  }


  .section-title {
    margin-bottom: 43px;
  }


  .section-title.split {
    flex-direction: column;

    align-items: flex-start;

    gap: 20px;
  }


  .section-title h2 {
    max-width: 100%;

    font-size:
      clamp(
        2.6rem,
        11.7vw,
        4.2rem
      );

    line-height: .96;
  }


  .section-note {
    width: 100%;

    max-width: 100%;

    font-size: 13px;
  }



  /* =============================
     ABOUT MOBILE
  ============================== */

  .about-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }


  .about-photo {
    width: 100%;

    max-width: 450px;

    margin-inline: auto;
  }


  .about-photo img {
    width: 100%;

    height: auto;

    aspect-ratio: auto;

    object-fit: contain;
  }


  .about-big {
    font-size:
      clamp(
        1.35rem,
        6vw,
        1.8rem
      );

    line-height: 1.35;
  }



  /* =============================
     EDUCATION MOBILE
  ============================== */

  .education-organization-grid {
    grid-template-columns: 1fr;

    gap: 65px;
  }


  .journey-track {
    padding-left: 26px;
  }


  .journey-track article::before {
    left: -26px;
  }


  .journey-track h3,
  .org-item h3 {
    font-size: 1.5rem;
  }



  /* =============================
     EXPERIENCE MOBILE
  ============================== */

  .exp-item {
    grid-template-columns: 1fr;

    gap: 10px;

    padding:
      38px 0;
  }


  .exp-heading {
    flex-direction: column;

    gap: 12px;
  }


  .exp-heading time {
    padding-top: 0;
  }


  .exp-content,
  .exp-content.compact {
    grid-template-columns: 1fr;

    gap: 28px;

    margin-top: 28px;
  }


  .exp-content ul {
    padding-left: 18px;
  }


  .exp-photos {
    grid-template-columns: 1fr;
  }


  .exp-photos img {
    height: auto;

    max-height: 370px;

    object-fit: cover;
  }



  /* =============================
     PROJECT MOBILE
  ============================== */

  .project-case,
  .project-case.reverse {
    min-height: 0;

    grid-template-columns: 1fr;
  }


  .project-case-media,
  .project-case.reverse
  .project-case-media {

    order: 1;

  }


  .project-case-copy,
  .project-case.reverse
  .project-case-copy {

    order: 2;

  }


  .project-case-media
  > img:first-child {

    width: 100%;

    height: auto;

    min-height: 0;

    aspect-ratio:
      4 / 3;

    object-fit: cover;

  }


  .project-secondary {
    display: none;
  }


  .project-case-copy {
    padding:
      31px 22px;
  }


  .project-case-copy h3 {
    font-size:
      clamp(
        1.8rem,
        8vw,
        2.5rem
      );
  }


  .project-summary {
    font-size: 13px;
  }


  .contribution-block li {
    font-size: 12px;
  }


  .project-stack {
    line-height: 1.8;
  }



  /* =============================
     CERTIFICATE MOBILE
  ============================== */

  .certification-layout {
    grid-template-columns: 1fr;

    gap: 55px;
  }


  .certificate-preview-grid {
    grid-template-columns:
      1fr 1fr;
  }


  .training-head {
    display: none;
  }


  .training-row {
    display: grid;

    grid-template-columns: 1fr;

    gap: 13px;

    padding:
      20px 0;
  }


  .training-row span {
    padding: 0;

    border-right: 0;

    font-size: 12px;
  }


  .training-row span::before {
    display: block;

    margin-bottom: 2px;

    font:
      600 8px
      var(--font-display);

    letter-spacing: .13em;

    color: #898d88;
  }


  .training-row
  span:nth-child(1)::before {

    content: "TAHUN";

  }


  .training-row
  span:nth-child(2)::before {

    content: "INSTITUSI";

  }


  .training-row
  span:nth-child(3)::before {

    content: "TOPIC";

  }


  .training-row
  span:nth-child(4)::before {

    content: "LOKASI";

  }



  /* =============================
     PROFESSIONAL MOBILE
  ============================== */

  .professional-card {
    grid-template-columns: 1fr;

    min-height: 0;
  }


  .professional-image img {
    min-height: 0;

    height: auto;

    max-height: 370px;

    object-fit: cover;
  }


  .professional-copy {
    padding:
      26px 22px;
  }



  /* =============================
     SKILLS MOBILE
  ============================== */

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


  .skill-card {
    min-height: 0;

    padding:
      28px 22px;
  }


  .skill-number {
    margin-bottom: 28px;
  }


  .software-list {
    columns: 1;
  }



  /* =============================
     CONTACT MOBILE
  ============================== */

  .contact-shell {
    min-height: 0;

    padding:
      48px 22px;
  }


  .contact-shell h2 {
    font-size:
      clamp(
        3.3rem,
        14vw,
        5rem
      );

    line-height: .9;
  }


  .contact-intro {
    margin:
      28px 0 38px;

    font-size: 13px;
  }


  .contact-row {
    grid-template-columns: 1fr;
  }


  .contact-row > a {
    width: 100%;

    padding:
      19px 5px;

    border-right: 0;

    border-bottom:
      1px solid var(--line);
  }


  .contact-row > a:last-child {
    border-bottom: 0;
  }


  .contact-row strong {
    overflow-wrap: anywhere;

    word-break: break-word;
  }



  /* =============================
     FOOTER MOBILE
  ============================== */

  .footer-inner {
    min-height: 0;

    padding:
      35px 20px
      calc(
        35px
        + env(safe-area-inset-bottom)
      );

    align-items: flex-start;

    flex-direction: column;

    gap: 15px;
  }



  /* Cursor tidak berguna di HP */

  .cursor-glow {
    display: none;
  }

}



/* =====================================================
   SMALL PHONE
===================================================== */

@media (max-width: 390px) {

  .container {
    padding-left: 17px;
    padding-right: 17px;
  }


  .site-header {
    left: 9px;
    right: 9px;
  }


  .site-nav {
    left: 9px;
    right: 9px;
  }


  .hero-layout {
    padding-left: 17px;
    padding-right: 17px;
  }


  .hero h1 {
    font-size:
      clamp(
        2.75rem,
        13vw,
        4rem
      );
  }


  .availability {
    font-size: 9px;
  }


  .certificate-preview-grid {
    grid-template-columns: 1fr;
  }


  .section-title h2 {
    font-size:
      clamp(
        2.4rem,
        11vw,
        3.7rem
      );
  }


  .contact-shell h2 {
    font-size:
      clamp(
        3rem,
        14vw,
        4.3rem
      );
  }

}



/* =====================================================
   REDUCED MOTION
===================================================== */

@media (
  prefers-reduced-motion:
  reduce
) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;

    transition-duration:
      .01ms !important;

    animation-duration:
      .01ms !important;

    animation-iteration-count:
      1 !important;
  }

}