/* ========================================
   Design Tokens
   ======================================== */

:root {
  /* Palette */
  --color-black: #171717;
  --color-orange: #F25623;
  --color-dark-gray: #4D4D4D;
  --color-light-gray: #DEDEDE;
  --color-white: #FFFFFF;

  /* Semantic */
  --color-primary-action: var(--color-orange);
  --color-primary-action-hover: #d94a1c;
  --color-text: var(--color-black);
  --color-text-secondary: var(--color-dark-gray);
  --color-text-muted: var(--color-dark-gray);
  --color-background: var(--color-white);
  --color-surface: var(--color-light-gray);
  --color-border: var(--color-light-gray);
}

/* ========================================
   Base
   ======================================== */

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

body {
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 100%;
  line-height: 1.6;
}

/* ========================================
   Fade In
   ======================================== */

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.two-col {
  animation: fadeIn 0.8s ease-out both;
}

/* ========================================
   Two Column Layout
   ======================================== */

.two-col {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 24px;
  gap: 60px;
}

.col-left {
  flex: 1;
}

.col-right {
  flex: 0 0 400px;
}

/* ========================================
   Left Column Content
   ======================================== */

.header-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.logo {
  width: 64px;
  height: 64px;
}

.name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
  line-height: 1.2;
}

.title {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

.bio {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact a {
  color: var(--color-primary-action);
  text-decoration: none;
  font-size: 0.95rem;
}

.contact a:hover {
  color: var(--color-primary-action-hover);
  text-decoration: underline;
}

/* ========================================
   Right Column - Photo
   ======================================== */

.photo-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: url(../images/dark_wood.png);
  background-size: cover;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-placeholder .logo {
  width: 160px;
  height: 160px;
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 700px) {
  .two-col {
    flex-direction: column-reverse;
    gap: 32px;
    padding: 32px 20px;
  }

  .col-right {
    flex: none;
    width: 100%;
    max-width: 300px;
  }
}
