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

html, body {
  height: 100%;
  overflow: hidden;
  background: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  color: #000;
}

.layout {
  display: flex;
  height: 100vh;
}

/* ─── LEFT NAV ─────────────────────────────── */
.nav {
  width: 30%;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 48px 32px 48px 40px;
  flex-shrink: 0;
}

.nav::-webkit-scrollbar { width: 0; }

.nav-title {
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 40px;
  line-height: 1.6;
  cursor: pointer;
}

.nav-title .name { font-weight: 700; }
.nav-title .role { font-weight: 300; }

/* prevent active state from changing nav title weight */
.nav-title.active { font-weight: inherit; }

.nav-section {
  margin-bottom: 28px;
}

.nav-section-label {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 0;
  transition: opacity 0.15s;
}

.nav-section-label:hover { opacity: 0.45; }

.nav-arrow {
  display: inline-block;
  font-size: 10px;
  transition: transform 0.2s ease;
}

.nav-arrow.open { transform: rotate(90deg); }

.nav-submenu {
  display: none;
  padding-left: 14px;
  margin-top: 6px;
}

.nav-submenu.open { display: block; }

/* nested submenu */
.nav-submenu .nav-subsection { margin-top: 4px; }

.nav-submenu .nav-subsection-label {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.02em;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 2px 0;
  transition: opacity 0.15s;
  color: #000;
}

.nav-submenu .nav-subsection-label:hover { opacity: 0.45; }

.nav-submenu .nav-sub-submenu {
  display: none;
  padding-left: 12px;
  margin-top: 2px;
}

.nav-submenu .nav-sub-submenu.open { display: block; }

.nav-submenu a,
.nav-link {
  display: block;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #000;
  padding: 3px 0;
  cursor: pointer;
  transition: opacity 0.15s;
}

.nav-submenu a:hover,
.nav-link:hover { opacity: 0.45; }

.nav-submenu a.active,
.nav-link.active { font-weight: 500; }

/* ─── RIGHT CONTENT ────────────────────────── */
.content {
  width: 70%;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 48px 48px 80px 40px;
}

.content::-webkit-scrollbar { width: 4px; }
.content::-webkit-scrollbar-thumb { background: #d8d8d8; border-radius: 2px; }

.section { display: none; }
.section.active { display: block; }

/* ─── HOME ─────────────────────────────────── */
.home-name {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.home-tagline {
  font-size: 12px;
  font-weight: 300;
  color: #888;
  letter-spacing: 0.02em;
}

/* ─── SECTION HEADINGS ─────────────────────── */
.section-heading {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 32px;
}

/* ─── SUBSECTIONS ──────────────────────────── */
.subsection {
  margin-bottom: 56px;
}

.subsection-heading {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 6px;
}

.subsection-desc {
  font-size: 13px;
  font-weight: 300;
  color: #888;
  letter-spacing: 0.02em;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ─── GRIDS ────────────────────────────────── */
.grid-portrait {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 14px;
}

.grid-landscape {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.grid-item img {
  width: 100%;
  height: auto;
  display: block;
}

.grid-square {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 14px;
}

.grid-square .grid-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.grid-square .grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ─── LOOKBOOK (placeholder grids) ────────── */
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
}

.lookbook-item {
  aspect-ratio: 3/4;
  background: #efefef;
  overflow: hidden;
}

.lookbook-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lookbook-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #bbb;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lookbook-caption {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #aaa;
  text-transform: uppercase;
}

/* ─── PROJECT GRID (About / Landing) ──────── */
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.project-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}

.project-thumb {
  aspect-ratio: 3/4;
}

.project-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.8);
  transition: filter 0.3s ease, transform 0.4s ease;
}

.project-thumb:hover img {
  filter: brightness(0.55);
  transform: scale(1.02);
}

.project-thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
  pointer-events: none;
}

.project-thumb-name {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

/* ─── RESUME ───────────────────────────────── */
.resume-download {
  margin-bottom: 40px;
}

.resume-download a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #000;
  padding-bottom: 1px;
  transition: opacity 0.15s;
}

.resume-download a:hover { opacity: 0.45; }

.resume-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}

.resume-name {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
}

.resume-contact {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: right;
  line-height: 1.8;
  color: #555;
}

.resume-rule {
  border: none;
  border-top: 1px solid #000;
  margin-bottom: 28px;
}

.resume-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}

.resume-section-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 16px;
}

.resume-employer {
  font-size: 12px;
  font-weight: 500;
  color: #1a2f5a;
  margin-bottom: 3px;
}

.resume-meta {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 10px;
}

.resume-job {
  margin-bottom: 24px;
}

.resume-job ul,
.resume-right ul {
  padding-left: 14px;
  margin-bottom: 10px;
}

.resume-job li,
.resume-right li {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.7;
  color: #222;
  margin-bottom: 4px;
}

.resume-credits-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 6px;
  margin-top: 10px;
}

.resume-additional {
  font-size: 11px;
  font-weight: 400;
  line-height: 2;
  color: #1a2f5a;
  margin-top: 8px;
}

.resume-additional span { display: block; }

.resume-summary {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: #111;
  margin-bottom: 28px;
}

.resume-sub-rule {
  border: none;
  border-top: 1px solid #ddd;
  margin: 20px 0;
}

.resume-school {
  font-size: 12px;
  font-weight: 500;
  color: #1a2f5a;
  margin-bottom: 3px;
}

.resume-skills p {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.7;
  color: #222;
  margin-bottom: 8px;
}

/* ─── ABOUT / CONTACT ──────────────────────── */
.text-block { max-width: 440px; }

.text-block p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: #333;
  margin-bottom: 20px;
}

.contact-line {
  font-size: 12px;
  font-weight: 300;
  line-height: 2.2;
}

.contact-line a {
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  transition: border-color 0.15s;
}

.contact-line a:hover { border-color: #000; }
