:root {
  --black: #1a1a1a;
  --white: #ffffff;
  --emerald: #00674f;
  --gold: #d3af37;
  --burgundy: #723b3d;
  --beige: #d1c7bd;
  zoom: 0.8;
}

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

body {
  font-family:
    Abhaya Libre,
    Georgia,
    serif;
  font-weight: 500;
  color: var(--black);
  line-height: 1.6;
}

.vertical-text {
  font-family:
    Abhaya Libre ExtraBold,
    Georgia,
    serif;
  font-weight: 400;
}

nav {
  background-color: var(--white);
  padding: 16px 32px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  height: 50px;
  display: flex;
  align-items: center;
}

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

.logo {
  font-size: 55px;
  font-weight: 800;
  color: var(--black);
  text-decoration: none;
  line-height: 1;
  margin-left: 0px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 48px;
  position: relative;
  top: 8px;
  margin-right: 0;
}

.nav-menu a {
  color: var(--black);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--emerald);
}

.hero-left,
.hero-right {
  min-height: 125vh;
  margin-bottom: 0;
  padding-bottom: 0;
}

.hero {
  margin-top: 0;
  padding-top: 50px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.hero-left {
  background-color: var(--black);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 64px 32px;
  position: relative;
  gap: 4px;
}

.vertical-text {
  writing-mode: vertical-lr;
  font-size: 100px;
  color: var(--white);
  font-weight: 650;
  letter-spacing: 1.6px;
  margin: 0;
  transform: rotate(180deg);
}

.gold-line {
  width: 1px;
  height: 600px;
  background: var(--gold);
  margin: 24px 0;
  position: relative;
  overflow: visible;
}

.subtitle {
  writing-mode: vertical-lr;
  font-size: 19px;
  font-weight: 500;
  color: var(--emerald);
  margin: 0;
  transform: rotate(180deg);
}

.hero-right {
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 64px 96px 0 64px;
}

.hero-right h2 {
  font-size: 48px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 24px;
  line-height: 1.2;
  text-align: center;
}

.tagline {
  font-size: 20px;
  color: #666;
  margin-bottom: 40px;
  max-width: 600px;
}

.btn-primary {
  background-color: var(--emerald);
  color: var(--white);
  padding: 13px 55px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: var(--burgundy);
}

.featured-work-card {
  background: #f0f2f2;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
  padding: 40px;
  margin-top: 48px;
  margin-left: -80px;
  margin-bottom: 48px;
  position: relative;
  z-index: 10;
  width: 110%;
}

.featured-work-card .project-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

.featured-work-card .project-item-reverse {
  flex-direction: row-reverse;
}

.featured-work-card .project-image {
  flex-shrink: 0;
  width: 280px;
  height: 200px;
}

.featured-work-card .project-content {
  padding: 0;
  flex: 1;
}

.featured-work-card .section-title::after {
  content: "";
  display: block;
  width: 370px;
  height: 2px;
  background: var(--gold);
  margin: 8px auto 0;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  text-align: center;
  margin-bottom: 32px;
}

.project-item {
  margin-bottom: 100px;
}

.project-image {
  width: 300px;
  height: 300px;
  background-color: #e0e0e0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1.5px solid var(--black);
}

.project-placeholder {
  font-size: 18px;
  color: #999;
  text-align: center;
}

.project-content {
  padding: 0 40px;
}

.project-content h3 {
  font-size: 32px;
  font-weight: 500px;
  color: var(--black);
  margin-bottom: 20px;
}

.project-content p {
  font-size: 18px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 24px;
}

.project-link {
  display: inline-block;
  color: var(--emerald);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--emerald);
  padding-bottom: 4px;
  transition: all 0.3s;
}

.project-link:hover {
  color: var(--burgundy);
  border-bottom-color: var(--burgundy);
}

/* ── FOOTER — white, slim ── */
.footer {
  background: var(--white);
  border-top: 1px solid #e8e0d8;
  padding: 16px 0;
  margin-top: 0;
}

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

.footer-email {
  display: inline-block;
  color: var(--emerald);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-email:hover {
  color: var(--burgundy);
}

.footer-right {
  text-align: right;
}

.footer-links {
  margin-bottom: 8px;
}

.footer-links a {
  color: #888;
  text-decoration: none;
  font-size: 13px;
  margin-left: 20px;
  transition: color 0.3s;
}

.footer-right .footer-links a {
  color: #888;
}
.footer-right .social-links a {
  color: #aaa;
}

.footer-links a:hover {
  color: var(--emerald);
}

.social-links {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}

.social-links a {
  color: #aaa;
  font-size: 15px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--emerald);
}

.footer-bottom {
  text-align: center;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #eee;
}

.footer-bottom p {
  font-size: 11px;
  color: #bbb;
  margin: 0;
}

/* ── ABOUT ── */
.about-hero {
  padding: 120px 0 100px;
  min-height: 100vh;
}

.page-title {
  font-size: 56px;
  font-weight: 800;
  text-align: center;
  color: var(--black);
  margin-bottom: 80px;
}

.profile-photo {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0;
  background: #faf9f7;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  border: 1px solid #e8e0d8;
}

.profile-photo img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 12px;
  border: none;
  display: block;
}

.about-hero .row {
  align-items: flex-start;
}

.about-content {
  padding-left: 0;
  width: calc(100% + 80px);
}

.title-accent-line {
  width: 400px;
  height: 1px;
  background-color: var(--gold);
  margin: -75px auto 80px;
}

.about-headline {
  font-size: 32px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 24px;
  line-height: 1.3;
  text-align: left;
}

.about-content p {
  font-size: 18px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
  padding-left: 0;
}

.cta-text {
  font-size: 20px;
  font-weight: 600;
  color: var(--emerald);
  margin-top: 32px;
}

.skills-block {
  background: #faf9f7;
  border-radius: 12px;
  padding: 32px;
  margin-top: 32px;
  border: 1px solid #e8e0d8;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.skills-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 16px;
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skill-tag {
  background: var(--white);
  border: 1.5px solid var(--black);
  border-radius: 6px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 600;
}

.about-card {
  background: #faf9f7;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
  border: 1px solid #e8e0d8;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

/* ══════════════════════════════════════
   MOBILE RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 16px;
  }
  .logo {
    font-size: 36px;
  }
  .nav-menu {
    gap: 20px;
  }
  .nav-menu a {
    font-size: 14px;
  }

  .hero {
    padding-top: 50px;
  }
  .hero .row {
    flex-direction: column;
  }

  .hero-left {
    min-height: 40vh !important;
    padding: 32px 16px !important;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
  }

  .vertical-text {
    font-size: 52px !important;
  }
  .gold-line {
    height: 200px !important;
  }
  .subtitle {
    font-size: 14px !important;
  }

  .hero-right {
    min-height: auto !important;
    padding: 32px 20px !important;
    align-items: flex-start;
  }

  .hero-right h2 {
    font-size: 28px !important;
    text-align: left;
  }

  .tagline {
    font-size: 16px !important;
  }

  .featured-work-card {
    width: 100% !important;
    margin-left: 0 !important;
    padding: 24px 16px !important;
  }

  .featured-work-card .project-item {
    flex-direction: column !important;
    gap: 16px;
  }

  .featured-work-card .project-item-reverse {
    flex-direction: column !important;
  }

  .featured-work-card .project-image {
    width: 100% !important;
    height: 200px !important;
  }

  .featured-work-card .section-title::after {
    width: 100% !important;
  }

  .about-hero {
    padding: 80px 0 60px;
  }
  .page-title {
    font-size: 36px !important;
  }
  .title-accent-line {
    width: 200px !important;
  }
  .about-content {
    width: 100% !important;
  }
  .about-headline {
    font-size: 22px !important;
  }
  .about-content p {
    font-size: 16px !important;
  }
  .profile-photo img {
    height: 300px !important;
  }

  .footer-left,
  .footer-right {
    text-align: center !important;
  }
  .social-links {
    justify-content: center !important;
  }
  .footer-links {
    text-align: center;
  }
  .footer-email {
    font-size: 13px !important;
  }
}
