:root {
  --bg: #101319;
  --bg-soft: #171c23;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f3efe6;
  --muted: #bdb7aa;
  --accent: #f28b51;
  --accent-deep: #d15d31;
  --accent-soft: rgba(242, 139, 81, 0.16);
  --cream: #f3dcc3;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(242, 139, 81, 0.14), transparent 20%),
    radial-gradient(circle at 85% 10%, rgba(243, 220, 195, 0.07), transparent 20%),
    linear-gradient(180deg, #0f1218 0%, #12161d 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.page-glow,
.page-grid {
  position: fixed;
  pointer-events: none;
  z-index: -2;
}

.page-glow {
  border-radius: 999px;
  filter: blur(90px);
}

.glow-one {
  top: 90px;
  left: -80px;
  width: 260px;
  height: 260px;
  background: rgba(242, 139, 81, 0.12);
}

.glow-two {
  right: -100px;
  bottom: 18%;
  width: 320px;
  height: 320px;
  background: rgba(243, 220, 195, 0.08);
}

.page-grid {
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(16, 19, 25, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  padding: 2px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), #f7b48b);
  box-shadow: 0 12px 30px rgba(242, 139, 81, 0.25);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-name {
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
}

.brand-role {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.94rem;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff !important;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  border-radius: 999px;
}

.menu-toggle span + span {
  margin-top: 6px;
}

.hero-section {
  padding: 48px 0 40px;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 34px;
  align-items: center;
}

.hero-copy,
.panel,
.project-card,
.timeline-item,
.stat-card,
.cta-panel,
.contact-panel,
.portrait-card,
.floating-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.hero-copy {
  padding: 54px;
  border-radius: var(--radius-xl);
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(242, 139, 81, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.section-kicker,
.panel-label,
.hero-note-label,
.badge-label,
.project-index {
  margin: 0;
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 800;
}

.panel-label {
  margin-bottom: 18px;
}

.hero-copy h1,
.section-intro h2,
.cta-copy h2,
.contact-heading h2 {
  margin: 18px 0 0;
  font-family: "Syne", sans-serif;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.hero-copy h1 {
  font-size: 35px;
  max-width: 640px;
}

.hero-summary,
.section-intro p,
.value-item p,
.service-card p,
.timeline-item p,
.certificate-card p,
.bullet-item,
.detail-item span,
.metric span,
.contact-panel,
.hero-fact p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-summary {
  margin: 26px 0 0;
  max-width: 580px;
  font-size: 1rem;
}

.hero-actions,
.contact-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--accent);
  border-color: transparent;
  color: #fff;
  font-weight: 700;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.hero-proof {
  margin-top: 40px;
  display: grid;
  gap: 18px;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--text);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6dd89a;
  box-shadow: 0 0 18px rgba(109, 216, 154, 0.8);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-fact {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-fact strong,
.metric strong,
.detail-item strong,
.stat-card strong,
.project-card h3,
.timeline-item h3,
.certificate-card h3,
.value-item h3,
.service-card h3,
.hero-note h2 {
  display: block;
  color: var(--text);
}

.hero-fact strong {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
}

.portrait-card {
  min-height: 620px;
  padding: 30px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top, rgba(242, 139, 81, 0.25), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.portrait-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(16, 19, 25, 0.6);
  border: 1px solid var(--line);
}

.portrait-badge strong {
  font-size: 1rem;
}

.portrait-frame {
  margin: 26px 0;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 0.92;
  background:
    linear-gradient(180deg, rgba(242, 139, 81, 0.2), rgba(255, 255, 255, 0.05)),
    #191e25;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-note {
  padding: 22px;
  border-radius: 24px;
  background: rgba(16, 19, 25, 0.68);
  border: 1px solid var(--line);
}

.hero-note h2 {
  margin: 10px 0 0;
  font-size: 1.5rem;
  line-height: 1.25;
}

.floating-card {
  position: absolute;
  width: min(270px, calc(100% - 40px));
  padding: 22px;
  border-radius: 24px;
  background: rgba(16, 19, 25, 0.86);
}

.floating-card-top {
  top: 28px;
  right: -10px;
}

.floating-card-bottom {
  left: -10px;
  bottom: 26px;
}

.metric-grid,
.details-grid {
  display: grid;
  gap: 12px;
}

.metric,
.detail-item,
.stat-card,
.value-item,
.service-card,
.certificate-card,
.bullet-item {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric,
.detail-item {
  padding: 14px 16px;
}

.metric strong {
  margin-bottom: 4px;
  font-size: 1.08rem;
}

.detail-item strong {
  margin-bottom: 4px;
  font-size: 0.92rem;
}

.metrics-strip {
  padding: 12px 0 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat-card {
  padding: 24px;
}

.stat-card strong {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin-bottom: 10px;
}

.section {
  padding: 54px 0;
}

.section-shell {
  display: grid;
  gap: 28px;
}

.section-intro {
  display: grid;
  gap: 18px;
}

.section-intro h2,
.cta-copy h2,
.contact-heading h2 {
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  text-align: center;
}

.section-intro p {
  /* max-width: 760px; */
  margin: 0;
  text-align: center;
}

.split-intro {
  /* grid-template-columns: minmax(0, 1fr) auto; */
  align-items: end;
  gap: 20px;
}

.text-link {
  color: var(--cream);
  font-weight: 700;
}

.about-layout,
.skills-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.panel {
  padding: 30px;
  border-radius: var(--radius-lg);
}

.strength-list,
.value-list,
.bullets-list,
.certificate-list {
  display: grid;
  gap: 14px;
}

.strength-list {
  /* grid-template-columns: repeat(2, minmax(0, 1fr)); */
}

.strength-item,
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  text-align: center;
}

.value-item,
.service-card,
.certificate-card {
  padding: 20px;
}

.value-item h3,
.service-card h3,
.certificate-card h3,
.project-card h3,
.timeline-item h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.value-item p,
.service-card p,
.certificate-card p,
.project-card p,
.timeline-item p {
  margin: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.project-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.project-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.project-card h3 {
  margin-top: 16px;
  font-size: 1.45rem;
}

.project-meta,
.project-links,
.tag-grid,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
      margin: 20px 0px;
}

.meta-chip,
.project-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.meta-chip {
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
  font-size: 0.82rem;
}

.project-link {
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.project-summary {
  margin: 16px 0;
}

.project-outcome {
  margin: 18px 0;
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
}

.timeline,
.side-stack {
  display: grid;
  gap: 18px;
}

.timeline-item {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.timeline-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--cream);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-company {
  color: var(--muted);
}

.tag-grid {
  gap: 12px;
}

.bullet-item {
  padding: 18px 20px;
}

.cta-panel,
.contact-panel {
  display: grid;
  gap: 22px;
  padding: 34px;
  border-radius: var(--radius-xl);
}

.cta-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.contact-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.cta-copy p,
.contact-heading p {
  margin-top: 16px;
  max-width: 760px;
}

.site-footer {
  padding: 24px 0 52px;
}

.footer-shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

.fixed-contact-bar {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 12px;
  z-index: 40;
}

.fixed-contact {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(16, 19, 25, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.fixed-contact.top svg {
  width: 22px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-shell,
  .experience-layout,
  .contact-panel,
  .cta-panel,
  .split-intro,
  .about-layout,
  .skills-columns {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .stats-grid,
  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy,
  .portrait-card {
    min-height: auto;
  }

  .hero-visual {
    min-height: auto;
    padding-bottom: 170px;
  }

  .floating-card-top {
    right: 12px;
  }

  .floating-card-bottom {
    left: 12px;
    bottom: 12px;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: sticky;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border-radius: 22px;
    background: rgba(16, 19, 25, 0.96);
    border: 1px solid var(--line);
  }

  .nav-open .site-nav {
    display: flex;
  }

  .hero-copy {
    padding: 34px 26px;
  }

  .hero-facts,
  .strength-list,
  .services-grid,
  .stats-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .panel,
  .project-card,
  .timeline-item,
  .cta-panel,
  .contact-panel,
  .portrait-card {
    padding: 24px;
  }

  .hero-visual {
    padding-bottom: 190px;
  }

  .floating-card {
    width: calc(100% - 24px);
  }
}

@media (max-width: 560px) {
  .nav-shell {
    min-height: 76px;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 15vw, 4rem);
  }

  .section-intro h2,
  .cta-copy h2,
  .contact-heading h2 {
    font-size: clamp(1.8rem, 10vw, 3rem);
  }

  .hero-visual {
    padding-bottom: 220px;
  }

  .floating-card {
    padding: 18px;
  }

  .fixed-contact-bar {
    right: 12px;
    bottom: 12px;
  }
}
