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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #e8e6e3;
  color: #151312;
  position: relative;
  overflow-y: auto;
  padding: 2rem 1rem;
  font-family: Arial, Helvetica, sans-serif;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='8' numOctaves='3' seed='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.15'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.12;
  z-index: 1;
}

main {
  position: relative;
  z-index: 2;
  width: 100%;
  flex: 1;
  padding: clamp(1rem, 4vw, 3rem) 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52vh;
}

.image-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.link {
  font-family: 'Courier New', Courier, monospace;
  margin-top: 2rem;
  font-size: 1.1rem;
}

.home-container .link {
  text-align: left;
}

.link a,
.site-footer a {
  color: #000;
  text-decoration: none;
}

.link a:hover,
.site-footer a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

.about-main {
  align-items: center;
}

.about-container {
  width: min(800px, 100%);
  text-align: left;
}

.about-card {
  margin-top: 0;
  padding: clamp(1.35rem, 4vw, 2.5rem);
  border: 1px solid rgba(21, 19, 18, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 24px 80px rgba(21, 19, 18, 0.12);
  backdrop-filter: blur(12px);
  text-align: left;
}

.about-eyebrow {
  margin-bottom: 0.9rem;
  color: #6d625b;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-card h1 {
  max-width: 680px;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.about-copy {
  color: #3d3733;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.65;
}

.back-link {
  display: inline-block;
  margin-top: 1rem;
  color: #6d625b;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.95rem;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}

.site-footer {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 1rem auto 0;
  color: #6d625b;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.85rem;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
  overflow-x: auto;
}

@media (max-width: 768px) {
  body {
    padding: 1rem;
  }

  .image-container {
    max-width: 90%;
  }

  .about-card {
    text-align: center;
  }

  .about-card h1 {
    line-height: 1.05;
  }
}
