/* ARCHITECTURAL GRID BASE */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root { 
  --red: #E21D06; 
  --yellow: #E2E842; 
  --bg: #ffffff;
  --text: #000000;
  --line: #000000;
}

body { 
  font-family: Helvetica, Arial, sans-serif; 
  background: var(--bg); 
  color: var(--text); 
  line-height: 1.4; 
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 40px; }

/* HEADER - CLEAN & RIGID */
.site-header { border-bottom: 2px solid var(--line); padding: 25px 0; position: sticky; top: 0; background: #fff; z-index: 100; }
.header-inner { display: flex; justify-content: space-between; align-items: center; max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.brand { display: flex; align-items: center; }
.logo-img { height: 45px; margin-right: 15px; }
.brand-text { font-weight: 900; font-size: 1.2rem; letter-spacing: -0.04em; line-height: 1; }
.red { color: var(--red); }
.yellow { color: var(--yellow); }

#site-nav a { text-decoration: none; color: var(--text); font-weight: 800; font-size: 0.75rem; margin-left: 25px; letter-spacing: 0.1em; }
#site-nav a:hover { color: var(--red); }

/* SECTIONS */
.page-section { padding: 80px 0; border-bottom: 1px solid var(--line); }
.label { font-size: 0.7rem; letter-spacing: 0.3em; font-weight: 900; margin-bottom: 50px; text-transform: uppercase; }

/* PROJECT ROWS - 2 COLUMN GRID */
.project-row { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; margin-bottom: 100px; align-items: start; }
h3 { text-transform: uppercase; font-size: 1.8rem; letter-spacing: -0.02em; margin-bottom: 5px; }
.specs { font-family: monospace; font-size: 0.7rem; color: var(--red); font-weight: bold; margin-bottom: 20px; text-transform: uppercase; }

/* STANDARDIZED IMAGE CONTAINERS */
.image-container {
  width: 100%;
  height: 320px; /* FIXED STANDARD HEIGHT */
  border: 1.5px solid var(--line);
  overflow: hidden;
  background: #f9f9f9;
  margin-bottom: 10px;
}

.image-container.small {
  height: 160px; /* SECONDARY GRID HEIGHT */
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* ENTIRE IMAGE VISIBLE */
  padding: 10px;
  background: #fff;
  display: block;
}

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

/* EXPERIENCE & CONSULTING */
.exp-item { display: grid; grid-template-columns: 140px 1fr; padding: 20px 0; border-top: 1px solid #eee; }
.date { font-family: monospace; font-weight: bold; color: var(--red); }

.consult-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.consult-card { border: 1.5px solid var(--line); padding: 30px; }
.consult-card h4 { border-left: 10px solid var(--yellow); padding-left: 15px; margin-bottom: 10px; text-transform: uppercase; }

/* FOOTER */
.footer { padding: 60px 0; text-align: center; font-size: 0.7rem; font-family: monospace; }

@media (max-width: 850px) {
  .project-row, .consult-grid { grid-template-columns: 1fr; gap: 30px; }
  .image-container { height: 280px; }
}
