@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500&family=Manrope:wght@300;400;500;600&display=swap');

:root {
  --ink: #101213;
  --fog: #f4f1ea;
  --ember: #c8a17b;
  --teal: #4f6f6b;
  --slate: #2d3a3a;
  --shadow: rgba(10, 12, 12, 0.2);
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  color: var(--fog);
  background: radial-gradient(900px 700px at 75% 15%, rgba(200, 161, 123, 0.45), transparent 55%),
    radial-gradient(1100px 900px at 20% 80%, rgba(79, 111, 107, 0.35), transparent 60%),
    linear-gradient(160deg, #0b0e0d 0%, #171c1a 40%, #3a2f22 75%, #b38a5a 100%);
  min-height: 100vh;
}

.ca-landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 48px clamp(24px, 6vw, 80px) 40px;
  position: relative;
  overflow: hidden;
}

.ca-landing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 35%),
    radial-gradient(800px 500px at 60% 80%, rgba(255, 255, 255, 0.06), transparent 60%);
  pointer-events: none;
}

.ca-landing::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 0);
  background-size: 3px 3px;
  opacity: 0.12;
  pointer-events: none;
}

.ca-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.ca-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Fraunces', serif;
  letter-spacing: 0.02em;
}

.ca-logo-mark {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--ember), var(--teal));
  box-shadow: 0 0 0 6px rgba(200, 161, 123, 0.12);
}

.ca-logo-text {
  font-size: 18px;
  font-weight: 400;
}

.ca-sup {
  font-size: 0.7em;
  vertical-align: super;
  margin-left: 2px;
}

.ca-hero {
  margin-top: clamp(72px, 18vh, 160px);
  max-width: 640px;
  position: relative;
  z-index: 1;
  animation: rise 0.8s ease-out both;
}

.ca-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 12px;
  color: rgba(244, 241, 234, 0.6);
  margin: 0 0 18px;
}

.ca-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1.05;
  margin: 0 0 24px;
  font-weight: 400;
}

.ca-mission {
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.6;
  color: rgba(244, 241, 234, 0.78);
  margin: 0 0 36px;
}

.ca-actions {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ca-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(244, 241, 234, 0.25);
  color: var(--fog);
  text-decoration: none;
  font-weight: 500;
  background: linear-gradient(140deg, rgba(244, 241, 234, 0.12), rgba(79, 111, 107, 0.2));
  box-shadow: 0 18px 32px var(--shadow);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ca-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 40px rgba(10, 12, 12, 0.35);
}

.ca-meta {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.5);
  margin: 0;
}

.ca-footer {
  margin-top: auto;
  font-size: 12px;
  color: rgba(244, 241, 234, 0.45);
  position: relative;
  z-index: 1;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .ca-landing {
    padding-top: 32px;
  }

  .ca-eyebrow {
    letter-spacing: 0.2em;
  }

  .ca-meta {
    letter-spacing: 0.08em;
  }
}
