/* Daisy — launch landing. Warm, intimate, mainstream-safe.
   Palette: deep warm charcoal ground + honey/amber + cream + soft rose. */
:root {
  --bg:        #17120f;
  --bg-2:      #1f1815;
  --panel:     #271e1a;
  --cream:     #f7efe6;
  --muted:     #c9b8a8;
  --honey:     #e8a657;
  --honey-2:   #f3c27e;
  --rose:      #e6a98f;
  --line:      rgba(247, 239, 230, .10);
  --maxw:      1120px;
  --r:         18px;
  --shadow:    0 30px 80px -30px rgba(0,0,0,.7);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--cream);
  background:
    radial-gradient(1200px 600px at 78% -8%, rgba(232,166,87,.16), transparent 60%),
    radial-gradient(900px 500px at 0% 100%, rgba(230,169,143,.10), transparent 55%),
    var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; color: var(--honey-2); }

h1, h2, h3 { font-family: "Fraunces", Georgia, serif; font-weight: 500; letter-spacing: -.01em; }

/* NAV */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--maxw); margin: 0 auto; padding: 22px 24px;
}
.brand { font-family: "Fraunces", serif; font-size: 1.45rem; font-weight: 600; }
.brand-mark { color: var(--honey); margin-right: 4px; }
.nav-cta {
  font-size: .92rem; font-weight: 500; color: var(--cream);
  border: 1px solid var(--line); padding: 9px 16px; border-radius: 999px;
  transition: border-color .2s, background .2s;
}
.nav-cta:hover { border-color: var(--honey); background: rgba(232,166,87,.08); }

/* HERO */
.hero {
  max-width: var(--maxw); margin: 0 auto; padding: 40px 24px 64px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--honey);
  background: rgba(232,166,87,.10); border: 1px solid rgba(232,166,87,.25);
  padding: 6px 12px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); line-height: 1.04; margin: 0 0 18px; }
.lede { font-size: clamp(1.05rem, 2vw, 1.22rem); color: var(--muted); max-width: 30em; margin: 0 0 28px; }

.hero-photo { position: relative; }
.hero-photo img {
  display: block; width: 100%; height: auto; /* height follows the image's natural 3:4 ratio — no squish */
  border-radius: 24px; box-shadow: var(--shadow);
  outline: 1px solid var(--line);
}
.hero-photo::after {
  content: ""; position: absolute; inset: auto 0 -1px 0; height: 36%;
  background: linear-gradient(transparent, rgba(23,18,15,.0));
  pointer-events: none;
}

/* FORM */
.join { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; max-width: 480px; }
.join input[type=email] {
  flex: 1 1 240px; min-width: 0; font-size: 1rem; color: var(--cream);
  background: var(--panel); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 16px; outline: none; transition: border-color .2s, box-shadow .2s;
}
.join input::placeholder { color: #8d7d70; }
.join input:focus { border-color: var(--honey); box-shadow: 0 0 0 3px rgba(232,166,87,.18); }
.join button {
  flex: 0 0 auto; font-size: 1rem; font-weight: 600; cursor: pointer; color: #2a1c0e;
  background: linear-gradient(180deg, var(--honey-2), var(--honey));
  border: none; border-radius: 12px; padding: 14px 22px;
  transition: transform .12s, filter .2s; box-shadow: 0 10px 24px -10px rgba(232,166,87,.7);
}
.join button:hover { filter: brightness(1.05); transform: translateY(-1px); }
.join button:active { transform: translateY(0); }
.join button:disabled { opacity: .6; cursor: default; transform: none; }
/* Honeypot — off-screen (not display:none, which bots detect). Bots fill it; humans never see it. */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-note { flex-basis: 100%; font-size: .85rem; color: var(--muted); margin: 6px 2px 0; }
.form-note.ok { color: var(--honey-2); }
.form-note.err { color: var(--rose); }

/* WHY */
.why {
  max-width: var(--maxw); margin: 0 auto; padding: 24px 24px 56px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.card {
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--r); padding: 28px 24px;
}
.card-ico { font-size: 1.6rem; color: var(--honey); display: block; margin-bottom: 12px; }
.card h3 { font-size: 1.3rem; margin: 0 0 8px; }
.card p { color: var(--muted); margin: 0; font-size: .98rem; }

/* GALLERY */
.gallery { max-width: var(--maxw); margin: 0 auto; padding: 24px 24px 56px; }
.gallery h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); margin: 0 0 22px; }
.strip {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
}
.strip img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 14px;
  outline: 1px solid var(--line); transition: transform .25s, filter .25s;
}
.strip img:hover { transform: translateY(-4px) scale(1.02); filter: brightness(1.05); }

/* JOIN BAND */
.join-band {
  max-width: 860px; margin: 24px auto 72px; padding: 56px 32px; text-align: center;
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(232,166,87,.14), transparent 60%),
    linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line); border-radius: 28px;
}
.join-band h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 0 0 10px; }
.join-band > p { color: var(--muted); margin: 0 0 26px; font-size: 1.08rem; }
.join--lg { margin: 0 auto; justify-content: center; }
.join--lg .form-note { text-align: center; }

/* FOOTER */
.foot {
  max-width: var(--maxw); margin: 0 auto; padding: 32px 24px 56px;
  border-top: 1px solid var(--line); text-align: center;
}
.foot p:first-child { font-family: "Fraunces", serif; font-size: 1.2rem; font-weight: 600; margin: 0 0 8px; }
.fine { color: #8d7d70; font-size: .82rem; max-width: 46em; margin: 0 auto; }

/* RESPONSIVE */
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; gap: 32px; padding-top: 16px; }
  .hero-photo { order: -1; max-width: 420px; }
  .why { grid-template-columns: 1fr; }
  .strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .strip { grid-template-columns: repeat(2, 1fr); }
  .join-band { padding: 40px 20px; }
}
