/* Font */
@font-face {
  font-family: 'NeueHaas';
  src: url('/fonts/NeueHaasDisplayRoman.woff2') format('woff2'),
       url('/fonts/NeueHaasDisplayRoman.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'NeueHaas';
  src: url('/fonts/NeueHaasDisplayBold.woff2') format('woff2'),
       url('/fonts/NeueHaasDisplayBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

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

body {
  font-family: 'NeueHaas', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fff;
  color: #000;
  line-height: 1.6;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: #666;
  font-size: 15px;
}

a:hover {
  color: #000;
}

ul {
  list-style: none;
}

/* Layout */
.container {
  display: flex;
  min-height: 100vh;
  align-items: center;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  padding-left: 60px;
}

.nav-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.name a {
  color: #000;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-links a.active {
  color: #000;
}

/* Content */
.main {
  margin-left: 240px;
  padding: 60px 40px;
  max-width: 600px;
}

.main h1,
.main h2 {
  font-weight: 600;
}

.main p,
.main li {
  color: #333;
  margin-bottom: 12px;
}

.main .muted {
  color: #aaa;
  margin-top: 24px;
}

.back-button {
  display: none;
}

.contact-email-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.stats-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}

.stats-table td {
  color: #333;
  padding: 14px 12px 14px 0;
  vertical-align: top;
  font-size: 15px;
}

.stats-table .stats-label {
  color: #000;
  width: 33%;
  font-weight: 600;
  padding-right: 32px;
}

.photos-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.photos-gallery img {
  display: block;
  width: 100%;
  height: auto;
}

.copy-email-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #666;
}

.copy-email-btn:hover {
  color: #000;
}

.copy-email-btn svg {
  display: block;
}

.copy-email-btn .icon-check {
  display: none;
}

.copy-email-btn.copied {
  color: #15803d;
}

.copy-email-btn.copied:hover {
  color: #166534;
}

.copy-email-btn.copied .icon-copy {
  display: none;
}

.copy-email-btn.copied .icon-check {
  display: block;
  color: #15803d;
  stroke: #15803d;
}

/* Mobile */
@media (max-width: 768px) {
  .sidebar {
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 40px;
  }

  .page-content .sidebar {
    display: none;
  }

  .page-content .back-button {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px 40px;
    z-index: 100;
  }

  .main {
    margin-left: 0;
    padding: 80px 40px 40px;
    max-width: 100%;
  }

  .main h1 {
    margin-bottom: 24px;
  }

  .main h2 {
    margin-top: 24px;
  }

  .container {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .contact-main .contact-email-row {
    margin: 0;
  }
}
