/* vesto form — marketing pages (home, about). Shares the brand tokens with
   shop.css but scrolls like a normal document and leans more editorial. */

:root {
  --ivory: #faf8f4;
  --paper: #ffffff;
  --ink: #221f1b;
  --soft: #6f6a62;
  --hair: #e7e1d6;
  --brass: #a3835a;
  --brass-dark: #87683f;
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ---------- type ---------- */
.eyebrow {
  font-size: 11.5px; letter-spacing: 4px; text-transform: lowercase;
  color: var(--brass-dark); margin: 0 0 18px;
}
h1, h2 { font-weight: 400; letter-spacing: .5px; margin: 0; }
.display { font-size: clamp(42px, 5.4vw, 72px); line-height: 1.08; }
.headline { font-size: clamp(30px, 3.2vw, 44px); line-height: 1.18; }
.lede { font-size: 18.5px; line-height: 1.7; color: var(--soft); }
.measure { max-width: 620px; }

/* ---------- nav ---------- */
#mk-nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px; background: #faf8f4ee; backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hair);
}
.wordmark {
  font-size: 24px; letter-spacing: 6px; text-transform: lowercase;
  text-decoration: none; font-weight: 400;
}
.wordmark em { font-style: italic; color: var(--brass); }
#mk-nav nav { display: flex; gap: 30px; align-items: center; }
.nav-link {
  font-size: 13.5px; letter-spacing: 2.5px; text-transform: lowercase;
  color: var(--soft); text-decoration: none; padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.nav-link:hover, .nav-link.active { color: var(--ink); border-bottom-color: var(--brass); }

/* ---------- buttons ---------- */
.cta {
  display: inline-block; text-decoration: none; cursor: pointer;
  font-family: inherit; font-size: 13.5px; letter-spacing: 2.5px; text-transform: lowercase;
  padding: 15px 34px; border: 1px solid var(--ink);
  background: var(--ink); color: var(--ivory);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.cta:hover { background: var(--brass-dark); border-color: var(--brass-dark); color: #fff; }
.cta.ghost { background: transparent; color: var(--ink); }
.cta.ghost:hover { background: var(--ink); color: var(--ivory); }
.cta.on-dark { background: var(--ivory); border-color: var(--ivory); color: var(--ink); }
.cta.on-dark:hover { background: var(--brass); border-color: var(--brass); color: #fff; }
.cta.ghost.on-dark { background: transparent; color: var(--ivory); }
.cta.ghost.on-dark:hover { background: var(--ivory); color: var(--ink); }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 86vh; display: flex; align-items: center;
  background-size: cover; background-position: center 35%;
  color: var(--ivory);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, #16130fc4 0%, #16130f66 48%, #16130f14 75%);
}
.hero-inner { position: relative; max-width: 1240px; width: 100%; margin: 0 auto; padding: 80px 48px; }
.hero .eyebrow { color: #d8bf9b; }
.hero p.lede { color: #f1ece2; max-width: 480px; margin: 26px 0 38px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- shared section scaffolding ---------- */
.section { max-width: 1240px; margin: 0 auto; padding: 110px 48px; }
.section.tight { padding-top: 90px; padding-bottom: 90px; }
.section-head { max-width: 660px; margin-bottom: 56px; }
.section-head p { color: var(--soft); margin: 18px 0 0; }
.rule { border: none; border-top: 1px solid var(--hair); margin: 0 48px; }
.center { text-align: center; }
.center .section-head, .center .measure { margin-left: auto; margin-right: auto; }

/* manifesto */
.manifesto { text-align: center; padding: 120px 48px; }
.manifesto blockquote {
  margin: 0 auto; max-width: 760px;
  font-size: clamp(22px, 2.4vw, 30px); line-height: 1.5; font-style: italic;
}
.manifesto blockquote em { color: var(--brass-dark); }

/* editorial split */
.split { display: grid; grid-template-columns: 1.15fr 1fr; gap: 72px; align-items: center; }
.split.flip { grid-template-columns: 1fr 1.15fr; }
.split-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.split-copy p { color: var(--soft); margin: 18px 0 0; }
.split-copy .cta { margin-top: 34px; }

/* module grid */
.modules { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.module {
  background: var(--paper); border: 1px solid var(--hair); padding: 30px 24px 24px;
  transition: box-shadow .2s ease;
}
.module:hover { box-shadow: 0 12px 36px #00000012; }
.module img { height: 240px; width: 100%; object-fit: contain; mix-blend-mode: multiply; }
.module h3 { font-weight: 500; font-size: 17px; margin: 22px 0 4px; }
.module p { font-size: 13.5px; color: var(--soft); margin: 0; line-height: 1.55; }

/* full-bleed photo band */
.band {
  position: relative; min-height: 64vh;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
}
.band::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, #16130fa6 0%, #16130f24 38%, transparent 60%);
}
.band-caption {
  position: relative; width: 100%; max-width: 1240px; margin: 0 auto;
  padding: 0 48px 44px; color: #ece5d8;
  font-size: 13px; letter-spacing: 3px; text-transform: lowercase;
}

/* detail cards */
.details-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.detail-card { background: var(--paper); border: 1px solid var(--hair); padding: 34px 30px; }
.detail-card img { height: 190px; width: 100%; object-fit: contain; mix-blend-mode: multiply; }
.detail-card h3 { font-weight: 500; font-size: 17px; margin: 24px 0 6px; }
.detail-card p { font-size: 14px; color: var(--soft); margin: 0; }

/* the finish */
.img-caption {
  margin: 14px 0 0; font-size: 12px; letter-spacing: 2.5px;
  text-transform: lowercase; color: var(--soft); text-align: center;
}

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step .num { font-size: 13px; letter-spacing: 3px; color: var(--brass-dark); }
.step h3 { font-weight: 500; font-size: 18px; margin: 12px 0 8px; }
.step p { font-size: 14px; color: var(--soft); margin: 0; }
.step { border-top: 1px solid var(--hair); padding-top: 22px; }

/* dark value band */
.dark-band { background: var(--ink); color: var(--ivory); }
.dark-band .section { padding: 110px 48px; }
.dark-band .eyebrow { color: var(--brass); }
.dark-band p { color: #c9c2b6; }
.dark-band .headline { color: var(--ivory); }

/* ---------- about page ---------- */
.page-head { max-width: 860px; margin: 0 auto; padding: 110px 48px 70px; text-align: center; }
.page-head p.lede { margin: 26px auto 0; max-width: 560px; }
.prose { max-width: 660px; margin: 0 auto; padding: 0 48px 40px; }
.prose p { color: #4d483f; font-size: 17.5px; line-height: 1.85; margin: 0 0 28px; }
.prose p:first-child::first-letter {
  font-size: 58px; line-height: .9; float: left; padding: 8px 12px 0 0; color: var(--brass-dark);
}
.si { font-style: italic; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.principle { border-top: 2px solid var(--ink); padding-top: 24px; }
.principle h3 { font-weight: 500; font-size: 19px; margin: 0 0 10px; }
.principle p { font-size: 14.5px; color: var(--soft); margin: 0; }
.name-note {
  background: var(--paper); border: 1px solid var(--hair);
  max-width: 760px; margin: 0 auto; padding: 56px 64px; text-align: center;
}
.name-note .word { font-size: 30px; letter-spacing: 6px; text-transform: lowercase; }
.name-note .word em { font-style: italic; color: var(--brass); }
.name-note p { color: var(--soft); margin: 18px 0 0; }

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--hair); padding: 56px 48px 48px;
  max-width: 1336px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap;
}
footer .wordmark { font-size: 20px; }
.foot-links { display: flex; gap: 26px; }
.foot-note { width: 100%; margin-top: 26px; font-size: 12px; letter-spacing: 1px; color: var(--soft); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .modules { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  #mk-nav { padding: 16px 24px; }
  #mk-nav nav .hide-sm { display: none; }
  .section, .dark-band .section { padding: 72px 24px; }
  .manifesto { padding: 84px 24px; }
  .split, .split.flip { grid-template-columns: 1fr; gap: 36px; }
  .details-grid, .principles { grid-template-columns: 1fr; }
  .hero { min-height: 72vh; }
  .hero-inner, .page-head { padding-left: 24px; padding-right: 24px; }
  .prose { padding: 0 24px 24px; }
  .name-note { padding: 40px 28px; margin: 0 24px; }
  .band-caption { padding: 0 24px 32px; }
  .rule { margin: 0 24px; }
  footer { padding: 40px 24px; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .modules { grid-template-columns: 1fr; }
}
