:root {
  --bg: #f6f2e9;
  --bg-2: #efe7d8;
  --ink: #15120d;
  --ink-soft: #4f4539;
  --line: #d8cdb8;
  --accent: #987142;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 0%, rgba(152, 113, 66, 0.16), transparent 38%),
    linear-gradient(165deg, var(--bg), var(--bg-2));
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image: radial-gradient(#000 0.35px, transparent 0.35px);
  background-size: 2px 2px;
}

.site-header {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.4rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.brand-mark {
  border: 1px solid var(--line);
  padding: 0.35rem 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.brand-text {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.header-link {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.2rem;
}

main {
  max-width: 1080px;
  margin: 2.5rem auto 3rem;
  padding: 0 1.25rem;
}

.hero {
  max-width: 980px;
  animation: rise 700ms ease-out both;
}

.eyebrow {
  margin: 0;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  color: var(--ink-soft);
}

h1 {
  margin: 0.65rem 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5.1vw, 4.2rem);
  line-height: 1.04;
  font-weight: 600;
  max-width: 18ch;
  letter-spacing: 0.01em;
}

.lead {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 58ch;
}

.cta {
  margin-top: 1.7rem;
  display: inline-block;
  text-decoration: none;
  background: var(--ink);
  color: #f5f0e6;
  padding: 0.82rem 1.08rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  transition: transform 160ms ease, background 160ms ease;
}

.cta:hover {
  transform: translateY(-2px);
  background: #000;
}

.grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.34);
  padding: 1.1rem;
  animation: rise 700ms ease-out both;
}

.card h2 {
  margin: 0 0 0.45rem;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.7;
}

footer {
  border-top: 1px solid var(--line);
  margin-top: 2rem;
  padding: 1.2rem 1.25rem 2rem;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
  flex-wrap: wrap;
}

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

@media (max-width: 860px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
