/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600&family=Space+Grotesk:wght@400;500;700&display=swap');


/**
 * copyright 2022 @codewithsadee
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  /* gradient */

  --bg-gradient-onyx: #fffdf8;
  --bg-gradient-jet: #ffffff;
  --bg-gradient-yellow-1: #d72638;
  --bg-gradient-yellow-2: #fff7f2;
  --border-gradient-onyx: #e6ddd2;
  --text-gradient-yellow: #d72638;

  /* solid */

  --jet: hsl(217, 28%, 85%);
  --onyx: hsl(216, 33%, 95%);
  --eerie-black-1: hsl(0, 0%, 100%);
  --eerie-black-2: hsla(0, 0%, 100%, 0.78);
  --smoky-black: hsl(42, 45%, 96%);
  --white-1: hsl(223, 31%, 12%);
  --white-2: hsl(222, 36%, 16%);
  --orange-yellow-crayola: hsl(356, 71%, 49%);
  --vegas-gold: hsl(220, 78%, 53%);
  --light-gray: hsl(217, 24%, 28%);
  --light-gray-70: hsla(217, 24%, 28%, 0.74);
  --bittersweet-shimmer: hsl(356, 71%, 49%);
  --accent-red: hsl(356, 71%, 49%);
  --accent-blue: hsl(220, 78%, 53%);
  --accent-yellow: hsl(46, 92%, 53%);
  --accent-black: hsl(223, 31%, 12%);
  --shape-black-soft: rgba(18, 18, 18, 0.12);
  --shape-black-strong: rgba(18, 18, 18, 0.9);
  --shape-red-soft: rgba(215, 38, 56, 0.12);
  --shape-red-strong: rgba(215, 38, 56, 0.88);
  --shape-blue-soft: rgba(37, 99, 235, 0.14);
  --shape-blue-strong: rgba(37, 99, 235, 0.86);

  /**
   * typography
   */

  /* font-family */
  --ff-poppins: 'Space Grotesk', sans-serif;
  --ff-body: 'IBM Plex Sans', sans-serif;

  /* font-size */
  --fs-1: 24px;
  --fs-2: 18px;
  --fs-3: 17px;
  --fs-4: 16px;
  --fs-5: 15px;
  --fs-6: 14px;
  --fs-7: 13px;
  --fs-8: 11px;

  /* font-weight */
  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;

  /**
   * shadow
   */
  
  --shadow-1: 0 18px 40px hsla(220, 38%, 26%, 0.08);
  --shadow-2: 0 22px 48px hsla(220, 38%, 26%, 0.1);
  --shadow-3: 0 28px 65px hsla(220, 38%, 26%, 0.12);
  --shadow-4: 0 35px 80px hsla(220, 38%, 26%, 0.14);
  --shadow-5: 0 40px 100px hsla(220, 38%, 26%, 0.18);
  --neon-red-soft: 0 0 0 1px rgba(215, 38, 56, 0.14), 0 0 16px rgba(215, 38, 56, 0.08);
  --neon-red-medium: 0 0 0 1px rgba(215, 38, 56, 0.24), 0 0 22px rgba(215, 38, 56, 0.14), 0 0 38px rgba(215, 38, 56, 0.08);
  --neon-red-strong: 0 0 0 1px rgba(215, 38, 56, 0.34), 0 0 28px rgba(215, 38, 56, 0.2), 0 0 52px rgba(215, 38, 56, 0.12);

  /**
   * transition
   */

  --transition-1: 0.18s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-2: 0.34s cubic-bezier(0.22, 1, 0.36, 1);

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

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

a { text-decoration: none; }

li { list-style: none; }

img, ion-icon, a, button, time, span { display: block; }

button {
  font: inherit;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}

input, textarea {
  display: block;
  width: 100%;
  background: none;
  font: inherit;
}

::selection {
  background: var(--orange-yellow-crayola);
  color: var(--smoky-black);
}

:focus { outline-color: var(--orange-yellow-crayola); }

html {
  font-family: var(--ff-poppins);
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: var(--ff-body);
  background: #f7f1e8;
  color: var(--light-gray);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
}

.cosmos-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  transform: translate3d(var(--cosmos-parallax-x, 0px), var(--cosmos-parallax-y, 0px), 0);
  transition: transform 0.22s linear;
}

.cosmos-shape,
.cosmos-star {
  position: absolute;
  display: block;
  will-change: transform;
}

.cosmos-shape {
  filter: drop-shadow(0 20px 40px rgba(17, 24, 39, 0.08));
  transform-origin: center center;
}

.cosmos-shape-1 {
  top: 7%;
  left: 6%;
  width: 132px;
  height: 132px;
  background: rgba(18, 18, 18, 0.9);
  border-radius: 38% 62% 54% 46% / 42% 36% 64% 58%;
  animation: cosmos-orbit-a 15.8s linear infinite;
}

.cosmos-shape-2 {
  top: 16%;
  right: 8%;
  width: 94px;
  height: 184px;
  background: rgba(215, 38, 56, 0.9);
  border-radius: 28px 28px 54px 12px;
  clip-path: polygon(24% 0, 100% 0, 76% 100%, 0 100%);
  animation: cosmos-orbit-b 16.8s linear infinite;
}

.cosmos-shape-3 {
  top: 45%;
  left: -24px;
  width: 164px;
  height: 64px;
  background: rgba(215, 38, 56, 0.84);
  border-radius: 999px;
  animation: cosmos-orbit-c 15.2s linear infinite;
}

.cosmos-shape-4 {
  top: 56%;
  right: 12%;
  width: 120px;
  height: 120px;
  background: rgba(18, 18, 18, 0.86);
  border-radius: 20px 20px 62px 20px;
  animation: cosmos-orbit-a 18.4s linear infinite reverse;
}

.cosmos-shape-5 {
  bottom: 9%;
  left: 15%;
  width: 82px;
  height: 210px;
  background: rgba(37, 99, 235, 0.2);
  border-radius: 999px;
  animation: cosmos-orbit-b 15.8s linear infinite reverse;
}

.cosmos-shape-6 {
  right: -34px;
  bottom: 12%;
  width: 188px;
  height: 188px;
  background: rgba(18, 18, 18, 0.9);
  border-radius: 34% 66% 52% 48% / 40% 31% 69% 60%;
  animation: cosmos-orbit-c 19.2s linear infinite;
}

.cosmos-star {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
  animation: cosmos-twinkle 2.6s ease-in-out infinite;
}

.cosmos-star-1 {
  top: 20%;
  left: 28%;
  animation-delay: -1s;
}

.cosmos-star-2 {
  top: 38%;
  right: 22%;
  width: 8px;
  height: 8px;
  animation-delay: -2.5s;
}

.cosmos-star-3 {
  top: 70%;
  left: 34%;
  width: 12px;
  height: 12px;
  animation-delay: -4s;
}

.cosmos-star-4 {
  top: 78%;
  right: 14%;
  width: 7px;
  height: 7px;
  animation-delay: -1.8s;
}

.cosmos-star-5 {
  top: 10%;
  right: 34%;
  width: 9px;
  height: 9px;
  animation-delay: -3.2s;
}

body::before,
body::after {
  content: "";
  position: fixed;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

body::before {
  top: 26px;
  right: -124px;
  width: 286px;
  height: 286px;
  background: rgba(18, 18, 18, 0.92);
  border-radius: 44px 88px 36px 110px;
  transform: rotate(18deg);
  animation: background-orbit-a 18.2s linear infinite;
}

body::after {
  bottom: 44px;
  left: -86px;
  width: 240px;
  height: 210px;
  background: rgba(215, 38, 56, 0.94);
  border-radius: 120px 32px 120px 64px;
  transform: rotate(-16deg);
  animation: background-orbit-b 16.4s linear infinite;
}

main::before,
main::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: 0;
}

main::before {
  top: 30%;
  left: -24px;
  width: 122px;
  height: 248px;
  background: rgba(18, 18, 18, 0.9);
  border-radius: 34px 58px 20px 72px;
  transform: rotate(-11deg);
  clip-path: polygon(0 8%, 84% 0, 100% 34%, 88% 100%, 16% 92%, 0 64%);
  animation: background-orbit-c 20.2s linear infinite;
}

main::after {
  top: 14%;
  right: 4%;
  width: 74px;
  height: 74px;
  background: rgba(215, 38, 56, 0.9);
  border-radius: 16px 16px 44px 16px;
  transform: rotate(10deg);
  animation: background-orbit-d 15.4s linear infinite;
}





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.sidebar,
article {
  position: relative;
  background: var(--eerie-black-2);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  padding: 15px;
  box-shadow: var(--shadow-1);
  backdrop-filter: blur(18px);
  overflow: hidden;
  z-index: 1;
}

.sidebar > *,
article > * {
  position: relative;
  z-index: 1;
}

.sidebar::after,
article::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.sidebar::after {
  top: -34px;
  right: 22px;
  width: 110px;
  height: 148px;
  background: rgba(18, 18, 18, 0.16);
  border-radius: 26px 44px 14px 82px;
  transform: rotate(14deg);
}

article::after {
  top: -28px;
  right: 22px;
  width: 122px;
  height: 96px;
  background: rgba(18, 18, 18, 0.11);
  border-radius: 24px 62px 18px 72px;
  transform: rotate(9deg);
}

.sidebar::before,
article::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.sidebar::before {
  bottom: 18px;
  left: -22px;
  width: 132px;
  height: 76px;
  border-radius: 82px 18px 26px 66px;
  background: rgba(215, 38, 56, 0.14);
  transform: rotate(-9deg);
}

article::before {
  bottom: -22px;
  left: 28px;
  width: 124px;
  height: 74px;
  border-radius: 84px 22px 22px 62px;
  background: rgba(215, 38, 56, 0.1);
  transform: rotate(-8deg);
}

.about::after {
  top: -24px;
  right: 36px;
  width: 126px;
  height: 86px;
  border-radius: 24px 70px 18px 74px;
  transform: rotate(8deg);
}

.about::before {
  bottom: 22px;
  left: -34px;
  width: 148px;
  height: 88px;
  border-radius: 98px 26px 20px 56px;
  transform: rotate(-10deg);
}

.resume::after {
  top: auto;
  bottom: 18%;
  right: -28px;
  width: 88px;
  height: 168px;
  border-radius: 42px 18px 74px 18px;
  transform: rotate(-12deg);
}

.resume::before {
  bottom: -12px;
  left: 44px;
  width: 92px;
  height: 92px;
  border-radius: 24px 24px 24px 70px;
  background: rgba(215, 38, 56, 0.13);
  transform: rotate(-4deg);
}

.portfolio::after {
  top: 24px;
  right: -30px;
  width: 148px;
  height: 92px;
  border-radius: 0;
  transform: rotate(-10deg);
  clip-path: polygon(16% 0, 100% 0, 84% 100%, 0 100%);
}

.portfolio::before {
  bottom: 26px;
  left: -18px;
  width: 76px;
  height: 134px;
  background: rgba(215, 38, 56, 0.12);
  border-radius: 22px 50px 18px 52px;
  transform: rotate(9deg);
}

.blog::after {
  top: auto;
  bottom: 28px;
  right: 24px;
  width: 136px;
  height: 64px;
  border-radius: 999px 18px 44px 999px;
  transform: rotate(11deg);
}

.blog::before {
  bottom: -20px;
  left: 34px;
  width: 92px;
  height: 92px;
  background: rgba(37, 99, 235, 0.12);
  border-radius: 24px 24px 62px 24px;
  transform: rotate(-12deg);
}

.contact::after {
  top: -20px;
  right: 20px;
  width: 94px;
  height: 144px;
  border-radius: 22px 22px 70px 22px;
  transform: rotate(16deg);
}

.contact::before {
  bottom: -18px;
  left: -18px;
  width: 138px;
  height: 62px;
  background: rgba(215, 38, 56, 0.14);
  border-radius: 999px 26px 22px 999px;
  transform: rotate(-7deg);
}

.separator {
  width: 100%;
  height: 1px;
  background: rgba(15, 23, 42, 0.08);
  margin: 16px 0;
}

.icon-box {
  position: relative;
  background: var(--bg-gradient-yellow-1);
  width: 30px;
  height: 30px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #fff;
  box-shadow: var(--shadow-1);
  z-index: 1;
}

.icon-box::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: inherit;
  z-index: -1;
}

.icon-box ion-icon { --ionicon-stroke-width: 35px; }

article { display: none; }

article.active {
  display: block;
  animation: fade 0.5s ease backwards;
}

@keyframes fade {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.h2,
.h3,
.h4,
.h5 {
  color: var(--white-2);
  text-transform: capitalize;
  font-family: var(--ff-poppins);
  letter-spacing: -0.03em;
}

.h2 { font-size: var(--fs-1); }

.h3 { font-size: var(--fs-2); }

.h4 { font-size: var(--fs-4); }

.h5 {
  font-size: var(--fs-7);
  font-weight: var(--fw-500);
}

.article-title {
  position: relative;
  padding-bottom: 0;
  padding-left: 18px;
  display: inline-block;
}

.article-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: calc(100% - 4px);
  background: var(--accent-red);
  border-radius: 999px;
  transform: translateY(-50%);
}

.article-title::after {
  display: none;
}

.has-scrollbar::-webkit-scrollbar {
  width: 5px; /* for vertical scrollbar */
  height: 5px; /* for horizontal scrollbar */
}

.has-scrollbar::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.08);
  border-radius: 5px;
}

.has-scrollbar::-webkit-scrollbar-thumb {
  background: var(--accent-red);
  border-radius: 5px;
}

.has-scrollbar::-webkit-scrollbar-button { width: 20px; }

.content-card {
  position: relative;
  background: var(--border-gradient-onyx);
  padding: 15px;
  padding-top: 45px;
  border-radius: 20px;
  box-shadow: var(--shadow-2), var(--neon-red-soft), inset 0 0 0 1px rgba(18, 18, 18, 0.04);
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
}

.content-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--bg-gradient-jet);
  border-radius: inherit;
  z-index: -1;
}

.content-card::after,
.service-item::after,
.project-card::after,
.blog-post-item > a::after {
  content: "";
  position: absolute;
  top: -18px;
  right: 18px;
  width: 74px;
  height: 98px;
  border-radius: 18px 30px 12px 58px;
  background: rgba(18, 18, 18, 0.1);
  transform: rotate(12deg);
  pointer-events: none;
  z-index: 0;
}

.content-card::before,
.service-item::before,
.project-card::before,
.blog-post-item > a::before {
  box-shadow: inset 0 0 0 1px rgba(215, 38, 56, 0.06);
}

.content-card > *,
.service-item > *,
.project-card > *,
.blog-post-item > a > * {
  position: relative;
  z-index: 1;
}

.content-card,
.service-item,
.project-card,
.blog-post-item > a {
  transition: transform var(--transition-1), box-shadow var(--transition-1);
  will-change: transform;
}

.content-card:hover,
.service-item:hover,
.project-card:hover,
.blog-post-item > a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-3), var(--neon-red-medium);
}

.content-card:focus-visible,
.service-item:focus-visible,
.project-card:focus-visible,
.blog-post-item > a:focus-visible {
  box-shadow: var(--shadow-3), var(--neon-red-strong);
}

.service-item:nth-child(4n + 1)::after,
.testimonials-item:nth-child(4n + 1) .content-card::after,
.project-item:nth-child(4n + 1) .project-card::after,
.blog-post-item:nth-child(4n + 1) > a::after {
  top: -24px;
  right: 14px;
  width: 78px;
  height: 116px;
  border-radius: 18px 42px 10px 68px;
  transform: rotate(14deg);
}

.service-item:nth-child(4n + 2)::after,
.testimonials-item:nth-child(4n + 2) .content-card::after,
.project-item:nth-child(4n + 2) .project-card::after,
.blog-post-item:nth-child(4n + 2) > a::after {
  top: 14px;
  right: -18px;
  width: 92px;
  height: 70px;
  border-radius: 999px 16px 38px 999px;
  transform: rotate(-10deg);
}

.service-item:nth-child(4n + 3)::after,
.testimonials-item:nth-child(4n + 3) .content-card::after,
.project-item:nth-child(4n + 3) .project-card::after,
.blog-post-item:nth-child(4n + 3) > a::after {
  top: auto;
  bottom: -18px;
  right: 18px;
  width: 88px;
  height: 88px;
  border-radius: 22px 22px 22px 68px;
  transform: rotate(10deg);
}

.service-item:nth-child(4n + 4)::after,
.testimonials-item:nth-child(4n + 4) .content-card::after,
.project-item:nth-child(4n + 4) .project-card::after,
.blog-post-item:nth-child(4n + 4) > a::after {
  top: -14px;
  right: 22px;
  width: 96px;
  height: 58px;
  border-radius: 0;
  transform: rotate(-8deg);
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
}





/*-----------------------------------*\
  #MAIN
\*-----------------------------------*/

main {
  margin: 15px 12px;
  margin-bottom: 75px;
  min-width: 259px;
  position: relative;
  z-index: 1;
}

.main-content {
  position: relative;
  z-index: 1;
}

.main-content::before,
.main-content::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.main-content::before {
  top: 180px;
  right: -20px;
  width: 64px;
  height: 160px;
  background: rgba(18, 18, 18, 0.08);
  border-radius: 22px 42px 18px 58px;
  transform: rotate(10deg);
  animation: background-sway-a 13.2s ease-in-out infinite;
}

.main-content::after {
  bottom: 180px;
  left: -16px;
  width: 96px;
  height: 44px;
  background: rgba(215, 38, 56, 0.1);
  border-radius: 999px 14px 24px 999px;
  transform: rotate(-8deg);
  animation: background-sway-b 12.2s ease-in-out infinite;
}

@keyframes cosmos-orbit-a {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }

  25% {
    transform: translate3d(34px, -20px, 0) rotate(88deg) scale(1.04);
  }

  50% {
    transform: translate3d(4px, -42px, 0) rotate(180deg) scale(0.98);
  }

  75% {
    transform: translate3d(-30px, -14px, 0) rotate(272deg) scale(1.03);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(360deg) scale(1);
  }
}

@keyframes cosmos-orbit-b {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }

  20% {
    transform: translate3d(-28px, 16px, 0) rotate(-72deg) scale(1.02);
  }

  45% {
    transform: translate3d(-6px, 40px, 0) rotate(-160deg) scale(0.96);
  }

  70% {
    transform: translate3d(26px, 12px, 0) rotate(-250deg) scale(1.04);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(-360deg) scale(1);
  }
}

@keyframes cosmos-orbit-c {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }

  25% {
    transform: translate3d(22px, -28px, 0) rotate(90deg) scale(1.05);
  }

  50% {
    transform: translate3d(44px, 4px, 0) rotate(180deg) scale(0.97);
  }

  75% {
    transform: translate3d(12px, 26px, 0) rotate(270deg) scale(1.03);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(360deg) scale(1);
  }
}

@keyframes cosmos-twinkle {
  0%,
  100% {
    transform: scale(0.72);
    opacity: 0.42;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

@keyframes background-orbit-a {
  0% {
    transform: translate3d(0, 0, 0) rotate(18deg);
  }

  25% {
    transform: translate3d(-16px, 18px, 0) rotate(102deg);
  }

  50% {
    transform: translate3d(-8px, 34px, 0) rotate(198deg);
  }

  75% {
    transform: translate3d(20px, 14px, 0) rotate(286deg);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(378deg);
  }
}

@keyframes background-orbit-b {
  0% {
    transform: translate3d(0, 0, 0) rotate(-16deg);
  }

  25% {
    transform: translate3d(20px, -14px, 0) rotate(-100deg);
  }

  50% {
    transform: translate3d(28px, 6px, 0) rotate(-196deg);
  }

  75% {
    transform: translate3d(8px, 22px, 0) rotate(-286deg);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(-376deg);
  }
}

@keyframes background-orbit-c {
  0% {
    transform: translate3d(0, 0, 0) rotate(-11deg);
  }

  25% {
    transform: translate3d(18px, -10px, 0) rotate(72deg);
  }

  50% {
    transform: translate3d(12px, -28px, 0) rotate(170deg);
  }

  75% {
    transform: translate3d(-12px, -18px, 0) rotate(258deg);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(349deg);
  }
}

@keyframes background-orbit-d {
  0% {
    transform: translate3d(0, 0, 0) rotate(10deg);
  }

  25% {
    transform: translate3d(-10px, 16px, 0) rotate(100deg);
  }

  50% {
    transform: translate3d(12px, 24px, 0) rotate(188deg);
  }

  75% {
    transform: translate3d(18px, 4px, 0) rotate(280deg);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(370deg);
  }
}

@keyframes background-sway-a {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(10deg);
  }

  50% {
    transform: translate3d(14px, -16px, 0) rotate(24deg);
  }
}

@keyframes background-sway-b {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-8deg);
  }

  50% {
    transform: translate3d(20px, 12px, 0) rotate(-20deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after,
  main::before,
  main::after,
  .main-content::before,
  .main-content::after,
  .cosmos-shape,
  .cosmos-star {
    animation: none;
  }
}





/*-----------------------------------*\
  #SIDEBAR
\*-----------------------------------*/

.sidebar {
  margin-bottom: 15px;
  max-height: 112px;
  overflow: hidden;
  will-change: max-height;
  transition: var(--transition-2);
}

.sidebar.active { max-height: 405px; }

.sidebar-info {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.avatar-box {
  background: rgba(215, 38, 56, 0.12);
  border-radius: 36px 24px 42px 20px;
  padding: 4px;
  box-shadow: inset 0 0 0 1px rgba(18, 18, 18, 0.06);
}

.info-content {
  min-width: 0;
}

.info-content .name {
  color: var(--white-2);
  font-size: var(--fs-3);
  font-weight: var(--fw-500);
  letter-spacing: -0.25px;
  margin-bottom: 10px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.info-content .title {
  color: #fff;
  background: var(--accent-red);
  font-size: var(--fs-8);
  font-weight: var(--fw-500);
  width: max-content;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.info_more-btn {
  position: absolute;
  top: -15px;
  right: -15px;
  border-radius: 0 22px;
  font-size: 13px;
  color: #fff;
  background: var(--bg-gradient-yellow-1);
  padding: 10px;
  box-shadow: var(--shadow-2);
  transition: var(--transition-1);
  z-index: 1;
}

.info_more-btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.14);
  transition: var(--transition-1);
  z-index: -1;
}

.info_more-btn:hover,
.info_more-btn:focus {
  transform: translateY(-1px);
}

.info_more-btn span { display: none; }

.sidebar-info_more {
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-2);
}

.sidebar.active .sidebar-info_more {
  opacity: 1;
  visibility: visible;
}

.contacts-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.contact-item {
  min-width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-info {
  max-width: calc(100% - 46px);
  width: calc(100% - 46px);
}

.contact-title {
  color: var(--light-gray-70);
  font-size: var(--fs-8);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-info :is(.contact-link, time, address) {
  color: var(--white-2);
  font-size: var(--fs-7);
}

.contact-link-email {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-info address { font-style: normal; }

.social-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  padding-bottom: 4px;
  padding-left: 7px;
}

.social-item .social-link {
  color: var(--vegas-gold);
  font-size: 18px;
}


.social-item .social-link:hover { color: var(--accent-red); }





/*-----------------------------------*\
  #NAVBAR
\*-----------------------------------*/

.navbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px 12px 0 0;
  box-shadow: var(--shadow-2);
  z-index: 5;
  overflow: hidden;
}

.navbar::before,
.navbar::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.navbar::before {
  top: 10px;
  left: 14px;
  width: 18px;
  height: 18px;
  background: rgba(18, 18, 18, 0.82);
  border-radius: 5px 5px 12px 5px;
}

.navbar::after {
  right: 18px;
  bottom: 10px;
  width: 42px;
  height: 8px;
  background: rgba(215, 38, 56, 0.78);
  border-radius: 999px;
}

.navbar-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
}

.navbar-link {
  color: var(--light-gray-70);
  font-size: var(--fs-8);
  padding: 20px 7px;
  transition: color var(--transition-1);
  font-family: var(--ff-poppins);
}

.navbar-link:hover,
.navbar-link:focus { color: var(--vegas-gold); }

.navbar-link.active { color: var(--accent-red); }





/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about .article-title { margin-bottom: 15px; }

.about-text {
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-400);
  line-height: 1.8;
}

.about-text p { margin-bottom: 15px; }

.profile-links-section {
  margin: 28px 0 34px;
}

.profile-links-title {
  margin-bottom: 16px;
  font-size: var(--fs-3);
}

.profile-links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.profile-link-card {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-1);
  color: var(--white-2);
  transition: transform var(--transition-1), box-shadow var(--transition-1), border-color var(--transition-1);
}

.profile-link-card:hover,
.profile-link-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
  border-color: rgba(215, 38, 56, 0.18);
}

.profile-link-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.profile-link-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



/**
 * #service 
 */

.service { margin-bottom: 35px; }

.service-title { margin-bottom: 20px; }

.service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-item {
  position: relative;
  background: var(--border-gradient-onyx);
  padding: 20px;
  border-radius: 22px;
  box-shadow: var(--shadow-2), var(--neon-red-soft);
  z-index: 1;
  overflow: hidden;
}

.service-item::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--bg-gradient-jet);
  border-radius: inherit;
  z-index: -1;
}

.service-icon-box { margin-bottom: 10px; }

.service-icon-box img { margin: auto; }

.service-content-box { text-align: center; }

.service-item-title { margin-bottom: 7px; }

.service-item-text {
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-400);
  line-height: 1.75;
}


/**
 * #testimonials 
 */

.testimonials { margin-bottom: 30px; }

.testimonials-title { margin-bottom: 20px; }

.testimonials-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
  margin: 0 -15px;
  padding: 25px 15px;
  padding-bottom: 35px;
  overflow-x: auto;
  scroll-behavior: smooth;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
}

.testimonials-item {
  min-width: 100%;
  scroll-snap-align: center;
}

.testimonials .content-card {
  min-height: 100%;
  padding: 20px 18px 18px 106px;
}

.testimonials-avatar-box {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 72px;
  height: 72px;
  background: var(--bg-gradient-onyx);
  border-radius: 22px;
  box-shadow: var(--shadow-1);
  overflow: hidden;
}

.testimonials-avatar-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-item-title { margin-bottom: 7px; }

.testimonials-text {
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
  line-height: 1.6;
  display: -webkit-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/**
 * #testimonials-modal
 */

.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 24px 12px 48px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  z-index: 20;
  pointer-events: none;
  visibility: hidden;
}

.modal-container::-webkit-scrollbar { display: none; }

.modal-container.active {
  pointer-events: all;
  visibility: visible;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15, 23, 42, 0.24);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
  transition: opacity var(--transition-2), visibility var(--transition-2);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.testimonials-modal {
  background: rgba(255, 255, 255, 0.96);
  position: relative;
  padding: 15px;
  margin: 15px 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-5), inset 0 0 0 1px rgba(215, 38, 56, 0.06);
  transform: translateY(18px);
  opacity: 0;
  transition: transform var(--transition-2), opacity var(--transition-2);
  z-index: 2;
  overflow: hidden;
  will-change: transform, opacity;
}

.testimonials-modal::after,
.award-modal::after,
.award-gallery-modal::after,
.project-modal::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.testimonials-modal > *,
.award-modal > *,
.award-gallery-modal > *,
.project-modal > * {
  position: relative;
  z-index: 1;
}

.testimonials-modal::after {
  top: -20px;
  right: 18px;
  width: 76px;
  height: 104px;
  border-radius: 18px 30px 12px 58px;
  background: rgba(18, 18, 18, 0.1);
  transform: rotate(12deg);
}

.modal-container.active .testimonials-modal {
  transform: translateY(0);
  opacity: 1;
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-red);
  border-radius: 14px;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 18px;
  opacity: 1;
  transition: transform var(--transition-1), box-shadow var(--transition-1), background var(--transition-1);
}

.modal-close-btn:hover,
.modal-close-btn:focus {
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: var(--shadow-1);
}

.modal-close-btn ion-icon { --ionicon-stroke-width: 50px; }

.modal-avatar-box {
  background: rgba(215, 38, 56, 0.08);
  width: max-content;
  border-radius: 14px;
  margin-bottom: 15px;
  box-shadow: var(--shadow-2);
}

.modal-img-wrapper > img { display: none; }

.modal-title { margin-bottom: 4px; }

.modal-content time {
  font-size: var(--fs-6);
  color: var(--light-gray-70);
  font-weight: var(--fw-300);
  margin-bottom: 10px;
}

.modal-content p {
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
  line-height: 1.6;
}


/**
 * #clients 
 */

.clients { margin-bottom: 15px; }

.clients-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
  margin: 0 -15px;
  padding: 25px;
  padding-bottom: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: 25px;
}

.clients-item {
  min-width: 50%;
  scroll-snap-align: start;
}

.clients-item img {
  width: 100%;
  filter: grayscale(1);
  transition: var(--transition-1);
}

.clients-item img:hover { filter: grayscale(0); }





/*-----------------------------------*\
  #RESUME
\*-----------------------------------*/

.article-title { margin-bottom: 30px; }


/**
 * education and experience 
 */

.timeline { margin-bottom: 30px; }

.timeline .title-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.timeline-list {
  font-size: var(--fs-6);
  margin-left: 45px;
}

.timeline-item { position: relative; }

.timeline-item:not(:last-child) { margin-bottom: 20px; }

.timeline-item-title {
  font-size: var(--fs-6);
  line-height: 1.3;
  margin-bottom: 7px;
}

.timeline-list span {
  color: var(--vegas-gold);
  font-weight: var(--fw-400);
  line-height: 1.6;
}

.timeline-item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: -25px;
  left: -30px;
  width: 1px;
  height: calc(100% + 50px);
  background: var(--jet);
}

.timeline-item::after {
  content: "";
  position: absolute;
  top: 5px;
  left: -33px;
  height: 6px;
  width: 6px;
  background: var(--text-gradient-yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--jet);
}

.timeline-text {
  color: var(--light-gray);
  font-weight: var(--fw-300);
  line-height: 1.6;
}


.award-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.award-toolbar-text {
  color: var(--light-gray-70);
  font-size: var(--fs-7);
  line-height: 1.7;
  max-width: 580px;
}

.award-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.award-see-all-btn,
.award-nav-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--border-gradient-onyx);
  color: var(--orange-yellow-crayola);
  box-shadow: var(--shadow-1);
  overflow: hidden;
  transition: transform var(--transition-1), color var(--transition-1);
}

.award-see-all-btn {
  width: auto;
  min-width: 108px;
  grid-auto-flow: column;
  gap: 8px;
  padding-inline: 14px;
}

.award-see-all-btn::before,
.award-nav-btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--bg-gradient-jet);
  border-radius: inherit;
}

.award-see-all-btn span,
.award-see-all-btn ion-icon,
.award-nav-btn ion-icon {
  position: relative;
  z-index: 1;
}

.award-see-all-btn span {
  font-size: var(--fs-7);
  font-weight: var(--fw-500);
}

.award-see-all-btn ion-icon,
.award-nav-btn ion-icon {
  font-size: 18px;
}

.award-see-all-btn:hover,
.award-see-all-btn:focus-visible,
.award-nav-btn:hover,
.award-nav-btn:focus-visible {
  transform: translateY(-2px);
}

.award-archive {
  display: grid;
  gap: 26px;
}

.award-year-group {
  position: relative;
  padding: 14px 14px 16px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.award-year-group::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  width: 1px;
  background: rgba(215, 38, 56, 0.28);
}

.award-year-group::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.award-year-group > * {
  position: relative;
  z-index: 1;
}

.award-year-group:nth-child(odd)::after {
  top: -14px;
  right: 22px;
  width: 78px;
  height: 98px;
  background: rgba(18, 18, 18, 0.08);
  border-radius: 18px 34px 16px 58px;
  transform: rotate(14deg);
}

.award-year-group:nth-child(even)::after {
  bottom: -12px;
  right: 18px;
  width: 112px;
  height: 48px;
  background: rgba(215, 38, 56, 0.1);
  border-radius: 999px 16px 28px 999px;
  transform: rotate(-8deg);
}

.award-year-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.award-year-badge {
  position: relative;
  min-width: 72px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--border-gradient-onyx);
  color: var(--orange-yellow-crayola);
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  letter-spacing: 0.04em;
  text-align: center;
  z-index: 1;
}

.award-year-badge::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: var(--bg-gradient-jet);
  z-index: -1;
}

.award-year-count {
  color: var(--light-gray-70);
  font-size: var(--fs-7);
}

.award-year-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.award-archive-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 22px;
  background: var(--border-gradient-onyx);
  box-shadow: var(--shadow-1), var(--neon-red-soft);
  overflow: hidden;
  z-index: 1;
  transition: transform var(--transition-1), box-shadow var(--transition-1);
}

.award-archive-item::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: var(--bg-gradient-jet);
  z-index: -1;
}

.award-archive-item::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background: rgba(18, 18, 18, 0.08);
  z-index: 0;
}

.award-archive-item > * {
  position: relative;
  z-index: 1;
}

.award-archive-item:hover,
.award-archive-item:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2), var(--neon-red-medium);
}

.award-year-grid .award-archive-item:nth-child(4n + 1)::after {
  top: -18px;
  right: 14px;
  width: 76px;
  height: 96px;
  border-radius: 18px 30px 12px 54px;
  transform: rotate(12deg);
}

.award-year-grid .award-archive-item:nth-child(4n + 2)::after {
  top: auto;
  bottom: -14px;
  right: 18px;
  width: 84px;
  height: 42px;
  border-radius: 999px 14px 28px 999px;
  transform: rotate(-8deg);
  background: rgba(215, 38, 56, 0.1);
}

.award-year-grid .award-archive-item:nth-child(4n + 3)::after {
  top: 18px;
  right: -16px;
  width: 84px;
  height: 64px;
  border-radius: 0;
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
  transform: rotate(-10deg);
}

.award-year-grid .award-archive-item:nth-child(4n + 4)::after {
  top: -14px;
  right: 20px;
  width: 62px;
  height: 62px;
  border-radius: 18px 18px 18px 52px;
  transform: rotate(10deg);
  background: rgba(37, 99, 235, 0.12);
}

.award-archive-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 14px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-1);
}

.award-archive-thumb::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: 12px;
  width: 42px;
  height: 10px;
  border-radius: 999px;
  background: rgba(215, 38, 56, 0.82);
  z-index: 1;
  pointer-events: none;
}

.award-archive-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.award-archive-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.award-archive-tag {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(215, 38, 56, 0.1);
  color: var(--orange-yellow-crayola);
  font-size: 10px;
  font-weight: var(--fw-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.award-archive-date {
  color: var(--vegas-gold);
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  flex-shrink: 0;
}

.award-archive-title {
  margin-bottom: 0;
  color: var(--white-2);
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.award-list {
  display: flex;
  gap: 18px;
  margin: 0 -5px;
  padding: 5px;
  padding-bottom: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: 5px;
}

.award-list[hidden] {
  display: none !important;
}

.award-item {
  min-width: 78%;
  max-width: 320px;
  scroll-snap-align: start;
}

.award-card {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  border-radius: 18px;
  background: var(--border-gradient-onyx);
  box-shadow: var(--shadow-2), var(--neon-red-soft);
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: transform var(--transition-1), box-shadow var(--transition-1);
}

.award-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: var(--bg-gradient-jet);
  z-index: -2;
}

.award-card::after {
  content: "";
  position: absolute;
  top: -48px;
  right: 18px;
  width: 90px;
  height: 118px;
  border-radius: 20px 38px 14px 62px;
  background: rgba(18, 18, 18, 0.08);
  transform: rotate(12deg);
  z-index: -1;
}

.award-card:hover,
.award-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-3), var(--neon-red-strong);
}

.award-item:nth-child(4n + 1) .award-card::after {
  top: -26px;
  right: -10px;
  width: 110px;
  height: 56px;
  border-radius: 999px 18px 42px 999px;
  transform: rotate(-8deg);
  background: rgba(215, 38, 56, 0.1);
}

.award-item:nth-child(4n + 2) .award-card::after {
  top: -18px;
  right: 18px;
  width: 78px;
  height: 108px;
  border-radius: 18px 34px 14px 58px;
  transform: rotate(12deg);
  background: rgba(18, 18, 18, 0.08);
}

.award-item:nth-child(4n + 3) .award-card::after {
  top: auto;
  bottom: -18px;
  right: 18px;
  width: 76px;
  height: 76px;
  border-radius: 22px 22px 22px 56px;
  transform: rotate(8deg);
  background: rgba(37, 99, 235, 0.1);
}

.award-item:nth-child(4n + 4) .award-card::after {
  top: 16px;
  right: -18px;
  width: 86px;
  height: 62px;
  border-radius: 0;
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
  transform: rotate(-10deg);
  background: rgba(18, 18, 18, 0.08);
}

.award-card:focus-visible {
  outline: 2px solid var(--orange-yellow-crayola);
  outline-offset: 4px;
}

.award-card-kicker {
  width: max-content;
  margin-bottom: 4px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(215, 38, 56, 0.1);
  color: var(--orange-yellow-crayola);
  font-size: var(--fs-8);
  font-weight: var(--fw-500);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.award-card-date {
  margin-bottom: 2px;
  color: var(--vegas-gold);
  font-size: var(--fs-7);
  font-weight: var(--fw-500);
}

.award-card-media {
  margin-bottom: 2px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid hsla(0, 0%, 100%, 0.08);
  box-shadow: var(--shadow-1);
}

.award-card-image,
.award-modal-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.award-card-title {
  margin-bottom: 0;
  font-size: var(--fs-5);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.award-card-organizer {
  display: none;
  margin-bottom: 0;
  color: var(--light-gray-70);
  font-size: var(--fs-7);
  line-height: 1.7;
}

.award-card-summary {
  flex-grow: 1;
  color: var(--light-gray);
  font-size: var(--fs-7);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.award-card-action {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 6px;
  color: var(--orange-yellow-crayola);
  font-size: var(--fs-7);
  font-weight: var(--fw-500);
}

.award-card-action ion-icon {
  font-size: 16px;
  transition: transform var(--transition-1);
}

.award-card:hover .award-card-action ion-icon,
.award-card:focus-visible .award-card-action ion-icon {
  transform: translateX(4px);
}

.award-modal-container {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 12px 48px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  z-index: 20;
  pointer-events: none;
  visibility: hidden;
}

.award-modal-container::-webkit-scrollbar { display: none; }

.award-modal-container.active {
  pointer-events: all;
  visibility: visible;
}

.award-modal {
  position: relative;
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 24px 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-5), inset 0 0 0 1px rgba(215, 38, 56, 0.06);
  transform: translateY(18px);
  opacity: 0;
  transition: transform var(--transition-2), opacity var(--transition-2);
  z-index: 2;
  will-change: transform, opacity;
}

.award-modal-container.active .award-modal {
  transform: translateY(0);
  opacity: 1;
}

.award-modal::after {
  top: auto;
  bottom: -18px;
  right: 20px;
  width: 110px;
  height: 52px;
  border-radius: 999px 16px 34px 999px;
  background: rgba(215, 38, 56, 0.1);
  transform: rotate(-8deg);
}

.award-gallery-container {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 12px 48px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  z-index: 20;
  pointer-events: none;
  visibility: hidden;
}

.award-gallery-container.active {
  pointer-events: all;
  visibility: visible;
}

.award-gallery-modal {
  position: relative;
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 24px 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-5), inset 0 0 0 1px rgba(215, 38, 56, 0.06);
  transform: translateY(16px);
  opacity: 0;
  transition: transform var(--transition-2), opacity var(--transition-2);
  z-index: 2;
  will-change: transform, opacity;
}

.award-gallery-container.active .award-gallery-modal {
  transform: translateY(0);
  opacity: 1;
}

.award-gallery-modal::after {
  top: 16px;
  right: -18px;
  width: 84px;
  height: 64px;
  border-radius: 0;
  background: rgba(18, 18, 18, 0.08);
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
  transform: rotate(-10deg);
}

.award-gallery-header {
  margin-bottom: 20px;
  padding-right: 44px;
}

.award-gallery-text {
  margin-top: 8px;
  color: var(--light-gray-70);
  font-size: var(--fs-6);
  line-height: 1.7;
}

.award-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.award-gallery-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 12px;
  border-radius: 18px;
  background: var(--border-gradient-onyx);
  box-shadow: var(--shadow-1);
  transition: transform var(--transition-1);
  z-index: 1;
  position: relative;
  overflow: hidden;
}

.award-gallery-item::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: var(--bg-gradient-jet);
  z-index: -1;
}

.award-gallery-item::after {
  content: "";
  position: absolute;
  top: -14px;
  right: 18px;
  width: 62px;
  height: 62px;
  background: rgba(18, 18, 18, 0.08);
  border-radius: 18px 18px 18px 48px;
  transform: rotate(10deg);
  pointer-events: none;
}

.award-gallery-item > * {
  position: relative;
  z-index: 1;
}

.award-gallery-item:hover,
.award-gallery-item:focus-visible {
  transform: translateY(-2px);
}

.award-gallery-item:nth-child(3n + 2)::after {
  top: auto;
  bottom: -12px;
  width: 78px;
  height: 40px;
  border-radius: 999px 12px 24px 999px;
  background: rgba(215, 38, 56, 0.1);
  transform: rotate(-8deg);
}

.award-gallery-item:nth-child(3n + 3)::after {
  top: 12px;
  right: -16px;
  width: 72px;
  height: 52px;
  border-radius: 0;
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
  background: rgba(37, 99, 235, 0.1);
}

.award-gallery-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
}

.award-gallery-thumb img,
.award-gallery-item > img.award-gallery-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.award-gallery-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.award-gallery-tag {
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(215, 38, 56, 0.1);
  color: var(--orange-yellow-crayola);
  font-size: 11px;
  font-weight: var(--fw-500);
  text-transform: uppercase;
}

.award-gallery-date {
  color: var(--vegas-gold);
  font-size: var(--fs-7);
  font-weight: var(--fw-500);
}

.award-gallery-title {
  color: var(--white-2);
  font-size: var(--fs-6);
  line-height: 1.5;
}

.award-modal-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px 18px;
  padding-right: 44px;
  margin-bottom: 14px;
}

.award-modal-kicker {
  margin-bottom: 8px;
  color: var(--orange-yellow-crayola);
  font-size: var(--fs-8);
  font-weight: var(--fw-500);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.award-modal-title {
  line-height: 1.5;
}

.award-modal-date {
  color: var(--vegas-gold);
  font-size: var(--fs-6);
  font-weight: var(--fw-500);
}

.award-modal-organizer {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--jet);
  color: var(--light-gray-70);
  font-size: var(--fs-6);
  line-height: 1.75;
}

.award-modal-media {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}

.award-modal-image-box {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--jet);
  box-shadow: var(--shadow-2);
}

.award-modal-summary {
  margin-bottom: 18px;
  color: var(--white-2);
  font-size: var(--fs-5);
  line-height: 1.8;
}

.award-modal-details ul {
  display: grid;
  gap: 12px;
}

.award-modal-details li {
  position: relative;
  padding-left: 18px;
  color: var(--light-gray);
  font-size: var(--fs-6);
  line-height: 1.8;
}

.award-modal-details li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-yellow-crayola);
  box-shadow: 0 0 0 4px rgba(215, 38, 56, 0.08);
}


/**
 * skills 
 */

.skills-title { margin-bottom: 20px; }

.skills-list { padding: 24px; }

.skills-intro {
  color: var(--light-gray-70);
  font-size: var(--fs-6);
  line-height: 1.8;
  margin-bottom: 18px;
}

.skills-focus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.skills-focus-item {
  position: relative;
  padding: 18px;
  border-radius: 18px;
  background: var(--border-gradient-onyx);
  overflow: hidden;
  z-index: 1;
}

.skills-focus-item::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: var(--bg-gradient-jet);
  z-index: -1;
}

.skills-focus-chip {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(215, 38, 56, 0.1);
  color: var(--orange-yellow-crayola);
  font-size: 11px;
  font-weight: var(--fw-600);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.skills-focus-text {
  color: var(--light-gray-70);
  font-size: var(--fs-6);
  line-height: 1.7;
}





/*-----------------------------------*\
  #PORTFOLIO
\*-----------------------------------*/

.filter-list { display: none; }

.projects-intro {
  color: var(--light-gray-70);
  font-size: var(--fs-6);
  line-height: 1.8;
  margin-bottom: 24px;
}

.filter-select-box {
  position: relative;
  margin-bottom: 25px;
}

.filter-select {
  background: var(--eerie-black-2);
  color: var(--light-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--jet);
  border-radius: 14px;
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
}

.filter-select.active .select-icon { transform: rotate(0.5turn); }

.select-list {
  background: var(--eerie-black-2);
  position: absolute;
  top: calc(100% + 6px);
  width: 100%;
  padding: 6px;
  border: 1px solid var(--jet);
  border-radius: 14px;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.15s ease-in-out;
}

.filter-select.active + .select-list {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.select-item button {
  background: var(--eerie-black-2);
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
  text-transform: capitalize;
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
}

.select-item button:hover { --eerie-black-2: hsl(240, 2%, 20%); }

.project-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 10px;
}

.project-item { display: none; }

.project-item.active {
  display: block;
  animation: scaleUp 0.25s ease forwards;
}

@keyframes scaleUp {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.project-card {
  position: relative;
  width: 100%;
  padding: 12px;
  border-radius: 20px;
  background: var(--border-gradient-onyx);
  box-shadow: var(--shadow-1), var(--neon-red-soft);
  overflow: hidden;
  z-index: 1;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: var(--bg-gradient-jet);
  z-index: -1;
}

.project-img {
  position: relative;
  width: 100%;
  height: 172px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 12px;
}

.project-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
  transition: var(--transition-1);
}

.project-img::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: 12px;
  width: 48px;
  height: 10px;
  border-radius: 999px;
  background: rgba(215, 38, 56, 0.84);
  z-index: 2;
  pointer-events: none;
}

.project-card:hover .project-img::before { background: hsla(0, 0%, 0%, 0.22); }

.project-item:nth-child(3n + 2) .project-img::after {
  left: auto;
  right: 12px;
  bottom: 12px;
  width: 18px;
  height: 18px;
  border-radius: 6px 6px 20px 6px;
  background: rgba(18, 18, 18, 0.9);
}

.project-item:nth-child(3n + 3) .project-img::after {
  top: 12px;
  right: 12px;
  left: auto;
  bottom: auto;
  width: 38px;
  height: 38px;
  border-radius: 14px 14px 14px 0;
  background: rgba(37, 99, 235, 0.84);
}

.project-item-icon-box {
  --scale: 0.8;

  background: var(--jet);
  color: var(--orange-yellow-crayola);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(var(--scale));
  font-size: 20px;
  padding: 18px;
  border-radius: 12px;
  opacity: 0;
  z-index: 1;
  transition: var(--transition-1);
}

.project-card:hover .project-item-icon-box {
  --scale: 1;
  opacity: 1;
}

.project-item-icon-box ion-icon { --ionicon-stroke-width: 50px; }

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-1);
}

.project-card:hover img { transform: scale(1.03); }

.project-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 4px;
}

.project-title {
  color: var(--white-2);
  font-size: var(--fs-4);
  font-weight: var(--fw-500);
  line-height: 1.35;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-category {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-bottom: 0;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(215, 38, 56, 0.1);
  color: var(--orange-yellow-crayola);
  font-size: var(--fs-7);
  font-weight: var(--fw-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  order: -1;
}

.project-summary {
  display: none;
}

.project-meta {
  color: var(--vegas-gold);
  font-size: var(--fs-7);
  font-weight: var(--fw-500);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-actions {
  display: none;
}

.project-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(215, 38, 56, 0.18);
  background: rgba(215, 38, 56, 0.08);
  color: var(--orange-yellow-crayola);
  font-size: var(--fs-7);
  font-weight: var(--fw-500);
  line-height: 1;
  cursor: pointer;
  opacity: 0.92;
  transition: transform var(--transition-1), background var(--transition-1);
}

.project-link:hover,
.project-link:focus-visible {
  transform: translateY(-1px);
  background: rgba(215, 38, 56, 0.14);
}

@media (min-width: 580px) {
  .project-card {
    padding: 16px;
  }

  .project-img {
    height: 190px;
  }
}

.project-modal-container {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 24px 12px 48px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  z-index: 20;
  pointer-events: none;
  visibility: hidden;
}

.project-modal-container.active {
  pointer-events: all;
  visibility: visible;
}

.project-modal {
  position: relative;
  background: rgba(255, 255, 255, 0.96);
  max-width: 720px;
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow-5), inset 0 0 0 1px rgba(215, 38, 56, 0.06);
  padding: 22px;
  z-index: 2;
  opacity: 0;
  transform: translateY(16px);
  transition: transform var(--transition-2), opacity var(--transition-2);
  overflow: hidden;
  will-change: transform, opacity;
}

.project-modal-container.active .project-modal {
  opacity: 1;
  transform: translateY(0);
}

.project-modal::after {
  top: -22px;
  right: 22px;
  width: 88px;
  height: 118px;
  border-radius: 20px 38px 14px 62px;
  background: rgba(18, 18, 18, 0.1);
  transform: rotate(12deg);
}

.project-modal-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 18px;
}

.project-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-modal-kicker {
  margin-bottom: 8px;
  color: var(--orange-yellow-crayola);
  font-size: var(--fs-7);
  font-weight: var(--fw-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.project-modal-title {
  margin-bottom: 12px;
  line-height: 1.3;
}

.project-modal-summary {
  color: var(--light-gray);
  font-size: var(--fs-6);
  line-height: 1.8;
  margin-bottom: 12px;
}

.project-modal-meta {
  color: var(--vegas-gold);
  font-size: var(--fs-6);
  line-height: 1.7;
}

.project-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}





/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog-posts { margin-bottom: 10px; }

.blog-posts-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.blog-post-item > a {
  position: relative;
  background: var(--border-gradient-onyx);
  height: 100%;
  box-shadow: var(--shadow-4), var(--neon-red-soft);
  border-radius: 16px;
  z-index: 1;
}

.blog-post-item > a::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: var(--eerie-black-1);
  z-index: -1;
}

.blog-banner-box {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
}

.blog-banner-box::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 44px;
  height: 12px;
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.84);
  z-index: 1;
  pointer-events: none;
}

.blog-post-item:nth-child(3n + 2) .blog-banner-box::after {
  left: 12px;
  right: auto;
  width: 18px;
  height: 18px;
  border-radius: 6px 6px 18px 6px;
  background: rgba(215, 38, 56, 0.84);
}

.blog-post-item:nth-child(3n + 3) .blog-banner-box::after {
  left: auto;
  right: 12px;
  top: 12px;
  bottom: auto;
  width: 34px;
  height: 34px;
  border-radius: 14px 14px 14px 0;
  background: rgba(37, 99, 235, 0.82);
}

.blog-banner-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-1);
}

.blog-post-item > a:hover .blog-banner-box img { transform: scale(1.04); }

.blog-content { padding: 15px; }

.blog-meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
}

.blog-meta :is(.blog-category, time) {
  color: var(--light-gray-70);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
}

.blog-meta .dot {
  background: var(--light-gray-70);
  width: 4px;
  height: 4px;
  border-radius: 4px;
}

.blog-item-title {
  margin-bottom: 10px;
  line-height: 1.3;
  transition: var(--transition-1);
}

.blog-post-item > a:hover .blog-item-title { color: var(--orange-yellow-crayola); }

.blog-text {
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
  line-height: 1.6;
}





/*-----------------------------------*\
  #NOTE PAGE
\*-----------------------------------*/

.note-page {
  min-height: 100vh;
  background: var(--smoky-black);
}

.note-shell {
  position: relative;
  width: min(920px, calc(100% - 32px));
  margin: 36px auto;
}

.note-shell::before,
.note-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.note-shell::before {
  top: -12px;
  right: 26px;
  width: 96px;
  height: 132px;
  background: rgba(18, 18, 18, 0.1);
  border-radius: 22px 40px 14px 70px;
  transform: rotate(12deg);
}

.note-shell::after {
  bottom: 30px;
  left: -14px;
  width: 118px;
  height: 56px;
  background: rgba(215, 38, 56, 0.12);
  border-radius: 999px 18px 26px 999px;
  transform: rotate(-8deg);
}

.note-article {
  position: relative;
  padding: 24px;
  border-radius: 24px;
  background: var(--border-gradient-onyx);
  box-shadow: var(--shadow-3);
  z-index: 1;
  overflow: hidden;
}

.note-article::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: var(--bg-gradient-jet);
  z-index: -1;
}

.note-article::after {
  content: "";
  position: absolute;
  top: -18px;
  right: 20px;
  width: 84px;
  height: 110px;
  border-radius: 20px 34px 14px 60px;
  background: rgba(18, 18, 18, 0.1);
  transform: rotate(12deg);
  pointer-events: none;
}

.note-article > * {
  position: relative;
  z-index: 1;
}

.note-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--orange-yellow-crayola);
  font-size: var(--fs-6);
  font-weight: var(--fw-500);
}

.note-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.note-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(215, 38, 56, 0.1);
  color: var(--orange-yellow-crayola);
  font-size: var(--fs-7);
  font-weight: var(--fw-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.note-date {
  color: var(--light-gray-70);
  font-size: var(--fs-6);
}

.note-title {
  margin-bottom: 14px;
  color: var(--white-2);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.15;
}

.note-lead {
  max-width: 68ch;
  margin-bottom: 22px;
  color: var(--light-gray);
  font-size: var(--fs-5);
  line-height: 1.8;
}

.note-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 8;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
}

.note-hero::after {
  content: "";
  position: absolute;
  left: 16px;
  bottom: 16px;
  width: 54px;
  height: 12px;
  border-radius: 999px;
  background: rgba(215, 38, 56, 0.84);
  z-index: 1;
  pointer-events: none;
}

.note-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.note-outline {
  margin-bottom: 24px;
  padding: 16px 18px;
  border: 1px solid var(--jet);
  border-radius: 18px;
  background: var(--eerie-black-1);
}

.note-outline-title {
  margin-bottom: 10px;
  color: var(--white-2);
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  letter-spacing: 0.02em;
}

.note-outline-list {
  display: grid;
  gap: 8px;
}

.note-outline-list a {
  color: var(--light-gray-70);
  font-size: var(--fs-6);
  line-height: 1.6;
}

.note-outline-list a:hover,
.note-outline-list a:focus-visible {
  color: var(--orange-yellow-crayola);
}

@media (hover: none) {
  .content-card:hover,
  .service-item:hover,
  .project-card:hover,
  .blog-post-item > a:hover,
  .award-archive-item:hover,
  .award-card:hover {
    transform: none;
    box-shadow: var(--shadow-2), var(--neon-red-soft);
  }

  .project-card:hover img,
  .blog-post-item > a:hover .blog-banner-box img {
    transform: none;
  }

  .project-link:hover,
  .project-link:focus-visible,
  .award-see-all-btn:hover,
  .award-see-all-btn:focus-visible,
  .award-nav-btn:hover,
  .award-nav-btn:focus-visible,
  .info_more-btn:hover,
  .info_more-btn:focus,
  .modal-close-btn:hover,
  .modal-close-btn:focus {
    transform: none;
    box-shadow: none;
  }
}

.note-content {
  color: var(--light-gray);
  font-size: var(--fs-5);
  line-height: 1.9;
}

.note-content h2 {
  margin: 26px 0 10px;
  color: var(--white-2);
  font-size: var(--fs-2);
  line-height: 1.3;
}

.note-content p + p {
  margin-top: 14px;
}

.note-content ul {
  margin: 14px 0;
  padding-left: 20px;
}

.note-content li {
  list-style: disc;
  margin: 8px 0;
}

.note-content code {
  display: inline;
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(17, 24, 39, 0.08);
  color: var(--accent-red);
  font-size: 0.95em;
}

.note-content pre {
  margin: 16px 0;
  padding: 16px;
  border-radius: 16px;
  background: #101827;
  overflow-x: auto;
}

.note-content pre code {
  display: block;
  padding: 0;
  background: transparent;
  color: #f8fafc;
}

.note-footer {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--jet);
  color: var(--light-gray-70);
  font-size: var(--fs-6);
}

.note-pagination {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.note-pagination-link {
  flex: 1;
  min-height: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--jet);
  background: var(--eerie-black-1);
  color: var(--light-gray);
}

.note-pagination-link span {
  color: var(--light-gray-70);
  font-size: var(--fs-7);
  margin-bottom: 4px;
}

.note-pagination-link strong {
  color: var(--white-2);
  font-size: var(--fs-6);
  line-height: 1.5;
}

.note-pagination-link.next-note {
  text-align: right;
}





/*-----------------------------------*\
  #CONTACT
\*-----------------------------------*/

.mapbox {
  position: relative;
  height: 250px;
  width: 100%;
  border-radius: 16px;
  margin-bottom: 30px;
  border: 1px solid var(--jet);
  overflow: hidden;
}

.mapbox figure { height: 100%; }

.mapbox iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(1);
}

.contact-form { margin-bottom: 10px; }

.form-title { margin-bottom: 20px; }

.input-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.form-input {
  color: var(--white-2);
  font-size: var(--fs-6);
  font-weight: var(--fw-400);
  padding: 13px 20px;
  border: 1px solid var(--jet);
  border-radius: 14px;
  outline: none;
}

.form-input::placeholder { font-weight: var(--fw-500); }

.form-input:focus { border-color: var(--orange-yellow-crayola); }

textarea.form-input {
  min-height: 100px;
  height: 120px;
  max-height: 200px;
  resize: vertical;
  margin-bottom: 25px;
}

textarea.form-input::-webkit-resizer { display: none; }

.form-input:focus:invalid { border-color: var(--bittersweet-shimmer); }

.form-btn {
  position: relative;
  width: 100%;
  background: var(--border-gradient-onyx);
  color: var(--orange-yellow-crayola);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 14px;
  font-size: var(--fs-6);
  text-transform: capitalize;
  box-shadow: var(--shadow-3);
  z-index: 1;
  transition: var(--transition-1);
}

.form-btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--bg-gradient-jet);
  border-radius: inherit;
  z-index: -1;
  transition: var(--transition-1);
}

.form-btn ion-icon { font-size: 16px; }

.form-btn:hover { background: var(--bg-gradient-yellow-1); }

.form-btn:hover::before { background: var(--bg-gradient-yellow-2); }

.form-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-btn:disabled:hover { background: var(--border-gradient-onyx); }

.form-btn:disabled:hover::before { background: var(--bg-gradient-jet); }

.form-note {
  margin-top: 14px;
  color: var(--light-gray-70);
  font-size: var(--fs-7);
  line-height: 1.7;
}

.form-note a {
  display: inline;
  color: var(--orange-yellow-crayola);
}





/*-----------------------------------*\
  #RESPONSIVE
\*-----------------------------------*/

/**
 * responsive larger than 450px screen
 */

@media (min-width: 450px) {

  /**
   * client
   */

  .clients-item { min-width: calc(33.33% - 10px); }



  /**
   * #PORTFOLIO, BLOG 
   */

  .project-img,
  .blog-banner-box { height: auto; }

}





/**
 * responsive larger than 580px screen
 */

@media (min-width: 580px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 32px;
    --fs-2: 24px;
    --fs-3: 26px;
    --fs-4: 18px;
    --fs-6: 15px;
    --fs-7: 15px;
    --fs-8: 12px;

  }



  /**
   * #REUSED STYLE
   */

  .sidebar, article {
    width: 520px;
    margin-inline: auto;
    padding: 30px;
  }

  .article-title {
    font-weight: var(--fw-600);
    padding-bottom: 15px;
  }

  .article-title::after {
    width: 40px;
    height: 5px;
  }

  .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: 18px;
  }



  /**
   * #MAIN
   */

  main {
    margin-top: 60px;
    margin-bottom: 100px;
  }



  /**
   * #SIDEBAR
   */

  .sidebar {
    max-height: 180px;
    margin-bottom: 30px;
  }

  .sidebar.active { max-height: 584px; }

  .sidebar-info { gap: 25px; }

  .avatar-box { border-radius: 30px; }

  .avatar-box img { width: 120px; }

  .info-content .name { margin-bottom: 15px; }

  .info-content .title { padding: 5px 18px; }

  .info_more-btn {
    top: -30px;
    right: -30px;
    padding: 10px 15px;
  }

  .info_more-btn span {
    display: block;
    font-size: var(--fs-8);
  }

  .info_more-btn ion-icon { display: none; }

  .separator { margin: 32px 0; }

  .contacts-list { gap: 20px; }

  .contact-info {
    max-width: calc(100% - 64px);
    width: calc(100% - 64px);
  }



  /**
   * #NAVBAR
   */

  .navbar { border-radius: 20px 20px 0 0; }

  .navbar-list { gap: 20px; }

  .navbar-link { --fs-8: 14px; }



  /**
   * #ABOUT
   */

  .about .article-title { margin-bottom: 20px; }

  .about-text { margin-bottom: 40px; }

  /* service */

  .service-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 18px;
    padding: 30px;
  }

  .service-icon-box {
    margin-bottom: 0;
    margin-top: 5px;
  }

  .service-content-box { text-align: left; }

  /* testimonials */

  .testimonials-title { margin-bottom: 25px; }

  .testimonials-list {
    gap: 30px;
    margin: 0 -30px;
    padding: 30px;
    padding-bottom: 35px;
  }

  .content-card {
    padding: 30px;
    padding-top: 25px;
  }

  .testimonials .content-card {
    padding: 26px 26px 24px 126px;
  }

  .testimonials-avatar-box {
    top: 24px;
    left: 24px;
    width: 84px;
    height: 84px;
    border-radius: 20px;
  }

  .testimonials-avatar-box img {
    width: 100%;
    height: 100%;
  }

  .testimonials-item-title {
    margin-bottom: 10px;
    margin-left: 0;
  }

  .testimonials-text {
    line-clamp: 2;
    -webkit-line-clamp: 2;
  }

  /* testimonials modal */

  .modal-container { padding: 20px; }

  .testimonials-modal {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 25px;
    padding: 30px;
    border-radius: 20px;
  }

  .modal-img-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .modal-avatar-box {
    border-radius: 18px;
    margin-bottom: 0;
  }

  .modal-avatar-box img { width: 65px; }

  .modal-img-wrapper > img {
    display: block;
    flex-grow: 1;
    width: 35px;
  }

  /* clients */

  .clients-list {
    gap: 50px;
    margin: 0 -30px;
    padding: 45px;
    scroll-padding-inline: 45px;
  }

  .clients-item { min-width: calc(33.33% - 35px); }



  /**
   * #RESUME
   */

  .timeline-list { margin-left: 65px; }

  .timeline-item:not(:last-child)::before { left: -40px; }

  .timeline-item::after {
    height: 8px;
    width: 8px;
    left: -43px;
  }

  .award-toolbar { margin-bottom: 24px; }

  .award-item { min-width: calc(50% - 15px); }

  .award-card { padding: 18px; }

  .award-year-grid { grid-template-columns: 1fr 1fr; }

  .award-modal {
    padding: 30px;
    border-radius: 24px;
  }

  .award-gallery-grid { grid-template-columns: 1fr 1fr; }

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



  /**
   * #PORTFOLIO, BLOG
   */

  .project-img, .blog-banner-box { border-radius: 16px; }

  .blog-posts-list { gap: 30px; }

  .blog-content { padding: 25px; }



  /**
   * #CONTACT
   */

  .mapbox {
    height: 380px;
    border-radius: 18px;
  }

  .input-wrapper {
    gap: 30px;
    margin-bottom: 30px;
  }

  .form-input { padding: 15px 20px; }

  textarea.form-input { margin-bottom: 30px; }

  .form-btn {
    --fs-6: 16px;
    padding: 16px 20px;
  }

  .form-btn ion-icon { font-size: 18px; }

}





/**
 * responsive larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * REUSED STYLE
   */

  .sidebar, article { width: 700px; }

  .has-scrollbar::-webkit-scrollbar-button { width: 100px; }



  /**
   * SIDEBAR
   */

  .contacts-list {
    grid-template-columns: 1fr 1fr;
    gap: 30px 15px;
  }



  /**
   * NAVBAR
   */

  .navbar-link { --fs-8: 15px; }



  /**
   * ABOUT
   */

  /* testimonials modal */

  .testimonials-modal {
    gap: 35px;
    max-width: 680px;
  }

  .modal-avatar-box img { width: 80px; }

  .award-item { min-width: calc(50% - 12px); }

  .award-modal-header { align-items: center; }



  /**
   * PORTFOLIO
   */

  .article-title { padding-bottom: 20px; }

  .filter-select-box { display: none; }

  .filter-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
    padding-left: 5px;
    margin-bottom: 30px;
  }

  .filter-item button {
    color: var(--light-gray);
    font-size: var(--fs-5);
    transition: var(--transition-1);
  }

  .filter-item button:hover { color: var(--light-gray-70); }

  .filter-item button.active { color: var(--orange-yellow-crayola); }

  /* portfolio and blog grid */

  .project-list, .blog-posts-list { grid-template-columns: 1fr 1fr; }



  /**
   * CONTACT
   */

  .input-wrapper { grid-template-columns: 1fr 1fr; }

  .form-btn {
    width: max-content;
    margin-left: auto;
  }
  
}





/**
 * responsive larger than 1024px screen
 */

@media (min-width: 1024px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
    * shadow
    */

    --shadow-1: -4px 8px 24px hsla(0, 0%, 0%, 0.125);
    --shadow-2: 0 16px 30px hsla(0, 0%, 0%, 0.125);
    --shadow-3: 0 16px 40px hsla(0, 0%, 0%, 0.125);

  }



  /**
   * REUSED STYLE
   */

  .sidebar, article {
    width: 950px;
    box-shadow: var(--shadow-5);
  }



  /**
   * MAIN 
   */

  main { margin-bottom: 60px; }

  .main-content {
    position: relative;
    width: max-content;
    margin: auto;
  }



  /**
   * NAVBAR
   */

  .navbar {
    position: absolute;
    bottom: auto;
    top: 0;
    left: auto;
    right: 0;
    width: max-content;
    border-radius: 0 20px;
    padding: 0 20px;
    box-shadow: none;
  }

  .navbar-list {
    gap: 30px;
    padding: 0 20px;
  }

  .navbar-link { font-weight: var(--fw-500); }



  /**
   * ABOUT
   */

  /* service */

  .service-list {
    grid-template-columns: 1fr 1fr;
    gap: 20px 25px;
  }

  .profile-links-list { gap: 14px; }

  /* testimonials */

  .testimonials-item { min-width: calc(50% - 15px); }

  .award-item {
    min-width: calc(45% - 15px);
    max-width: none;
  }

  .award-year-grid { grid-template-columns: repeat(3, 1fr); }

  /* clients */

  .clients-item { min-width: calc(25% - 38px); }



  /**
   * PORTFOLIO
   */

  .project-list { grid-template-columns: repeat(3, 1fr); }



  /**
   * BLOG
   */

  .blog-banner-box { height: 230px; }

}





/**
 * responsive larger than 1250px screen
 */

@media (min-width: 1250px) {

  /**
   * RESET
   */

  body::-webkit-scrollbar { width: 20px; }

  body::-webkit-scrollbar-track { background: var(--smoky-black); }

  body::-webkit-scrollbar-thumb {
    border: 5px solid var(--smoky-black);
    background: hsla(0, 0%, 100%, 0.1);
    border-radius: 20px;
    box-shadow: inset 1px 1px 0 hsla(0, 0%, 100%, 0.11),
                inset -1px -1px 0 hsla(0, 0%, 100%, 0.11);
  }

  body::-webkit-scrollbar-thumb:hover { background: hsla(0, 0%, 100%, 0.15); }

  body::-webkit-scrollbar-button { height: 60px; }



  /**
   * REUSED STYLE
   */

  .sidebar, article { width: auto; }

  article { min-height: 100%; }



  /**
   * MAIN
   */

  main {
    max-width: 1200px;
    margin-inline: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 25px;
  }

  .main-content {
    min-width: 75%;
    width: 75%;
    margin: 0;
  }



  /**
   * SIDEBAR
   */

  .sidebar {
    position: sticky;
    top: 60px;
    max-height: max-content;
    height: 100%;
    margin-bottom: 0;
    padding-top: 60px;
    z-index: 1;
  }

  .sidebar-info { flex-direction: column; }

  .avatar-box img { width: 150px; }

  .info-content .name {
    white-space: normal;
    font-size: clamp(1.9rem, 5vw, 2.4rem);
    text-align: center;
    text-wrap: balance;
  }

  .info-content .title { margin: auto; }

  .info_more-btn { display: none; }

  .sidebar-info_more {
    opacity: 1;
    visibility: visible;
  }

  .contacts-list { grid-template-columns: 1fr; }

  .contact-info :is(.contact-link) {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .contact-info .contact-link-email {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .contact-info :is(.contact-link, time, address) {
    --fs-7: 14px;
    font-weight: var(--fw-300);
  }

  .separator:last-of-type {
    margin: 15px 0;
    opacity: 0;
  }

  .social-list { justify-content: center; }



  /**
	 * RESUME
	 */

  .timeline-text { max-width: 700px; }

}
