:root {
  --ink: #1a1612;
  --parchment: #e7dfd2;
  --stone: #2c2824;
  --stone-deep: #161310;
  --gold: #d4b37a;
  --gold-bright: #e8c992;
  --mist: rgba(231, 223, 210, 0.12);
  --line: rgba(212, 179, 122, 0.35);
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--parchment);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.55;
  background: var(--stone-deep);
}

a {
  color: var(--gold-bright);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #f3e2b8;
}

.top {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem clamp(1rem, 4vw, 2.5rem);
  background: linear-gradient(180deg, rgba(22, 19, 16, 0.92), rgba(22, 19, 16, 0.55) 70%, transparent);
  backdrop-filter: blur(6px);
  animation: drop-in 0.7s ease-out both;
}

.mark {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-bright);
  text-decoration: none;
}

nav {
  display: flex;
  gap: 1.1rem;
  align-items: center;
}

nav a {
  color: var(--parchment);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.9;
}

nav a:hover {
  color: var(--gold-bright);
  opacity: 1;
}

.nav-cta {
  border: 1px solid var(--line);
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
  color: var(--gold) !important;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    url("assets/halfcrest-hero.jpg") center / cover no-repeat,
    linear-gradient(145deg, #2a241c, #0e0c0a);
  transform: scale(1.04);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 12, 10, 0.35) 0%, rgba(14, 12, 10, 0.55) 45%, rgba(14, 12, 10, 0.92) 100%),
    radial-gradient(ellipse at 30% 70%, rgba(212, 179, 122, 0.12), transparent 55%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(5.5rem, 14vh, 8rem) clamp(1.25rem, 5vw, 3.5rem) clamp(2.5rem, 8vh, 4.5rem);
  max-width: 40rem;
  animation: rise 0.9s ease-out 0.15s both;
}

.brand {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: clamp(2.8rem, 9vw, 5.2rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--gold-bright);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.hero h1 {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-size: clamp(1.55rem, 3.6vw, 2.15rem);
  font-weight: 500;
  font-style: italic;
  color: var(--parchment);
  max-width: 18ch;
}

.lede {
  margin: 0 0 1.5rem;
  max-width: 34ch;
  color: rgba(231, 223, 210, 0.88);
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.15rem;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: var(--stone-deep);
  border: 1px solid transparent;
}

.btn-gold:hover {
  color: var(--stone-deep);
  filter: brightness(1.05);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--parchment);
  background: rgba(22, 19, 16, 0.35);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.band {
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1.25rem, 5vw, 3.5rem);
  border-top: 1px solid rgba(212, 179, 122, 0.15);
}

.band h2 {
  margin: 0 0 0.65rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--gold-bright);
}

.band-lede {
  margin: 0 0 1.75rem;
  max-width: 40rem;
  color: rgba(231, 223, 210, 0.82);
}

.work {
  background:
    linear-gradient(180deg, #1c1814 0%, #14110e 100%);
}

.work-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.35rem;
  max-width: 40rem;
}

.work-list li {
  display: grid;
  gap: 0.2rem;
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
}

.work-list strong {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--parchment);
}

.work-list span {
  color: rgba(231, 223, 210, 0.75);
}

.holds {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(212, 179, 122, 0.08), transparent 45%),
    #181511;
}

.hold-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  max-width: 42rem;
}

.hold-list li {
  display: grid;
  gap: 0.15rem;
  padding: 0;
  border-bottom: 1px solid rgba(212, 179, 122, 0.18);
  animation: rise 0.6s ease-out both;
}

.hold-link {
  display: grid;
  gap: 0.15rem;
  padding: 1.1rem 0;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.hold-link:hover {
  padding-left: 0.35rem;
}

.hold-link:hover .hold-name {
  color: var(--gold-bright);
}

.hold-list li:nth-child(2) {
  animation-delay: 0.08s;
}

.hold-list li:nth-child(3) {
  animation-delay: 0.16s;
}

.hold-name {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--parchment);
}

.hold-note {
  color: rgba(231, 223, 210, 0.7);
  font-size: 0.98rem;
}

.hold-soon .hold-name {
  color: var(--gold);
}

.support {
  background: linear-gradient(180deg, #1a1612, #0f0d0b);
  text-align: left;
}

.foot {
  padding: 1.75rem clamp(1.25rem, 5vw, 3.5rem) 2.5rem;
  border-top: 1px solid rgba(212, 179, 122, 0.15);
  color: rgba(231, 223, 210, 0.65);
  font-size: 0.92rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
}

.foot p {
  margin: 0;
}

@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.2%, -0.6%, 0);
  }
}

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

@keyframes drop-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  nav a:not(.nav-cta) {
    display: none;
  }

  .hero-copy {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }

  .hero-media {
    transform: none;
  }
}
