:root {
  --bg: #e6e1e5;
  --heading: #2d2b2c;
  --text: #575153;
  --accent: #b12767;
  --soft: rgba(255, 255, 255, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Nunito", sans-serif;
  overflow-x: hidden;
  position: relative;
}

/* Giant background CC */

body::before {
  content: "";
  position: fixed;
  inset: -5%;

  background-image: url("images/CC_Logo_White.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: min(120vw, 1800px);

  opacity: 0.28;

  transform: rotate(-8deg);

  pointer-events: none;
  z-index: 0;
}

/* Subtle grain */

body::after {
  content: "";
  position: fixed;
  inset: 0;
  opacity: 0.025;
  background-image:
    radial-gradient(circle at 20% 20%, #000 1px, transparent 1px),
    radial-gradient(circle at 80% 80%, #000 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 30px;
}

.logo {
  width: min(320px, 70vw);
  margin-bottom: 50px;
  animation: float 8s ease-in-out infinite;
}

h1 {
  font-family: "Shippori Mincho", serif;
  color: var(--heading);
  font-weight: 400;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  margin-bottom: 40px;
}

.divider {
  width: 90px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 50px;
}

.content {
  max-width: 720px;
}

.content p {
  font-size: 1.2rem;
  line-height: 1.9;
  margin-bottom: 24px;
  font-weight: 300;
}

blockquote {
  margin-top: 50px;
  font-family: "Shippori Mincho", serif;
  font-size: 1.45rem;
  line-height: 1.7;
  color: var(--heading);
  font-style: italic;
}

footer {
  margin-top: 60px;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #7d777a;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 60px 25px;
  }

  .content p {
    font-size: 1.08rem;
    line-height: 1.8;
  }

  blockquote {
    font-size: 1.2rem;
  }

  body::before {
    font-size: 70vw;
  }
}
