/* Winston Goes Places — site styles
   Palette: warm cream paper, burnt-orange harness, storybook ink.
   Everything below is plain CSS. Edit freely. */

:root {
  --paper:      #FDF6EC;
  --paper-2:    #F6E9D8;
  --card:       #FFFFFF;
  --ink:        #3A2A22;
  --ink-soft:   #6B5548;
  --orange:     #D2601A;
  --orange-dk:  #A8480E;
  --orange-lt:  #FBE3D0;
  --sage:       #6E8B6A;
  --sky:        #A8C8D8;
  --line:       #E7D6C2;

  --radius:     18px;
  --radius-lg:  28px;
  --shadow:     0 2px 4px rgba(58,42,34,.05), 0 12px 28px rgba(58,42,34,.09);
  --shadow-sm:  0 1px 2px rgba(58,42,34,.06), 0 4px 12px rgba(58,42,34,.06);
  --maxw:       1120px;

  --display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --body:    "Nunito", ui-rounded, "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--orange-dk); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); }

p { margin: 0 0 1.1em; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 720px; }
.center { text-align: center; }
.muted { color: var(--ink-soft); }

section { padding: 88px 0; }
section.tight { padding: 56px 0; }

.eyebrow {
  font-family: var(--body);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 .9em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--body);
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  padding: .85em 1.6em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--orange-dk); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange-dk); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row.center { justify-content: center; }

/* ---------- Header ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253,246,236,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.brand .dot {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--orange);
  display: grid; place-items: center;
  color: #fff; font-size: 1.05rem;
  flex: none;
}
.nav-links { margin-left: auto; display: flex; gap: 26px; align-items: center; }
.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: .95rem;
}
.nav-links a:hover { color: var(--orange-dk); }
.nav-links .btn { font-size: .9rem; padding: .6em 1.2em; }
@media (max-width: 860px) {
  .nav-links a:not(.btn) { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 76px 0 72px;
  background:
    radial-gradient(1000px 460px at 78% 8%, var(--orange-lt) 0%, transparent 62%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { margin-bottom: .3em; }
.hero h1 em { font-style: italic; color: var(--orange); }
.hero .lede { font-size: 1.22rem; color: var(--ink-soft); max-width: 30em; }
.hero-art {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--card);
  aspect-ratio: 4 / 5;
}
.hero-art img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-art { aspect-ratio: 4 / 3; max-height: 420px; }
}

.stats { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 30px; }
.stat .n { font-family: var(--display); font-size: 1.8rem; font-weight: 700; line-height: 1; color: var(--ink); }
.stat .l { font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; color: var(--ink-soft); white-space: nowrap; }

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 880px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: .35em; }
.card p:last-child { margin-bottom: 0; }

.card-media {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card-media:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-media .thumb { aspect-ratio: 9 / 16; background: var(--paper-2); overflow: hidden; }
.card-media .thumb img { width: 100%; height: 100%; object-fit: cover; }
.card-media .body { padding: 18px 20px 22px; }
.card-media .body h3 { font-size: 1.15rem; margin-bottom: .2em; }
.card-media .body p { font-size: .95rem; color: var(--ink-soft); margin: 0; }

/* ---------- Alt band ---------- */
.band { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band-orange {
  background: linear-gradient(160deg, var(--orange) 0%, var(--orange-dk) 100%);
  color: #fff;
}
.band-orange h2, .band-orange .stat .n { color: #fff; }
.band-orange .eyebrow { color: var(--orange-lt); }
.band-orange p { color: rgba(255,255,255,.9); }
.band-orange .btn-primary { background: #fff; color: var(--orange-dk); }
.band-orange .btn-primary:hover { background: var(--paper); }
.band-orange .btn-ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.band-orange .btn-ghost:hover { border-color: #fff; color: #fff; }

/* ---------- Split feature ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split.flip .split-text { order: 2; }
.split-art {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--card);
  aspect-ratio: 1 / 1;
}
.split-art img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.flip .split-text { order: 0; }
}

/* ---------- Facts list ---------- */
.facts { list-style: none; padding: 0; margin: 0 0 1.4em; }
.facts li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 9px 0; border-bottom: 1px dashed var(--line);
  font-size: 1rem;
}
.facts li:last-child { border-bottom: 0; }
.facts .k { font-weight: 800; min-width: 108px; color: var(--ink); flex: none; }
.facts .v { color: var(--ink-soft); }

/* ---------- Products ---------- */
.product { display: flex; flex-direction: column; }
.product .thumb { aspect-ratio: 1 / 1; }
.product .price { font-family: var(--display); font-weight: 700; font-size: 1.3rem; }
.pill {
  display: inline-block;
  font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  background: var(--orange-lt); color: var(--orange-dk);
  padding: .35em .8em; border-radius: 999px; margin-bottom: .8em;
}
.pill.sage { background: #E4EDE2; color: #3F5A3B; }

/* Buy-button drop zone — replace the inner comment with your Stripe/Shopify embed */
.buy-slot { margin-top: 14px; }

/* ---------- Email form ---------- */
.signup { max-width: 520px; margin: 0 auto; }
.signup form { display: flex; gap: 10px; flex-wrap: wrap; }
/* Kit (ConvertKit) status messages */
.signup .formkit-alert { flex: 1 0 100%; list-style: none; margin: 0; padding: 10px 14px;
  border-radius: var(--radius); font-size: .92rem; text-align: left; }
.signup .formkit-alert:empty { display: none; padding: 0; }
.signup .formkit-alert-error { background: #FDE8E2; border: 1px solid #F2643B; color: #B23A11; }
.signup .formkit-alert-success { background: #E4EDE2; border: 1px solid #6E8B6A; color: #3F5A3B; }
.signup input[type="email"] {
  flex: 1 1 240px;
  font-family: var(--body);
  font-size: 1rem;
  padding: .85em 1.1em;
  border-radius: 999px;
  border: 2px solid var(--line);
  background: #fff;
  color: var(--ink);
}
.signup input[type="email"]:focus { outline: none; border-color: var(--orange); }
.signup .fineprint { font-size: .85rem; margin-top: 12px; }

/* ---------- Footer ---------- */
footer.site {
  background: var(--ink);
  color: #E8DCD2;
  padding: 56px 0 40px;
}
footer.site a { color: #E8DCD2; text-decoration: none; }
footer.site a:hover { color: #fff; text-decoration: underline; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
@media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr; gap: 28px; } }
.foot-grid h4 { font-family: var(--body); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: #B9A695; margin-bottom: 1em; }
.foot-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: .95rem; }
.legal { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: .85rem; color: #B9A695; display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; }

/* ---------- Utility ---------- */
.hr-elephant { text-align: center; color: var(--line); font-size: 1.6rem; letter-spacing: .5em; margin: 0; }
