/* PleinWing — minimal Strada-style landing */

:root {
  --ink: #1c1a17;
  --paper: #ffffff;
  --cream: #f4efe6;
  --muted: #6f6a62;
  --line: #e5e0d6;
  --accent: #1c1a17;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 16px; top: 16px;
  background: var(--paper);
  padding: 8px 14px;
  z-index: 100;
}

/* Header — sits in the flow above the split hero */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(20px, 4vw, 48px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.brand-logo { height: 34px; width: auto; }

.header-cta {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border: 1px solid var(--ink);
  padding: 9px 20px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.header-cta:hover { background: var(--ink); color: #fff; }

/* Hero — media left, copy right */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  align-items: stretch;
  background: var(--cream);
}

.hero-media {
  position: relative;
  /* The film is 16:9. A 3:2 window trims ~16% off the sides; a squarer
     window would cut a quarter of the frame away. */
  aspect-ratio: 3 / 2;
  max-height: 620px;
  background: var(--ink);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(32px, 5vw, 72px);
}

.hero-copy h1 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.hero-copy p {
  margin-top: 16px;
  max-width: 40ch;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--muted);
}

.btn {
  display: inline-block;
  margin-top: 28px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: 999px;
  transition: transform 0.15s, background 0.2s, color 0.2s;
}
.btn:hover { transform: translateY(-1px); }

.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--cream); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #34302a; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff; }

.sound-toggle {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 11;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  padding: 9px 18px;
  font: 600 0.85rem "DM Sans", sans-serif;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s;
}
.sound-toggle:hover { background: rgba(0, 0, 0, 0.7); }

/* Products */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.shop { padding: clamp(64px, 9vw, 110px) 0; }

.shop h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  text-align: center;
}

.shop-sub {
  text-align: center;
  color: var(--muted);
  margin-top: 10px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(20px, 3vw, 36px);
  margin-top: clamp(36px, 5vw, 56px);
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.card-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 10px;
  background: var(--cream);
  margin-bottom: 18px;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  transition: transform 0.35s ease;
}
.product-card:hover .card-media img { transform: scale(1.03); }

.product-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
}

.card-line {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 4px;
  min-height: 2.9em;
}

.card-price {
  margin: 10px 0 16px;
  font-size: 1.15rem;
}
.card-price s { color: var(--muted); font-weight: 400; margin-right: 6px; }
.card-price strong { font-weight: 700; }
.card-price span {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-left: 6px;
}

.product-card .btn { margin-top: auto; padding: 12px 28px; font-size: 0.95rem; }

.shop-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: clamp(40px, 6vw, 64px);
  letter-spacing: 0.03em;
}

/* Waitlist */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.waitlist {
  background: var(--cream);
  padding: clamp(56px, 8vw, 96px) 0;
  text-align: center;
}

.waitlist h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
}

.waitlist-sub {
  color: var(--muted);
  margin: 10px auto 0;
  max-width: 46ch;
}

.waitlist-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(24px, 3vw, 32px);
}

.waitlist-input {
  flex: 1 1 280px;
  max-width: 360px;
  font: 400 1rem "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 22px;
}
.waitlist-input::placeholder { color: var(--muted); }
.waitlist-input:focus {
  outline: none;
  border-color: var(--ink);
}

.waitlist-form .btn {
  margin-top: 0;
  padding: 13px 32px;
  border: 1px solid var(--ink);
  cursor: pointer;
  font-family: inherit;
}

.waitlist-status {
  margin-top: 16px;
  font-size: 0.95rem;
  font-weight: 600;
  min-height: 1.4em;
}
.waitlist-status[data-state="error"] { color: #a3341f; }

.waitlist-note {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.8rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 24px 44px;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-logo {
  height: 26px;
  width: auto;
  margin: 0 auto 12px;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 820px) {
  /* Stack the hero: media on top, copy below */
  .hero { grid-template-columns: 1fr; }
  .hero-media { aspect-ratio: 16 / 9; max-height: none; }
  .hero-copy { padding: clamp(28px, 7vw, 48px) clamp(20px, 6vw, 48px) clamp(36px, 8vw, 56px); }
}

@media (max-width: 560px) {
  .card-line { min-height: 0; }
  .brand-logo { height: 28px; }
}
