/* ---------- Reset & base ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --coral: #c17a56;
  --teal: #7a9471;
  --navy: #3e362e;
  --cream: #f7f1e8;
  --font-hand: "Caveat", cursive;
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}

html {
  height: 100%;
}

body {
  height: 100%;
  color: var(--navy);
  background-color: var(--cream);
  background-image: var(--grain);
  background-blend-mode: overlay;
}

.hand {
  font-family: var(--font-hand);
  font-weight: 700;
}

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

img {
  max-width: 100%;
  display: block;
}

/* ---------- Hero (full-bleed cover) ---------- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding: 0;
  overflow: hidden;
}

.hero-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 24px 10px;
  background: var(--teal);
}

.hero-nav-caption {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.1;
  color: var(--cream);
}

.hero-nav-caption .hand {
  color: var(--coral);
  font-size: 1.3em;
  display: inline-block;
  transform: rotate(-3deg);
}

.hero-nav-links {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 10px;
  color: var(--cream);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-nav-item:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.hero-nav-icon svg {
  width: 22px;
  height: 22px;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero-nav-item {
    padding: 4px;
  }

  .hero-nav-icon svg {
    width: 20px;
    height: 20px;
  }

  .hero-nav-links {
    gap: 20px;
  }
}
