*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --gold-dark: #9a7a2e;
  --black: #0a0a0a;
  --black-2: #111111;
  --black-3: #1a1a1a;
  --white: #f5f5f0;
  --gray: #888880;
}

html {
  scroll-behavior: smooth;
}

/* ── NAV ── */
@keyframes navSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes navItemFade {
  to {
    opacity: 1;
    transform: none;
  }
}
.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  animation: navSlideDown 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.nav-wrap.menu-open {
  background: rgba(10, 10, 10, 0.99);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 100px;
  width: 150px;
  object-fit: contain;
  display: none;
}
.nav-logo-img.loaded {
  display: block;
}
.nav-logo-text {
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
}
.nav-logo-text span {
  color: var(--white);
}
.nav-logo-img.loaded ~ .nav-logo-text {
  display: none;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a.active {
  color: var(--gold);
}
.nav-links a.active::after {
  width: 100%;
}
.nav-cta {
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 10px 22px;
  text-decoration: none;
  font-weight: 700;
  transition:
    background 0.25s,
    transform 0.2s;
  display: inline-block;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-mobile {
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: rgba(10, 10, 10, 0.98);
  border-top: 1px solid rgba(201, 168, 76, 0);
  padding: 0 24px;
  gap: 0;
  transition:
    max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.35s ease,
    border-color 0.3s ease;
}
.nav-mobile.open {
  max-height: 400px;
  padding: 24px;
  border-top-color: rgba(201, 168, 76, 0.12);
  gap: 20px;
}
.nav-mobile a {
  font-family: Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
  transition:
    color 0.2s,
    padding-left 0.25s;
}
.nav-mobile a:last-child {
  border-bottom: none;
}
.nav-mobile a:hover {
  color: var(--gold);
  padding-left: 8px;
}

/* ── PAGE HERO ── */
.page-hero {
  min-height: 40vh;
  background: var(--black);
  display: flex;
  align-items: flex-end;
  padding: 100px 40px 60px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(201, 168, 76, 0.04) 0px,
    rgba(201, 168, 76, 0.04) 1px,
    transparent 1px,
    transparent 80px
  );
}
.page-hero-glow {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.1) 0%,
    transparent 70%
  );
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.page-hero-eyebrow {
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.page-hero-eyebrow::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold-dark);
}
.page-hero-title {
  font-family: Arial, sans-serif;
  font-size: clamp(42px, 7vw, 90px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 0.95;
}
.page-hero-title span {
  color: var(--gold);
}

/* ── INTRO SECTION ── */
.intro-wrap {
  background: var(--black-2);
  padding: 100px 40px;
}
.intro-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
/* Photo placeholder */
.intro-photo {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--black-3);
  overflow: hidden;
}
.intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  position: absolute;
  inset: 0;
}
.intro-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* silhouette */
.intro-photo-placeholder::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 80%;
  background: #222;
  clip-path: polygon(18% 35%, 82% 35%, 96% 100%, 4% 100%);
}
.intro-photo-placeholder::after {
  content: "";
  position: absolute;
  top: 14%;
  left: 50%;
  transform: translateX(-50%);
  width: 32%;
  aspect-ratio: 1;
  background: #222;
  border-radius: 50%;
}
.intro-photo-gold-border {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 80%;
  height: 80%;
  border: 2px solid var(--gold-dark);
  z-index: -1;
}
.intro-photo-badge {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: var(--gold);
  color: var(--black);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 20px;
}
.intro-photo-label {
  position: absolute;
  top: 24px;
  right: 0;
  background: var(--black-3);
  border-left: 3px solid var(--gold);
  color: var(--gray);
  font-family: Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 16px;
}

/* text side */

.section-label {
  font-family: Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: Arial, sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 28px;
}
.section-title span {
  color: var(--gold);
}
.intro-gold-line {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}
.intro-text p {
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: var(--gray);
  margin-bottom: 20px;
}
.intro-text p:last-of-type {
  margin-bottom: 36px;
}
.intro-text p strong {
  color: var(--white);
  font-weight: 700;
}
.btn-primary {
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 16px 36px;
  text-decoration: none;
  display: inline-block;
  transition:
    background 0.2s,
    transform 0.2s;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ── VALUES / SKILLS ── */
.skills-wrap {
  background: var(--black);
  padding: 100px 40px;
}
.skills-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.skill-card {
  background: var(--black-3);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.skill-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.skill-card:hover {
  background: #1e1e1e;
}
.skill-card:hover::after {
  transform: scaleX(1);
}
.skill-icon {
  font-size: 30px;
  margin-bottom: 20px;
  display: block;
}
.skill-title {
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.skill-text {
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1.75;
  color: var(--gray);
}

/* ── TIMELINE ── */
.timeline-wrap {
  background: var(--black-2);
  padding: 100px 40px;
}
.timeline-inner {
  max-width: 900px;
  margin: 0 auto;
}
.timeline {
  margin-top: 60px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.timeline-item {
  display: flex;
  gap: 36px;
  margin-bottom: 52px;
  position: relative;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-dot {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--black-3);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  position: relative;
  z-index: 1;
}
.timeline-content {
  padding-top: 6px;
}
.timeline-year {
  font-family: Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.timeline-title {
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.timeline-text {
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1.75;
  color: var(--gray);
}

/* ── CTA ── */
.cta-wrap {
  background: var(--gold);
  padding: 80px 40px;
}
.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-text {
  font-family: Arial, sans-serif;
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.btn-dark {
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--black);
  padding: 18px 40px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-dark:hover {
  background: #222;
}

/* ── FOOTER ── */
.footer-wrap {
  background: var(--black-2);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  padding: 60px 40px 30px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand {
  margin-bottom: 16px;
  width: 200px;
}
.footer-desc {
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray);
  max-width: 280px;
}
.footer-col-title {
  font-family: Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-address {
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1.8;
  color: var(--gray);
}
.footer-address strong {
  color: var(--white);
  font-weight: 700;
}
.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer-copy {
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #555;
}
.footer-copy span {
  color: var(--gold-dark);
}
.footer-copy a {
  color: #555;
  text-decoration: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .intro-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .intro-photo {
    max-width: 480px;
  }
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 820px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .page-hero {
    padding: 100px 20px 48px;
  }
  .intro-wrap,
  .skills-wrap,
  .timeline-wrap,
  .cta-wrap {
    padding: 70px 20px;
  }
  .skills-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .nav-inner {
    padding: 0 20px;
  }
  .intro-photo-badge {
    left: 0;
    bottom: 16px;
  }
}
@media (max-width: 430px) {
  .page-hero-title {
    font-size: 38px;
  }
  .timeline::before {
    left: 16px;
  }
  .timeline-dot {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  .timeline-item {
    gap: 24px;
  }
}
