:root{
  --bg: #F6F4EF;
  --text: #1F1F1F;
  --muted: #6B6B6B;
  --line: #E1DED8;

  /* Accent (moss) */
  --accent: #4E6F5D;
  --accent-2: #3F5E4F;
}

*{ box-sizing: border-box; }

html, body{
  height: 100%;
}

body{
  margin: 0;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* Layout */
.wrap{
  max-width: 920px;
  margin: 0 auto;
  padding: 56px 24px 48px;
}

/* Hero */
.hero{
  position: relative;
  padding-top: 16px;
}

.mark{
  width: 18px;
  height: 56px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 18px;
}

/* Big title, but responsive and never clipped */
.title{
  font-size: clamp(56px, 10vw, 120px);
  line-height: 0.95;
  margin: 0 0 14px 0;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.tagline{
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
}

/* Body copy */
.copy{
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  max-width: 72ch;
}

.copy p{
  margin: 0;
  font-size: 18px;
}

/* Link chips */
.links{
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  background: rgba(255,255,255,0.55);
  transition: transform 120ms ease, border-color 120ms ease, background 120ms ease, color 120ms ease;

  
}

.chip:hover{
  border-color: rgba(78,111,93,0.55);
  background: rgba(78,111,93,0.08);
  transform: translateY(-1px);
}

.chip:focus{
  outline: 3px solid rgba(78,111,93,0.25);
  outline-offset: 2px;
}

/* Footer */
.footer{
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.12;
  mix-blend-mode: multiply;
}

/* Visual strip */
.visual-strip{
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

/* Base visual card */
.visual{
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.06),
    0 8px 24px rgba(0,0,0,0.06);
}

/* Placeholder styles (temporary) */
.placeholder::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      rgba(255,255,255,0.12),
      rgba(255,255,255,0.02)
    );
}

/* Three different moods */
.placeholder.dark{
  background:
    linear-gradient(135deg, #1b1e1c, #2a2f2c);
}

.placeholder.cozy{
  background:
    linear-gradient(135deg, #c9bfae, #e6dfd2);
}

.placeholder.strange{
  background:
    linear-gradient(135deg, #4e6f5d, #3f5e4f);
}

.icon{
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.5;
}

