:root {
  --cream: #f6f3e9;
  --sage: #eef0cf;
  --ink: #1f2313;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Jost", sans-serif;
  color: var(--cream);
  background: #2a2f1f;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 2.5rem;
}

.topbar__link {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

.topbar__link:hover,
.topbar__icon:hover {
  opacity: 1;
  text-decoration: underline;
}

.topbar__brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}

.topbar__icon {
  display: flex;
  opacity: 0.9;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url("images/background.jpg") center center / cover no-repeat, var(--ink);
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 23, 12, 0.35) 0%, rgba(20, 23, 12, 0.15) 40%, rgba(20, 23, 12, 0.55) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 46rem;
  padding: 8rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__eyebrow {
  background: rgba(230, 227, 210, 0.85);
  color: var(--ink);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1.75rem;
}

.hero__title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  line-height: 1.15;
  margin: 0 0 1.5rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.hero__subtitle {
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  margin: 0 0 2.5rem;
  opacity: 0.95;
}

.hero__rule {
  width: 5rem;
  border: none;
  border-top: 1px solid rgba(246, 243, 233, 0.7);
  margin: 0 0 2rem;
}

.hero__links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 1.05rem;
}

.hero__link {
  color: #e6e37e;
  letter-spacing: 0.01em;
}

.hero__link:hover {
  text-decoration: underline;
}

.hero__link--muted {
  color: #e6e37e;
  cursor: default;
}

.contact {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 2.5rem 1.5rem;
  font-size: 0.95rem;
}

.contact a {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .topbar {
    padding: 1.25rem 1.25rem;
  }

  .hero__content {
    padding-top: 7rem;
  }
}
