/* ============================================================
   KRISTIAN EUSTACE — Landing / Contact Card
   ============================================================ */

:root {
  --dark1:     #161C2A;
  --dark2:     #1F2535;
  --champagne: #C8B99A;
  --steel:     #1A4F8A;
  --white:     #FFFFFF;
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Space Grotesk', system-ui, sans-serif;
}

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

html, body {
  height: 100%;
  font-family: var(--sans);
  background: var(--dark1);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ── PAGE WRAPPER ── */
.page {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

/* ── HEADER ── */
.page-header {
  text-align: center;
  padding: 52px 24px 0;
}

.name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 5vw, 48px);
  letter-spacing: 0.04em;
  color: var(--white);
}

/* ── PANELS ── */
.panels {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 48px 0 0;
  background: rgba(255,255,255,0.06);
}

/* ── INDIVIDUAL PANEL ── */
.panel {
  background: var(--dark1);
  display: flex;
  flex-direction: column;
  padding: 48px 40px 52px;
  position: relative;
}

/* Photography — left */
.panel--photo {
  border-right: 1px solid rgba(255,255,255,0.06);
}

/* ── PORTRAIT IMAGE ── */
.panel-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 340px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,185,154,0.12);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  overflow: hidden;
}

.panel-image span {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(200,185,154,0.30);
}

.panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── PANEL CONTENT ── */
.panel-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 14px;
}

.panel-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 10px;
}

.panel-title em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.60);
}

.panel-desc {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.42);
  max-width: 300px;
  margin-bottom: 4px;
}

.panel-link {
  display: inline-block;
  margin-top: 24px;
  margin-bottom: 32px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne);
  border-bottom: 1px solid rgba(200,185,154,0.30);
  padding-bottom: 3px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.panel-link:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.40);
}

/* ── SOCIALS ── */
.panel-socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.50);
  transition: color 0.2s ease;
}

.social-btn:hover { color: var(--white); }

.social-btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ── FOOTER ── */
.page-footer {
  text-align: center;
  padding: 28px 24px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.18);
}

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  .panels {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .panel--photo {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .panel {
    padding: 40px 28px 44px;
  }

  .panel-image {
    max-height: 260px;
  }
}
