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







/*hover effects*/
a {
  transition: color 0.25s ease;
}
.site-footer a:hover {
  color: #F3F1EE;
}
a:hover {
  color: #8F877A;
}
.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  left: 0;
  bottom: -4px;
  background: #8F877A;
  transition: width 0.25s ease;
}

.nav a:hover::after {
  width: 100%;
}
.footer-links a {
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.footer-links a:hover {
  color: #F3F1EE;
  text-shadow: 0 0 6px rgba(243, 241, 238, 0.6);
}






html {
  scroll-behavior: smooth;
}

body {
  background: #d6d2cc;
  color: #111111;
  font-family: "inter", Arial, Helvetica, sans-serif;
  min-height: 100vh;
}

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

.site-header {
  width: 100%;
  padding: 28px 32px 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero {
  width: 100%;
  padding: 100px 32px 0 32px;
}

.hero-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-title-wrap h1 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-title-wrap h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-text-wrap {
  max-width: 620px;
  margin: 40px auto 0 auto;
  text-align: center;
}

.hero-text-wrap p {
  line-height: 1.8;
  margin-bottom: 18px;
  color: #4a4a4a;
}

.about-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.overview-section {
  padding: 90px 32px 0 32px;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: #b9b2a8;
  margin-bottom: 54px;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  min-height: 380px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.overview-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
}

.overview-card h3 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.05;
  margin-bottom: 0;
}

.overview-card p {
  max-width: 260px;
  margin-top: 110px;
  font-size: 18px;
  line-height: 1.55;
  color: #222222;
}

.content-placeholder {
  height: 1px;
}

.site-footer {
  margin: 8px 32px 0 32px;
  background: #7d7a6e;
  color: #f3f1ee;
  min-height: 720px;
  padding: 28px 32px 0 32px;
  position: relative;
  overflow: hidden;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-top span:nth-child(2) {
  text-align: center;
}

.footer-top span:nth-child(3) {
  text-align: right;
}

.footer-links {
  margin-top: 82px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-links a:nth-child(2) {
  text-align: center;
}

.footer-links a:nth-child(3) {
  text-align: right;
}

.footer-center {
  margin-top: 140px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-brand {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: #f3f1ee;
  line-height: 0.8;
}

.brand-left,
.brand-right {
  font-size: clamp(280px, 28vw, 500px);
  font-weight: 700;
}

.brand-dot {
  font-size: clamp(110px, 10vw, 180px);
  font-weight: 700;
  transform: translateY(-18px);
}

@media (max-width: 1100px) {
  .overview-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .overview-card {
    min-height: 220px;
  }

  .overview-card p {
    margin-top: 28px;
  }

  .footer-top,
  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-top span,
  .footer-links a {
    text-align: left !important;
  }

  .footer-center {
    text-align: left;
    margin-top: 48px;
  }
}


@media (max-width: 700px) {
  .site-header {
    padding: 22px 20px 0 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .nav {
    gap: 18px;
    flex-wrap: wrap;
  }

  .hero {
    padding: 70px 20px 0 20px;
  }

  .hero-title-wrap h1,
  .hero-title-wrap h2 {
    font-size: 18px;
    text-align: center;
  }

  .hero-text-wrap {
    margin-top: 56px;
  }

  .hero-text-wrap p {
    font-size: 15px;
  }

  .overview-section {
    padding: 70px 20px 0 20px;
  }

  .overview-card h3 {
    font-size: 26px;
  }

  .overview-card p {
    font-size: 15px;
  }

  .site-footer {
    margin-top: 8px;
    background: #7d7a6e;
    color: #f3f1ee;
    min-height: 760px;
    padding: 18px 26px 26px 26px;
    position: relative;
    overflow: hidden;
  }
  }

  .footer-links {
    margin-top: 80px;
  }

  .footer-center {
    margin-top: 40px;
  }

  .footer-brand {
    left: 20px;
    right: 20px;
    bottom: -10px;
  }

  .brand-dot {
    transform: translateY(-16px);
  }

  .page-shell {
    width: min(100% - 64px, 1800px);
    margin: 20px auto 0 auto;
}

  @media (max-width: 700px) {
  .overview-grid {
    grid-template-columns: 1fr;
  }
}


/*
JAVA SCRIPT
*/

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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








/* 
EXPERIENCE PAGE
*/

.experience-page {
  padding-top: 80px;
  padding-left: 60px;
  padding-right: 60px;
  background: #1E1F21;
  color: #EDE9E3;
}

/* Title */

.experience-title-wrap h1 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #F5F3EF;
}

/* Intro paragraph */

.experience-intro {
  max-width: 720px;
  margin-bottom: 60px;
}

.experience-intro p {
  font-size: 16px;
  line-height: 1.7;
  color: #BEB8AE;
}

/* Experience layout */

.experience-list {
  margin-top: 40px;
}

/* Each job */

.experience-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 60px;
  padding: 48px 0;
}

/* Divider */

.experience-divider {
  height: 1px;
  background: #2a2a2a;
  box-shadow: 0 0 6px rgba(255,255,255,0.05);
}

/* Left column */

.experience-meta p {
  font-size: 14px;
  color: #A9A39A;
  margin-bottom: 6px;
}

/* Company */

.experience-content h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #F5F3EF;
}

/* Role */

.experience-content h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #D5CFC6;
}

/* Bullet points */

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

.experience-content li {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 6px;
  color: #BEB8AE;
}

@media (max-width: 900px) {
  .experience-page {
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .experience-title-wrap h1 {
    font-size: 38px;
    margin-bottom: 18px;
  }

  .experience-intro {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .experience-intro p {
    font-size: 14px;
    line-height: 1.7;
  }

  .experience-list {
    margin-top: 40px;
  }

  .experience-item {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 32px 0;
  }

  .experience-meta p {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .experience-content h2 {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .experience-content h3 {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .experience-content ul {
    padding-left: 16px;
  }

  .experience-content li {
    font-size: 14px;
    line-height: 1.7;
  }
}



/* ABOUT PAGE */

body.about-page {
  background: #000000;
  color: #f3f1ee;
}

body.about-page .page-shell {
  background: #000000;
}

body.about-page .site-header {
  padding-top: 20px;
}

body.about-page .logo,
body.about-page .nav a {
  color: #f3f1ee;
}

body.about-page .nav a::after {
  background: #8f877a;
}

.about-main {
  padding: 110px 48px 0 48px;
  background: #000000;
}

.about-top {
  min-height: 760px;
}

.about-name {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #f3f1ee;
  margin-bottom: 140px;
}

.about-intro {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 90px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.about-image-wrap {
  width: 100%;
}

.about-image-wrap img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  background: #0b0b0b;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.about-bio {
  max-width: 420px;
}

.about-bio p {
  font-size: 14px;
  line-height: 1.75;
  color: #d2d2d2;
  margin-bottom: 16px;
}

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

.about-lower {
  padding-bottom: 90px;
}

.about-divider {
  width: 100%;
  height: 1px;
  background: #2d2d2d;
  margin-bottom: 90px;
}

.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  max-width: 880px;
  margin: 0 auto;
}

.about-column h2 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #f3f1ee;
  margin-bottom: 28px;
  text-align: center;
}

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

.about-column li {
  font-size: 13px;
  line-height: 1.85;
  color: #f3f1ee;
  text-align: center;
}

/* ABOUT PAGE MOBILE */

@media (max-width: 900px) {
  .about-main {
    padding: 70px 20px 0 20px;
  }

  .about-top {
    min-height: auto;
  }

  .about-name {
    margin-bottom: 70px;
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 100%;
  }

  .about-image-wrap img {
    height: auto;
    aspect-ratio: 4 / 5;
    border-radius: 16px;
  }

  .about-bio {
    max-width: 100%;
  }

  .about-columns {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-divider {
    margin-bottom: 56px;
  }
}

.about-more {
  text-align: center;
  margin-top: 80px;
}

.about-more a {
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
  color: #f3f1ee;
  border-bottom: 1px solid #8f877a;
  padding-bottom: 4px;
  transition: all 0.25s ease;
}

.about-more a:hover {
  color: #8f877a;
}





/* PROJECTS PAGE */

body.projects-page {
  background: #000000;
  color: #f3f1ee;
}

body.projects-page .page-shell {
  background: #000000;
}

body.projects-page .site-header {
  padding-top: 20px;
}

body.projects-page .logo,
body.projects-page .nav a {
  color: #f3f1ee;
}

body.projects-page .nav a::after {
  background: #8f877a;
}

.projects-main {
  padding: 110px 48px 0 48px;
  background: #000000;
}

.projects-hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 90px;
  align-items: end;
  margin-bottom: 110px;
}

.projects-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #b8b1a6;
  margin-bottom: 20px;
}

.projects-hero h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  color: #f3f1ee;
}

.projects-hero-right p {
  font-size: 14px;
  line-height: 1.8;
  color: #d2d2d2;
  max-width: 420px;
}

.projects-showcase {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-bottom: 90px;
}

.featured-project {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 70px;
  padding: 42px 0;
  border-top: 1px solid #222222;
}

.featured-project:last-child {
  border-bottom: 1px solid #222222;
}

.featured-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.featured-meta span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #a8a097;
}

.featured-content h2 {
  font-size: 34px;
  font-weight: 600;
  color: #f3f1ee;
  margin-bottom: 18px;
}

.featured-content p {
  max-width: 560px;
  font-size: 15px;
  line-height: 1.8;
  color: #d2d2d2;
  margin-bottom: 24px;
}

.featured-content ul {
  padding-left: 18px;
  margin-bottom: 28px;
}

.featured-content li {
  font-size: 14px;
  line-height: 1.8;
  color: #bcbcbc;
  margin-bottom: 6px;
}

.project-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.project-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  padding: 12px 18px;
  border: 1px solid #3a3a3a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: transparent;
  color: #f3f1ee;
  cursor: pointer;
  transition: all 0.25s ease;
}

.project-btn.primary {
  background: #8f877a;
  color: #f3f1ee;
  border-color: #8f877a;
}

.project-btn.primary:hover {
  background: #a1988b;
  border-color: #a1988b;
  color: #ffffff;
}

.project-btn.secondary:hover {
  border-color: #8f877a;
  color: #8f877a;
}

.projects-viewer {
  display: none;
  margin-bottom: 100px;
  padding: 34px;
  border: 1px solid #262626;
  background: #070707;
}

.projects-viewer.active {
  display: block;
}

.viewer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
}

.viewer-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #a8a097;
  margin-bottom: 10px;
}

.viewer-top h3 {
  font-size: 28px;
  font-weight: 600;
  color: #f3f1ee;
}

.viewer-close {
  border: 1px solid #3a3a3a;
  background: transparent;
  color: #f3f1ee;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.25s ease;
}

.viewer-close:hover {
  border-color: #8f877a;
  color: #8f877a;
}

.viewer-frame-wrap {
  width: 100%;
  min-height: 620px;
  background: #0d0d0d;
  border: 1px solid #181818;
}

.viewer-frame-wrap iframe {
  width: 100%;
  height: 620px;
  border: none;
  display: block;
  background: #0d0d0d;
}

.archive-divider {
  width: 100%;
  height: 1px;
  background: #2d2d2d;
  margin-bottom: 70px;
}

.archive-header {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 90px;
  align-items: start;
  margin-bottom: 48px;
}

.archive-header h2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #f3f1ee;
}

.archive-header p {
  font-size: 14px;
  line-height: 1.8;
  color: #c9c9c9;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  padding-bottom: 90px;
}

.archive-item {
  border: 1px solid #202020;
  background: #050505;
  padding: 26px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.archive-item:hover {
  transform: translateY(-4px);
  border-color: #3b3b3b;
}
.archive-green:hover {
  transform: translateY(-4px);
  border-color: #2e7d32;
}

.archive-green:hover h3,
.archive-green:hover a {
  color: #2e7d32;
}

.archive-red:hover {
  transform: translateY(-4px);
  border-color: #b71c1c;
}

.archive-red:hover h3,
.archive-red:hover a {
  color: #b71c1c;
}

.archive-item-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.archive-item-top span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #a8a097;
}

.archive-item h3 {
  font-size: 24px;
  font-weight: 600;
  color: #f3f1ee;
  margin-bottom: 14px;
}

.archive-item p {
  font-size: 14px;
  line-height: 1.8;
  color: #cfcfcf;
  margin-bottom: 20px;
  max-width: 520px;
}

.archive-item a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #f3f1ee;
}

.archive-item a:hover {
  color: #8f877a;
}
/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   GLOBAL HOVER EFFECTS
========================= */
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s ease;
}

a:hover {
  color: #8F877A;
}

/* Footer link hover */
.site-footer a:hover {
  color: #F3F1EE;
}

/* Navbar underline hover */
.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  left: 0;
  bottom: -4px;
  background: #8F877A;
  transition: width 0.25s ease;
}

.nav a:hover::after {
  width: 100%;
}

/* Footer glow hover */
.footer-links a {
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.footer-links a:hover {
  color: #F3F1EE;
  text-shadow: 0 0 6px rgba(243, 241, 238, 0.6);
}

/* =========================
   GLOBAL BASE
========================= */
html {
  scroll-behavior: smooth;
}

body {
  background: #d6d2cc;
  color: #111111;
  font-family: "inter", Arial, Helvetica, sans-serif;
  min-height: 100vh;
}

/* =========================
   SHARED LAYOUT
========================= */

/* Main site header / navbar */
.site-header {
  width: 100%;
  padding: 28px 32px 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo text */
.logo {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* Navbar links container */
.nav {
  display: flex;
  gap: 28px;
}

/* Navbar links */
.nav a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* Main centered page wrapper */
.page-shell {
  width: min(100% - 64px, 1800px);
  margin: 20px auto 0 auto;
}

/* =========================
   HOME PAGE
========================= */

/* Hero section */
.hero {
  width: 100%;
  padding: 100px 32px 0 32px;
}

/* Hero title wrapper */
.hero-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* Hero titles */
.hero-title-wrap h1,
.hero-title-wrap h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* Hero paragraph wrapper */
.hero-text-wrap {
  max-width: 620px;
  margin: 40px auto 0 auto;
  text-align: center;
}

/* Hero paragraph */
.hero-text-wrap p {
  line-height: 1.8;
  margin-bottom: 18px;
  color: #4a4a4a;
}

/* About link under hero text */
.about-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* Overview section */
.overview-section {
  padding: 90px 32px 0 32px;
}

/* Thin divider line */
.section-divider {
  width: 100%;
  height: 1px;
  background: #b9b2a8;
  margin-bottom: 54px;
}

/* 3-column overview cards */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  min-height: 380px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Each overview card */
.overview-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
}

/* Overview title */
.overview-card h3 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.05;
  margin-bottom: 0;
}

/* Overview paragraph */
.overview-card p {
  max-width: 260px;
  margin-top: 110px;
  font-size: 18px;
  line-height: 1.55;
  color: #222222;
}

/* Optional spacer */
.content-placeholder {
  height: 1px;
}

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

/* Footer block */
.site-footer {
  margin: 8px 32px 0 32px;
  background: #7d7a6e;
  color: #f3f1ee;
  min-height: 720px;
  padding: 28px 32px 0 32px;
  position: relative;
  overflow: hidden;
}

/* Footer top row */
.footer-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-top span:nth-child(2) {
  text-align: center;
}

.footer-top span:nth-child(3) {
  text-align: right;
}

/* Footer links row */
.footer-links {
  margin-top: 82px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-links a:nth-child(2) {
  text-align: center;
}

.footer-links a:nth-child(3) {
  text-align: right;
}

/* Footer center text */
.footer-center {
  margin-top: 140px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* Large K . O footer letters */
.footer-brand {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: #f3f1ee;
  line-height: 0.8;
}

.brand-left,
.brand-right {
  font-size: clamp(280px, 28vw, 500px);
  font-weight: 700;
}

.brand-dot {
  font-size: clamp(110px, 10vw, 180px);
  font-weight: 700;
  transform: translateY(-18px);
}

/* =========================
   JAVASCRIPT REVEAL ANIMATION
========================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* =========================
   EXPERIENCE PAGE
========================= */
.experience-page {
  padding-top: 80px;
  padding-left: 60px;
  padding-right: 60px;
  background: #1E1F21;
  color: #EDE9E3;
}

/* Experience page title */
.experience-title-wrap h1 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #F5F3EF;
}

/* Experience intro text wrapper */
.experience-intro {
  max-width: 720px;
  margin-bottom: 60px;
}

/* Experience intro paragraph */
.experience-intro p {
  font-size: 16px;
  line-height: 1.7;
  color: #BEB8AE;
}

/* Experience list container */
.experience-list {
  margin-top: 40px;
}

/* Single experience row */
.experience-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 60px;
  padding: 48px 0;
}

/* Divider between jobs */
.experience-divider {
  height: 1px;
  background: #2a2a2a;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.05);
}

/* Date / location column */
.experience-meta p {
  font-size: 14px;
  color: #A9A39A;
  margin-bottom: 6px;
}

/* Company name */
.experience-content h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #F5F3EF;
}

/* Role name */
.experience-content h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #D5CFC6;
}

/* Bullet list */
.experience-content ul {
  padding-left: 18px;
}

/* Bullet items */
.experience-content li {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 6px;
  color: #BEB8AE;
}

/* =========================
   ABOUT PAGE
========================= */
body.about-page {
  background: #000000;
  color: #f3f1ee;
}

body.about-page .page-shell {
  background: #000000;
}

body.about-page .site-header {
  padding-top: 20px;
}

body.about-page .logo,
body.about-page .nav a {
  color: #f3f1ee;
}

body.about-page .nav a::after {
  background: #8f877a;
}

/* Main about page content area */
.about-main {
  padding: 110px 48px 0 48px;
  background: #000000;
}

/* Top section of about page */
.about-top {
  min-height: 760px;
}

/* Small centered name */
.about-name {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #f3f1ee;
  margin-bottom: 140px;
}

/* Image + bio layout */
.about-intro {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 90px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

/* Image wrapper */
.about-image-wrap {
  width: 100%;
}

/* Portrait image */
.about-image-wrap img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  background: #0b0b0b;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* Bio text wrapper */
.about-bio {
  max-width: 420px;
}

/* Bio paragraphs */
.about-bio p {
  font-size: 14px;
  line-height: 1.75;
  color: #d2d2d2;
  margin-bottom: 16px;
}

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

/* Bottom section spacing */
.about-lower {
  padding-bottom: 90px;
}

/* Divider before lower content */
.about-divider {
  width: 100%;
  height: 1px;
  background: #2d2d2d;
  margin-bottom: 90px;
}

/* Two-column interests/technologies layout */
.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  max-width: 880px;
  margin: 0 auto;
}

/* Column heading */
.about-column h2 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #f3f1ee;
  margin-bottom: 28px;
  text-align: center;
}

/* List reset */
.about-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* List items */
.about-column li {
  font-size: 13px;
  line-height: 1.85;
  color: #f3f1ee;
  text-align: center;
}

/* More link */
.about-more {
  text-align: center;
  margin-top: 80px;
}

.about-more a {
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
  color: #f3f1ee;
  border-bottom: 1px solid #8f877a;
  padding-bottom: 4px;
  transition: all 0.25s ease;
}

.about-more a:hover {
  color: #8f877a;
}

/* =========================
   PROJECTS PAGE
========================= */
body.projects-page {
  background: #000000;
  color: #f3f1ee;
}

body.projects-page .page-shell {
  background: #000000;
}

body.projects-page .site-header {
  padding-top: 20px;
}

body.projects-page .logo,
body.projects-page .nav a {
  color: #f3f1ee;
}

body.projects-page .nav a::after {
  background: #8f877a;
}

/* Main projects page wrapper */
.projects-main {
  padding: 110px 48px 0 48px;
  background: #000000;
}

/* Top hero layout */
.projects-hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 90px;
  align-items: end;
  margin-bottom: 110px;
}

/* Small top label */
.projects-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #b8b1a6;
  margin-bottom: 20px;
}

/* Main projects title */
.projects-hero h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  color: #f3f1ee;
}

/* Right-side hero paragraph */
.projects-hero-right p {
  font-size: 14px;
  line-height: 1.8;
  color: #d2d2d2;
  max-width: 420px;
}

/* Featured project section */
.projects-showcase {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-bottom: 90px;
}

/* Single featured project row */
.featured-project {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 70px;
  padding: 42px 0;
  border-top: 1px solid #222222;
}

.featured-project:last-child {
  border-bottom: 1px solid #222222;
}

/* Left-side featured meta */
.featured-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Featured meta text */
.featured-meta span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #a8a097;
}

/* Featured project title */
.featured-content h2 {
  font-size: 34px;
  font-weight: 600;
  color: #f3f1ee;
  margin-bottom: 18px;
}

/* Featured project description */
.featured-content p {
  max-width: 560px;
  font-size: 15px;
  line-height: 1.8;
  color: #d2d2d2;
  margin-bottom: 24px;
}

/* Featured project bullets */
.featured-content ul {
  padding-left: 18px;
  margin-bottom: 28px;
}

/* Featured project bullet items */
.featured-content li {
  font-size: 14px;
  line-height: 1.8;
  color: #bcbcbc;
  margin-bottom: 6px;
}

/* Buttons under featured projects */
.project-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Shared project button style */
.project-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  padding: 12px 18px;
  border: 1px solid #3a3a3a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: transparent;
  color: #f3f1ee;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* Primary project button */
.project-btn.primary {
  background: #8f877a;
  color: #f3f1ee;
  border-color: #8f877a;
}

.project-btn.primary:hover {
  background: #a1988b;
  border-color: #a1988b;
  color: #ffffff;
}

/* Secondary project button */
.project-btn.secondary:hover {
  border-color: #8f877a;
  color: #8f877a;
}

/* Embedded live demo container */
.projects-viewer {
  display: none;
  margin-bottom: 100px;
  padding: 34px;
  border: 1px solid #262626;
  background: #070707;
}

.projects-viewer.active {
  display: block;
}

/* Top row of viewer */
.viewer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
}

/* Small viewer label */
.viewer-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #a8a097;
  margin-bottom: 10px;
}

/* Viewer title */
.viewer-top h3 {
  font-size: 28px;
  font-weight: 600;
  color: #f3f1ee;
}

/* Close button */
.viewer-close {
  border: 1px solid #3a3a3a;
  background: transparent;
  color: #f3f1ee;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.25s ease;
}

.viewer-close:hover {
  border-color: #8f877a;
  color: #8f877a;
}

/* Iframe wrapper */
.viewer-frame-wrap {
  width: 100%;
  min-height: 620px;
  background: #0d0d0d;
  border: 1px solid #181818;
}

/* Iframe itself */
.viewer-frame-wrap iframe {
  width: 100%;
  height: 620px;
  border: none;
  display: block;
  background: #0d0d0d;
}

/* Divider before project list */
.archive-divider {
  width: 100%;
  height: 1px;
  background: #2d2d2d;
  margin-bottom: 70px;
}

/* Project list header layout */
.archive-header {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 90px;
  align-items: start;
  margin-bottom: 48px;
}

/* Project list heading */
.archive-header h2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #f3f1ee;
}

/* Project list description */
.archive-header p {
  font-size: 14px;
  line-height: 1.8;
  color: #c9c9c9;
}

/* Project cards grid */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  padding-bottom: 90px;
}

/* Single project card */
.archive-item {
  border: 1px solid #202020;
  background: #050505;
  padding: 26px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

/* Default card hover */
.archive-item:hover {
  transform: translateY(-4px);
  border-color: #3b3b3b;
}

/* Green hover cards */
.archive-green:hover {
  transform: translateY(-4px);
  border-color: #2e7d32;
}

.archive-green:hover h3,
.archive-green:hover a {
  color: #2e7d32;
}

/* Red hover cards */
.archive-red:hover {
  transform: translateY(-4px);
  border-color: #b71c1c;
}

.archive-red:hover h3,
.archive-red:hover a {
  color: #b71c1c;
}

/* Top row of each archive card */
.archive-item-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

/* Small labels in card top row */
.archive-item-top span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #a8a097;
}

/* Card title */
.archive-item h3 {
  font-size: 24px;
  font-weight: 600;
  color: #f3f1ee;
  margin-bottom: 14px;
}

/* Card paragraph */
.archive-item p {
  font-size: 14px;
  line-height: 1.8;
  color: #cfcfcf;
  margin-bottom: 20px;
  max-width: 520px;
}

/* Card link */
.archive-item a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #f3f1ee;
}

.archive-item a:hover {
  color: #8f877a;
}

/* =========================
   MEDIA QUERIES
   KEEPING THESE LAST
========================= */

/* Home / shared tablet adjustments */
@media (max-width: 1100px) {
  .overview-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .overview-card {
    min-height: 220px;
  }

  .overview-card p {
    margin-top: 28px;
  }

  .footer-top,
  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-top span,
  .footer-links a {
    text-align: left !important;
  }

  .footer-center {
    text-align: left;
    margin-top: 48px;
  }
}

/* Home / shared mobile adjustments */
@media (max-width: 700px) {
  /* Navbar */
  .site-header {
    padding: 22px 20px 0 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .nav {
    gap: 18px;
    flex-wrap: wrap;
  }

  /* Main page width */
  .page-shell {
    width: min(100% - 24px, 1800px);
    margin: 20px auto 0 auto;
  }

  /* Hero */
  .hero {
    padding: 70px 20px 0 20px;
  }

  .hero-title-wrap h1,
  .hero-title-wrap h2 {
    font-size: 18px;
    text-align: center;
  }

  .hero-text-wrap {
    margin-top: 56px;
  }

  .hero-text-wrap p {
    font-size: 15px;
  }

  /* Overview section */
  .overview-section {
    padding: 70px 20px 0 20px;
  }

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

  .overview-card h3 {
    font-size: 26px;
  }

  .overview-card p {
    font-size: 15px;
  }

  /* Footer */
  .site-footer {
    margin-top: 8px;
    min-height: 640px;
    padding: 18px 20px 20px 20px;
    position: relative;
    overflow: hidden;
  }

  .footer-links {
    margin-top: 80px;
  }

  .footer-center {
    margin-top: 40px;
  }

  .footer-brand {
    left: 20px;
    right: 20px;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }

  .brand-left,
  .brand-right {
    font-size: clamp(120px, 30vw, 180px);
    line-height: 0.8;
  }

  .brand-dot {
    font-size: clamp(44px, 10vw, 70px);
    transform: translateY(-8px);
  }
}

/* Experience page mobile */
@media (max-width: 900px) {
  .experience-page {
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .experience-title-wrap h1 {
    font-size: 38px;
    margin-bottom: 18px;
  }

  .experience-intro {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .experience-intro p {
    font-size: 14px;
    line-height: 1.7;
  }

  .experience-list {
    margin-top: 40px;
  }

  .experience-item {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 32px 0;
  }

  .experience-meta p {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .experience-content h2 {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .experience-content h3 {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .experience-content ul {
    padding-left: 16px;
  }

  .experience-content li {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* About page mobile */
@media (max-width: 900px) {
  .about-main {
    padding: 70px 20px 0 20px;
  }

  .about-top {
    min-height: auto;
  }

  .about-name {
    margin-bottom: 70px;
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 100%;
  }

  .about-image-wrap img {
    height: auto;
    aspect-ratio: 4 / 5;
    border-radius: 16px;
  }

  .about-bio {
    max-width: 100%;
  }

  .about-columns {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-divider {
    margin-bottom: 56px;
  }
}

/* Projects page tablet/mobile */
@media (max-width: 1000px) {
  .projects-main {
    padding: 70px 20px 0 20px;
  }

  .projects-hero,
  .archive-header,
  .featured-project {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .projects-hero h1 {
    font-size: 42px;
  }

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

  .viewer-frame-wrap,
  .viewer-frame-wrap iframe {
    min-height: 420px;
    height: 420px;
  }
}
@media (max-width: 1000px) {
  .projects-main {
    padding: 70px 20px 0 20px;
  }

  .projects-hero,
  .archive-header,
  .featured-project {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .projects-hero h1 {
    font-size: 42px;
  }

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

  .viewer-frame-wrap,
  .viewer-frame-wrap iframe {
    min-height: 420px;
    height: 420px;
  }
}


