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

:root {
  --bg:       #EFF2E7;
  --charcoal: #2C2A27;
  --mid:      #7A7670;
  --border:   #C8C9BE;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 24px;
}

main {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* ── Logo ────────────────────────────────────────────────────────────────── */

.logo-wrap {
  width: 100%;
  padding-bottom: 8px;
}

.logo {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Rule ────────────────────────────────────────────────────────────────── */

.rule {
  width: 100%;
  border: none;
  border-top: 1px solid var(--border);
  margin: 28px 0;
}

/* ── Properties ──────────────────────────────────────────────────────────── */

.properties {
  width: 100%;
  display: flex;
  align-items: stretch;
  gap: 0;
}

.property {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-decoration: none;
  color: var(--charcoal);
  padding: 4px 0;
  transition: opacity 0.15s;
}

.property:hover { opacity: 0.5; }

.property:first-child { align-items: flex-start; }
.property:last-child  { align-items: flex-end; }

.prop-divider {
  width: 1px;
  background: var(--border);
  margin: 0 24px;
  flex-shrink: 0;
}

.prop-name {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.prop-meta {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}

/* ── Footer ──────────────────────────────────────────────────────────────── */

.foot {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--mid);
  letter-spacing: 0.04em;
}

.foot a {
  color: var(--mid);
  text-decoration: none;
  transition: color 0.15s;
}

.foot a:hover { color: var(--charcoal); }

.foot-sep { color: var(--border); }

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 480px) {
  .properties { flex-direction: column; gap: 20px; }
  .prop-divider { width: 100%; height: 1px; margin: 0; }
  .property:last-child { align-items: flex-start; }
  .foot { flex-direction: column; gap: 4px; text-align: center; }
  .foot-sep { display: none; }
}
