:root {
  --ink: #f6f0df;
  --muted: rgba(246, 240, 223, 0.74);
  --line: rgba(246, 240, 223, 0.16);
  --gold: #d6a640;
  --gold-light: #f4d88a;
  --dark: #080706;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--dark);
  font-family: "Noto Sans KR", system-ui, sans-serif;
}

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

.landing {
  min-height: 100vh;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  padding: 28px;
  isolation: isolate;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -3;
  background: url("assets/hero-bass-fishing.jpg") center 58% / cover no-repeat;
  filter: brightness(0.74) saturate(0.9) contrast(1.02);
  transform: scale(1.03);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(100deg, rgba(8, 7, 6, 0.94) 0%, rgba(8, 7, 6, 0.78) 42%, rgba(8, 7, 6, 0.32) 100%),
    radial-gradient(circle at 22% 20%, rgba(214, 166, 64, 0.28), transparent 28%),
    linear-gradient(180deg, rgba(8, 7, 6, 0.08), rgba(8, 7, 6, 0.86));
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(100%, 1180px);
  margin: 0 auto;
  align-self: start;
}

.logo {
  width: min(220px, 54vw);
  height: auto;
  filter: brightness(1.08) contrast(1.03);
}

.topbar span,
.eyebrow,
.notice span {
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.content {
  width: min(100%, 1180px);
  margin: 0 auto;
  align-self: center;
  padding: 80px 0 110px;
}

.eyebrow {
  margin: 0 0 18px;
}

h1 {
  max-width: 9.6ch;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: 0;
  background: linear-gradient(180deg, #fff8dc 0%, #f1d482 48%, #c9922f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.85;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #100d06;
  background: linear-gradient(135deg, #f7dc87, #d6a640);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.notice {
  position: absolute;
  right: max(28px, calc((100vw - 1180px) / 2));
  bottom: 34px;
  width: min(360px, calc(100vw - 56px));
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(10, 9, 7, 0.58);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.notice strong {
  display: block;
  margin-top: 10px;
  font-size: 1.1rem;
}

.notice p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 720px) {
  .hero {
    padding: 20px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .content {
    padding: 70px 0 210px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3.4rem, 18vw, 5.4rem);
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .notice {
    right: 20px;
    bottom: 20px;
    width: calc(100vw - 40px);
  }
}
