/*--------------------------------------------------------------
# Design Tokens
--------------------------------------------------------------*/
:root {
  --bg: #f7f3ec;
  --bg-panel: #fffdf8;
  --bg-panel-alt: #efe7d8;
  --border: #e2d8c3;
  --text: #2b2620;
  --text-muted: #7a6f5d;
  --text-soft: #4a4438;
  --accent: #c05f34;
  --accent-warm: #96672f;
  --font-serif: "Fraunces", "Raleway", serif;
  --font-mono: "Share Tech Mono", monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/*--------------------------------------------------------------
# Warped grid backdrop
--------------------------------------------------------------*/
.warp-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  perspective: 600px;
  pointer-events: none;
}

.warp-grid-plane {
  position: absolute;
  left: -50%;
  right: -50%;
  bottom: -10%;
  height: 140%;
  background-image:
    linear-gradient(rgba(192, 95, 52, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 95, 52, 0.09) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: rotateX(62deg);
  animation: warp-grid-drift 22s linear infinite;
}

@keyframes warp-grid-drift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 0 640px, 64px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .warp-grid-plane {
    animation: none;
  }
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 15% 10%, rgba(192, 95, 52, 0.05), transparent 45%),
    radial-gradient(circle at 85% 85%, rgba(150, 103, 47, 0.04), transparent 45%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/></svg>");
  background-attachment: fixed;
}

::selection {
  background: var(--accent);
  color: #fdf8f0;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

a:hover {
  color: var(--accent-warm);
  text-decoration: none;
}

h1,
h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0;
}

h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
  letter-spacing: 0.3px;
}

/*--------------------------------------------------------------
# Reduced motion
--------------------------------------------------------------*/
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .wf-frame.wf-security {
    opacity: 1;
    filter: drop-shadow(0 0 14px rgba(192, 95, 52, 0.35));
  }

  .wf-frame.wf-llm,
  .wf-frame.wf-identity {
    display: none;
  }
}

/*--------------------------------------------------------------
# ASCII Diagram
--------------------------------------------------------------*/
.ascii-diagram {
  display: block;
  font-family: "Share Tech Mono", monospace;
  font-size: 12px;
  line-height: 1.45;
  color: #a8542e;
  background: #efe7d8;
  border: 1px solid #e2d8c3;
  border-radius: 6px;
  padding: 16px 20px;
  margin: 20px 0;
  overflow-x: auto;
  white-space: pre;
  text-shadow: 0 0 6px rgba(192, 95, 52, 0.2);
}

.ascii-diagram .hl {
  color: #96672f;
  text-shadow: 0 0 6px rgba(150, 103, 47, 0.35);
}

@media (max-width: 768px) {
  .ascii-diagram {
    font-size: 10px;
    padding: 14px;
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #c05f34;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fdf8f0;
  line-height: 0;
}

.back-to-top:hover {
  background: #96672f;
  color: #fdf8f0;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: rgb(247, 243, 236);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #c05f34;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Fade-reveal text (word by word)
--------------------------------------------------------------*/
.fade-reveal-text .fw {
  opacity: 0.25;
  transition: opacity 0.5s ease;
}

.fade-reveal-text.is-visible .fw {
  opacity: 1;
}

/*--------------------------------------------------------------
# Scroll-in stagger reveal
--------------------------------------------------------------*/
.reveal-stagger>* {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-stagger.is-visible>* {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger>*:nth-child(1) {
  transition-delay: 0.02s;
}

.reveal-stagger>*:nth-child(2) {
  transition-delay: 0.08s;
}

.reveal-stagger>*:nth-child(3) {
  transition-delay: 0.14s;
}

.reveal-stagger>*:nth-child(4) {
  transition-delay: 0.2s;
}

.reveal-stagger>*:nth-child(5) {
  transition-delay: 0.26s;
}

.reveal-stagger>*:nth-child(n+6) {
  transition-delay: 0.3s;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 9997;
  transition: all 0.5s;
  padding: 15px;
  overflow-y: auto;
}

@media (max-width: 992px) {
  #header {
    width: 300px;
    background: #efe7d8;
    border-right: 1px solid #e2d8c3;
    left: -300px;
  }
}

@media (min-width: 992px) {
  #main {
    margin-left: 100px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.nav-menu {
  padding: 0;
  display: block;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
}

.nav-menu a,
.nav-menu a:focus {
  display: flex;
  align-items: center;
  color: #2b2620;
  padding: 10px 18px;
  margin-bottom: 8px;
  transition: 0.3s;
  font-size: 15px;
  border-radius: 50px;
  background: #fffdf8;
  height: 56px;
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
}

.nav-menu a i,
.nav-menu a:focus i {
  font-size: 20px;
}

.nav-menu a span,
.nav-menu a:focus span {
  padding: 0 5px 0 7px;
  color: #2b2620;
}

@media (min-width: 992px) {

  .nav-menu a,
  .nav-menu a:focus {
    width: 56px;
  }

  .nav-menu a span,
  .nav-menu a:focus span {
    display: none;
    color: #fff;
  }
}

.nav-menu a:hover,
.nav-menu .active,
.nav-menu .active:focus,
.nav-menu li:hover>a {
  color: #fdf8f0;
  background: #c05f34;
  box-shadow: 0 0 12px rgba(192, 95, 52, 0.6);
}

.nav-menu a:hover span,
.nav-menu .active span,
.nav-menu .active:focus span,
.nav-menu li:hover>a span {
  color: #fdf8f0;
}

.nav-menu a:hover,
.nav-menu li:hover>a {
  width: 100%;
  color: #fdf8f0;
}

.nav-menu a:hover span,
.nav-menu li:hover>a span {
  display: block;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  position: fixed;
  right: 10px;
  top: 10px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 28px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 0;
  cursor: pointer;
  border-radius: 50px;
  padding: 5px;
}

.mobile-nav-toggle i {
  color: #2b2620;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active #header {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle {
  color: #fdf8f0;
  background-color: #c05f34;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  min-height: 60vh;
  padding: 90px 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(192, 95, 52, 0.08), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(150, 103, 47, 0.05), transparent 50%),
    #f7f3ec;
  position: relative;
  overflow: hidden;
}

.hero-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  background: radial-gradient(320px circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(192, 95, 52, 0.1), transparent 70%);
  z-index: 0;
}

#hero .container {
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  #hero {
    padding-left: 0;
  }
}

#hero h1 {
  margin: 10px 0 0 0;
  font-size: 60px;
  font-weight: 600;
  line-height: 1.08;
  color: var(--text);
  font-family: var(--font-serif);
  font-style: italic;
}

#hero p {
  color: #2b2620;
  margin: 15px 0 0 0;
  font-size: 22px;
  font-family: "Share Tech Mono", "Poppins", sans-serif;
}

#hero p span {
  color: #c05f34;
  letter-spacing: 1px;
}

.hero-statement {
  color: var(--text);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.35;
  margin: 20px 0 0 0;
  max-width: 640px;
}

.hero-substatement {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
  margin: 12px 0 0 0;
  max-width: 560px;
}

#hero .terminal-line {
  color: #a8542e;
  font-family: "Share Tech Mono", monospace;
  font-size: 15px;
  margin: 18px 0 0 0;
  opacity: 0.85;
}

#hero .terminal-output {
  color: #2b2620;
  font-family: "Share Tech Mono", monospace;
  font-size: 20px;
  margin: 8px 0 0 0;
}

.hero-wireframe-wrap {
  position: absolute;
  top: 50%;
  right: 4%;
  width: 560px;
  max-width: 50%;
  aspect-ratio: 1280 / 720;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  filter: drop-shadow(0 0 18px rgba(192, 95, 52, 0.35));
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-video.is-visible {
  opacity: 1;
}

.wf-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: drop-shadow(0 0 14px rgba(192, 95, 52, 0.35)) blur(6px);
  animation-duration: 13.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.wf-llm {
  animation-name: wf-cycle-llm;
}

.wf-identity {
  animation-name: wf-cycle-identity;
}

.wf-security {
  animation-name: wf-cycle-security;
}

@keyframes wf-cycle-llm {

  0%,
  100% {
    opacity: 0;
    filter: drop-shadow(0 0 14px rgba(192, 95, 52, 0.35)) blur(6px);
    transform: scale(0.95);
  }

  4%,
  27% {
    opacity: 1;
    filter: drop-shadow(0 0 14px rgba(192, 95, 52, 0.35)) blur(0);
    transform: scale(1);
  }

  33% {
    opacity: 0;
    filter: drop-shadow(0 0 14px rgba(192, 95, 52, 0.35)) blur(6px);
    transform: scale(1.05);
  }
}

@keyframes wf-cycle-identity {

  0%,
  33%,
  100% {
    opacity: 0;
    filter: drop-shadow(0 0 14px rgba(150, 103, 47, 0.3)) blur(6px);
    transform: scale(0.95);
  }

  37%,
  60% {
    opacity: 1;
    filter: drop-shadow(0 0 14px rgba(150, 103, 47, 0.3)) blur(0);
    transform: scale(1);
  }

  66% {
    opacity: 0;
    filter: drop-shadow(0 0 14px rgba(150, 103, 47, 0.3)) blur(6px);
    transform: scale(1.05);
  }
}

@keyframes wf-cycle-security {

  0%,
  66%,
  100% {
    opacity: 0;
    filter: drop-shadow(0 0 14px rgba(192, 95, 52, 0.35)) blur(6px);
    transform: scale(0.95);
  }

  70%,
  93% {
    opacity: 1;
    filter: drop-shadow(0 0 14px rgba(192, 95, 52, 0.35)) blur(0);
    transform: scale(1);
  }

  99% {
    opacity: 0;
    filter: drop-shadow(0 0 14px rgba(192, 95, 52, 0.35)) blur(6px);
    transform: scale(1.05);
  }
}

@media (max-width: 992px) {
  .hero-wireframe-wrap {
    display: none;
  }
}

#hero .social-links {
  margin-top: 40px;
}

#hero .social-links a {
  font-size: 24px;
  display: inline-block;
  color: #2b2620;
  line-height: 1;
  margin-right: 20px;
  transition: transform 0.25s var(--ease), color 0.25s var(--ease);
}

#hero .social-links a:hover {
  color: var(--accent);
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  #hero {
    text-align: center;
  }

  #hero h1 {
    font-size: 32px;
    line-height: 36px;
  }

  #hero p {
    margin-top: 10px;
    font-size: 20px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Terminal Window Component
--------------------------------------------------------------*/
.terminal {
  background: #efe7d8;
  border: 1px solid #e2d8c3;
  border-radius: 10px;
  box-shadow: 0 0 45px rgba(192, 95, 52, 0.12);
  overflow: hidden;
  text-align: left;
}

.hero-terminal {
  max-width: 720px;
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: #fffdf8;
  border-bottom: 1px solid #e2d8c3;
}

.terminal-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}

.terminal-dot.red {
  background: #ff5f56;
}

.terminal-dot.yellow {
  background: #ffbd2e;
}

.terminal-dot.green {
  background: #27c93f;
}

.terminal-title {
  margin-left: 10px;
  font-family: "Share Tech Mono", monospace;
  font-size: 13px;
  color: #a8542e;
  opacity: 0.7;
}

.terminal-body {
  padding: 24px 28px;
}

.terminal-line {
  font-family: "Share Tech Mono", monospace;
  color: #a8542e;
  font-size: 14px;
  margin: 0 0 6px 0;
  opacity: 0.85;
}

@media (max-width: 992px) {
  .hero-terminal {
    max-width: 100%;
  }

  .terminal-body {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Site Header / Past-Present-Future Nav
--------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

main {
  display: block;
  width: 94%;
  max-width: 1140px;
  margin: 0 auto 40px auto;
}

.page-section {
  scroll-margin-top: 90px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(247, 243, 236, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e2d8c3;
}

.site-header-inner {
  width: 94%;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
}

.brand-dots {
  display: inline-flex;
  gap: 6px;
}

.brand-name {
  font-family: "Share Tech Mono", monospace;
  font-size: 13px;
  color: #a8542e;
  opacity: 0.7;
}

@media (max-width: 576px) {
  .brand-name {
    display: none;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}

.section-kicker {
  order: -1;
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 6px;
}

.section-title h2 {
  font-size: 34px;
  font-weight: 600;
  font-style: italic;
  text-transform: none;
  margin: 0;
  padding: 0;
  text-align: right;
  color: var(--text);
}

.section-title h2::after {
  content: "";
  display: block;
  height: 3px;
  width: 40px;
  margin-top: 14px;
  margin-left: auto;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s var(--ease);
}

[data-aos].aos-animate .section-title h2::after {
  transform: scaleX(1);
}

.section-title p {
  flex-basis: 100%;
  order: 2;
  margin-bottom: 0;
  color: var(--text-muted);
  text-align: left;
}

@media (max-width: 768px) {
  .section-title {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-title h2 {
    text-align: left;
  }

  .section-title h2::after {
    margin-left: 0;
    transform-origin: left;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 27px;
  color: var(--text-muted);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #c05f34;
  line-height: 0;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;
  margin: 0 0 24px 0;
  font-family: "Share Tech Mono", monospace;
  font-size: 15px;
}

.about .content .info-grid li {
  margin-bottom: 0;
  color: #2b2620;
}

.about .content .info-grid strong {
  color: #c05f34;
  margin-right: 6px;
}

.about .content .hobby-list li {
  margin-bottom: 12px;
  align-items: flex-start;
  color: #2b2620;
}

.about .content .hobby-list li::before {
  content: "$";
  color: #c05f34;
  margin-right: 10px;
  font-family: "Share Tech Mono", monospace;
}

.about .content .hobby-list i {
  color: #7a6f5d;
  font-style: italic;
  margin-left: 6px;
}

@media (max-width: 768px) {
  .about-terminal .info-grid {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Facts
--------------------------------------------------------------*/
.facts .count-box {
  padding: 30px 30px 25px 30px;
  margin-top: 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.facts .count-box:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.facts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #c05f34;
  color: #fdf8f0;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.facts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #c05f34;
}

.facts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Disciplines
--------------------------------------------------------------*/
.discipline-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 34px 28px;
  margin-top: 30px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.discipline-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192, 95, 52, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.discipline-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

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

.discipline-card h3 {
  font-size: 21px;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text);
  margin-bottom: 14px;
  position: relative;
}

.discipline-card p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 20px;
  position: relative;
}

.discipline-link {
  display: block;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 16px;
  margin-top: auto;
  transition: 0.25s var(--ease);
  position: relative;
}

.discipline-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.discipline-card-filled .discipline-link {
  color: #fdf8f0;
  background: var(--accent);
  border-color: var(--accent);
}

.discipline-card-filled .discipline-link:hover {
  background: var(--accent-warm);
  border-color: var(--accent-warm);
  color: #fdf8f0;
}

/*--------------------------------------------------------------
# Future Statement
--------------------------------------------------------------*/
.future-statement {
  text-align: center;
  padding-bottom: 20px;
}

.future-statement .hero-statement,
.future-statement .hero-substatement {
  margin-left: auto;
  margin-right: auto;
}

.future-statement .hero-statement {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 38px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Akills
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 10px 0;
  margin: 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #c05f34;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  overflow: hidden;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: width 1.1s var(--ease);
  background-color: var(--accent);
  box-shadow: 0 0 8px rgba(192, 95, 52, 0.7);
  position: relative;
  overflow: hidden;
}

.skills .progress-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: translateX(-100%);
  animation: skill-shimmer 2.6s ease-in-out infinite;
  animation-delay: 1.1s;
}

@keyframes skill-shimmer {
  0% {
    transform: translateX(-100%);
  }

  40%,
  100% {
    transform: translateX(220%);
  }
}

/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/
.resume .resume-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #2b2620;
}

.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid var(--accent);
  position: relative;
  transition: padding-left 0.3s var(--ease);
}

.resume .resume-item:hover {
  padding-left: 26px;
}

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #c05f34;
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 16px;
  background: #fffdf8;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.resume .resume-item ul {
  padding-left: 20px;
}

.resume .resume-item ul li {
  padding-bottom: 10px;
}

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

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #fff;
  border: 2px solid #c05f34;
}

/*--------------------------------------------------------------
# Project Explorer (file tree + viewer)
--------------------------------------------------------------*/
.project-explorer {
  display: flex;
  border: 1px solid #e2d8c3;
  border-radius: 6px;
  overflow: hidden;
  background: #f7f3ec;
  min-height: 420px;
}

.file-tree {
  width: 280px;
  flex-shrink: 0;
  border-right: 1px solid #e2d8c3;
  background: #efe7d8;
  padding: 12px;
}

.tree-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tree-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 12px;
  margin-bottom: 2px;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  opacity: 0.75;
  transition: opacity 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}

.tree-item:hover {
  transform: translateX(3px);
}

.tree-item::before {
  content: "\276F";
  color: var(--accent);
  margin-right: 8px;
  transition: transform 0.2s var(--ease);
}

.tree-item.active::before {
  transform: rotate(90deg);
}

.tree-name {
  flex: 1;
  overflow-wrap: anywhere;
}

.tree-tag {
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
  flex-shrink: 0;
}

.tag-app {
  background: rgba(192, 95, 52, 0.12);
  color: #c05f34;
}

.tag-pub {
  background: rgba(150, 103, 47, 0.12);
  color: #96672f;
}

.tag-ey {
  background: rgba(179, 136, 255, 0.14);
  color: #b388ff;
}

.tree-item:hover {
  opacity: 1;
  background: #fffdf8;
}

.tree-item.active {
  opacity: 1;
  color: #c05f34;
  background: #fffdf8;
  box-shadow: inset 3px 0 0 0 #c05f34;
}

.file-viewer {
  flex: 1;
  padding: 28px 32px;
}

.project-detail {
  display: none;
}

.project-detail.active {
  display: block;
  animation: detail-fade-in 0.45s var(--ease);
}

@keyframes detail-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.project-detail h3 {
  font-family: "Share Tech Mono", monospace;
  color: #c05f34;
  font-size: 20px;
  margin-bottom: 16px;
  text-shadow: 0 0 10px rgba(192, 95, 52, 0.35);
}

.meta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  font-family: "Share Tech Mono", monospace;
  font-size: 14px;
}

.meta-list li {
  margin-bottom: 6px;
  color: #2b2620;
}

.meta-list strong {
  color: #96672f;
  margin-right: 6px;
}

.project-detail p {
  color: #4a4438;
  line-height: 1.75;
  font-size: 15px;
}

.project-detail a {
  color: #c05f34;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .project-explorer {
    flex-direction: column;
    min-height: 0;
  }

  .file-tree {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e2d8c3;
    max-height: 220px;
    overflow-y: auto;
  }

  .file-viewer {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  background: #fffdf8;
  border: 1px solid #e2d8c3;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #2b2620;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #c05f34;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(235, 225, 205, 0.85);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(247, 243, 236, 0.92);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #c05f34;
  border-left: 3px solid #c05f34;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #c05f34;
  border-right: 3px solid #c05f34;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #2b2620;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #2b2620;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #2b2620;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #96672f;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #c05f34;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #c05f34;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(69, 80, 91, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2d8c3;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: rgb(136, 142, 142);
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: #000000;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
  color: #9f9f27;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: #a2a236;
}

.services .iconbox-orange i {
  color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services .iconbox-pink i {
  color: #e80368;
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.services .iconbox-yellow i {
  color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.services .iconbox-red i {
  color: #ff5828;
}

.services .iconbox-red:hover .icon i {
  color: #fff;
}

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: rgb(255, 255, 255);
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #d5e127;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgb(255, 255, 255);
  opacity: 1;
  border: 1px solid #c05f34;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #c05f34;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fffdf8;
  border: 1px solid #e2d8c3;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.contact .info i {
  font-size: 20px;
  color: var(--accent);
  float: left;
  width: 44px;
  height: 44px;
  background: var(--bg-panel-alt);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s var(--ease);
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.contact .info .email:hover i,
.contact .info .address:hover i {
  transform: scale(1.12) rotate(-6deg);
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2b2620;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #7a6f5d;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #c05f34;
  color: #fdf8f0;
}

.contact .php-email-form {
  width: 100%;
  background: #fffdf8;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #e2d8c3;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #c05f34;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #96672f;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #efe7d8;
  color: #2b2620;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fffdf8;
  border: 1px solid #e2d8c3;
  color: #c05f34;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #c05f34;
  color: #fdf8f0;
  text-decoration: none;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}