:root {
  --paper: #e8e2d4;
  --ink: #171719;
  --muted: #6b685f;
  --red: #dd493b;
  --blue: #425bc7;
  --yellow: #e2a423;
  --green: #2d7654;
  --line: rgba(23, 23, 25, .22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 5%, rgba(255,255,255,.45), transparent 25%),
    linear-gradient(105deg, rgba(90,70,40,.04), transparent 45%),
    var(--paper);
  font-family: "Courier New", Courier, monospace;
  overflow-x: hidden;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .13;
  z-index: 99;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

a { color: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1.1rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid var(--line);
  background: rgba(232,226,212,.88);
  backdrop-filter: blur(10px);
}

.wordmark {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -.06em;
}

nav { display: flex; gap: clamp(.7rem, 2vw, 1.6rem); flex-wrap: wrap; justify-content: flex-end; }
nav a, .footer-links a { text-decoration-thickness: 1px; text-underline-offset: 4px; font-size: .88rem; }

main, footer { width: min(1500px, 100%); margin: 0 auto; }

.hero {
  min-height: 83vh;
  display: grid;
  grid-template-columns: 1.05fr .85fr;
  align-items: center;
  gap: clamp(2rem, 7vw, 8rem);
  padding: clamp(3rem, 8vw, 7rem) clamp(1.2rem, 6vw, 6rem);
  position: relative;
}

.hero-copy { z-index: 2; }
.eyebrow, .label { text-transform: uppercase; font-size: .75rem; letter-spacing: .16em; }
.hero h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(3.3rem, 7vw, 7.5rem);
  line-height: .88;
  letter-spacing: -.075em;
  margin: 1rem 0 1.5rem;
  max-width: 900px;
}
.intro { max-width: 620px; font-size: clamp(1rem, 1.7vw, 1.35rem); line-height: 1.55; }
.actions { display: flex; align-items: center; gap: 1.4rem; margin-top: 2rem; flex-wrap: wrap; }
.button, button {
  border: 2px solid var(--ink);
  background: var(--yellow);
  padding: .9rem 1.15rem;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--ink);
  cursor: pointer;
}
.button:hover, button:hover { transform: translate(2px,2px); box-shadow: 3px 3px 0 var(--ink); }
.scribble-link { text-underline-offset: 5px; }

.hero-image {
  margin: 0;
  border: 1px solid var(--ink);
  background: #111;
  padding: .55rem .55rem 1rem;
  box-shadow: 14px 15px 0 rgba(23,23,25,.16);
}
.hero-image img { aspect-ratio: 1 / 1; object-fit: cover; }
.hero-image figcaption { color: #f1eadc; padding: .75rem .4rem .1rem; font-size: .75rem; }
.tilted { transform: rotate(2.1deg); }
.floating-star {
  position: absolute;
  width: clamp(80px, 10vw, 160px);
  right: 2%;
  bottom: 2%;
  border-radius: 50%;
  mix-blend-mode: multiply;
  transform: rotate(-9deg);
  opacity: .8;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.2rem, 6vw, 6rem);
  border-top: 1px solid var(--line);
}
.section-heading { display: grid; grid-template-columns: auto 1fr; column-gap: 1rem; align-items: baseline; margin-bottom: 2.4rem; }
.section-heading span { font-size: .75rem; }
.section-heading h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: -.07em;
  margin: 0;
}
.section-heading p { grid-column: 2; margin: .4rem 0 0; color: var(--muted); }
.section-heading.compact { margin-bottom: 1rem; }

.feature-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(1rem, 3vw, 3rem); }
.feature-card {
  background: rgba(255,255,255,.21);
  border: 1px solid var(--line);
  padding: .8rem;
}
.feature-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.feature-card.current { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; align-items: center; }
.feature-card h3 { font-family: Arial, Helvetica, sans-serif; font-size: clamp(1.8rem, 3vw, 3rem); line-height: .98; letter-spacing: -.04em; margin: .5rem 0; }
.feature-card p { line-height: 1.55; }
.link-row { display: flex; gap: 1rem; flex-wrap: wrap; }

.scrapbook {
  min-height: 820px;
  position: relative;
  margin: 2rem 0;
}
.scrap { position: absolute; margin: 0; border: 8px solid #ded5c1; box-shadow: 8px 9px 0 rgba(0,0,0,.13); background: #ddd; }
.scrap img { width: 100%; height: 100%; object-fit: cover; }
.scrap-a { width: 43%; height: 50%; left: 0; top: 8%; transform: rotate(-2deg); }
.scrap-b { width: 31%; height: 47%; right: 4%; top: 0; transform: rotate(3deg); }
.scrap-c { width: 30%; height: 42%; left: 35%; top: 49%; transform: rotate(1.5deg); }
.scrap-d { width: 34%; height: 40%; right: 1%; bottom: 0; transform: rotate(-2.5deg); }
.scrap-e { width: 22%; aspect-ratio: 1; left: 10%; bottom: 1%; transform: rotate(7deg); }

.platform-cta { display: flex; gap: 1.1rem; align-items: center; flex-wrap: wrap; padding-top: 2rem; }
.platform-cta p { margin-right: auto; }

.split-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 6vw, 7rem); align-items: center; }
.big-note { font-family: Arial, Helvetica, sans-serif; font-size: clamp(2rem, 4vw, 4rem); letter-spacing: -.05em; margin-bottom: .5rem; }
.photo-card { margin: 0; padding: .65rem .65rem 1.5rem; background: #f1e9d8; transform: rotate(1.6deg); box-shadow: 10px 11px 0 rgba(0,0,0,.13); }
.photo-card img { aspect-ratio: 3 / 2; object-fit: cover; }

.about-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 6vw, 7rem); align-items: center; }
.about-art img { max-height: 540px; width: 100%; object-fit: cover; mix-blend-mode: multiply; }
.about-copy { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.5rem, 3.3vw, 3.2rem); line-height: 1.12; }

.mailing-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: #222028;
  color: #f4eddf;
}
.mailing-list h2 { font-family: Arial, Helvetica, sans-serif; font-size: clamp(2.6rem, 5vw, 5rem); letter-spacing: -.06em; margin: .4rem 0; }
.mailing-list label { display: block; font-size: .75rem; margin-bottom: .5rem; }
.form-row { display: flex; gap: .7rem; }
input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #f4eddf;
  background: transparent;
  color: #f4eddf;
  font: inherit;
}
.mailing-list button { background: var(--red); color: #fff; border-color: #fff; box-shadow: 5px 5px 0 #fff; }
.mailing-list small { display: block; margin-top: .8rem; color: #bfb6aa; }

footer {
  padding: 2rem clamp(1.2rem, 6vw, 6rem) 3rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--line);
}
footer > div:first-child { display: flex; flex-direction: column; gap: .25rem; }
.footer-links { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: flex-end; }

@media (max-width: 850px) {
  .site-header { align-items: flex-start; flex-direction: column; gap: .7rem; }
  nav { justify-content: flex-start; }
  .hero, .feature-grid, .split-section, .about-section, .mailing-list { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero h1 { font-size: clamp(3rem, 15vw, 5.7rem); }
  .feature-card.current { grid-template-columns: 1fr; }
  .scrapbook { min-height: 1250px; }
  .scrap-a { width: 73%; height: 30%; }
  .scrap-b { width: 55%; height: 27%; top: 25%; right: 0; }
  .scrap-c { width: 58%; height: 26%; left: 2%; top: 49%; }
  .scrap-d { width: 64%; height: 24%; right: 0; bottom: 1%; }
  .scrap-e { width: 33%; bottom: 15%; left: 3%; }
  footer { flex-direction: column; }
  .footer-links { justify-content: flex-start; }
  .floating-star { display: none; }
}
.mailchimp-credit {
  margin: .7rem 0 0;
  opacity: .55;
}

.mailchimp-credit img {
  width: 115px;
  height: auto;
}
