:root {
  --ink: #0a0a0a;
  --paper: #ffffff;
  --melon: #ff3b5c;
  --rind: #1a3d1f;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  background: var(--ink);
  color: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.stage {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto auto auto;
  padding: clamp(20px, 4vw, 48px);
  gap: clamp(16px, 3vw, 28px);
}

.hero {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.02);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0.55) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0) 25%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.6) 100%);
}

.brand, .say, .contact, .foot {
  position: relative;
  z-index: 1;
}

.brand {
  display: flex;
  gap: 0.35em;
  align-items: baseline;
  font-size: clamp(40px, 9vw, 120px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-shadow: 0 2px 30px rgba(0,0,0,0.45);
}
.brand .italic {
  font-style: italic;
  font-weight: 400;
  color: #ffd6dd;
}

.say {
  max-width: 38ch;
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.45;
  text-shadow: 0 1px 12px rgba(0,0,0,0.55);
}
.say .muted { opacity: 0.72; margin-top: 0.4em; }

.contact {
  display: inline-block;
  justify-self: start;
  padding: 14px 22px;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(14px, 1.4vw, 17px);
  letter-spacing: -0.01em;
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, background 0.2s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.contact:hover { background: #fff; transform: translateY(-1px); }

.foot {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.legal {
  width: min(320px, 80vw);
  height: auto;
}

@media (max-width: 480px) {
  .brand { flex-direction: column; gap: 0; }
}
