/* SMOALD Honey — farm, fields and amber */

:root {
  --cream: #FBF5E9;
  --paper: #FFFDF8;
  --band: #F4E8CF;
  --ink: #2E2112;
  --muted: #6B5A43;
  --amber: #D98E14;
  --amber-deep: #A8650A;
  --amber-soft: #F8E2B4;
  --field: #6F8A3E;
  --field-deep: #55702C;
  --line: #E6D6B5;

  --display: "Fraunces", Georgia, serif;
  --body: "Karla", system-ui, sans-serif;
  color-scheme: light;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
}
a { color: inherit; }
img, svg { display: block; }

.wrap { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 24px; }

.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 20; }
.skip:focus { left: 8px; }

/* Brand */
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700; font-size: 1.2rem; text-decoration: none; letter-spacing: .01em; }
.brand span { color: var(--amber-deep); }
.mark { width: 26px; height: 26px; fill: var(--amber); }

/* Nav */
.nav { position: sticky; top: 0; z-index: 10; background: rgba(251, 245, 233, .92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; gap: 16px; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { text-decoration: none; color: var(--muted); font-weight: 500; font-size: .95rem; }
.nav-links a:hover { color: var(--ink); }
.nav-links .nav-cta { color: #fff; background: var(--amber-deep); padding: 8px 16px; border-radius: 999px; }
.nav-links .nav-cta:hover { color: #fff; background: var(--ink); }

/* Type */
.eyebrow { font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--amber-deep); margin-bottom: 12px; }
h1, h2, h3 { font-family: var(--display); font-weight: 700; line-height: 1.12; letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); max-width: 16ch; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); max-width: 20ch; }
h3 { font-size: 1.25rem; font-weight: 500; }

/* Buttons */
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn { display: inline-block; text-decoration: none; font-weight: 700; padding: 14px 24px; border-radius: 999px; border: 2px solid transparent; transition: transform .15s, background .15s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--amber); color: var(--ink); }
.btn-primary:hover { background: var(--amber-deep); color: #fff; }
.btn-ghost { border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.text-link { font-weight: 700; color: var(--amber-deep); text-decoration: none; border-bottom: 2px solid var(--amber-soft); }
.text-link:hover { border-color: var(--amber-deep); }

/* Hero */
.hero {
  position: relative;
  padding: 96px 0 150px;
  background:
    radial-gradient(circle at 85% 20%, var(--amber-soft), transparent 45%),
    linear-gradient(var(--paper), var(--cream));
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 1; }
.lede { font-size: 1.2rem; color: var(--muted); max-width: 54ch; margin-top: 22px; }
.fields { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 120px; }
.fields .f1 { fill: var(--field); opacity: .35; }
.fields .f2 { fill: var(--field-deep); opacity: .55; }

/* Sections */
.section { padding: 88px 0; }
.band { background: var(--band); }
.section-lede { color: var(--muted); max-width: 56ch; margin-top: 14px; }
.two-col { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.prose p + p { margin-top: 14px; }
.prose p { color: var(--muted); }

/* Timeline */
.timeline { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 40px; counter-reset: step; }
.timeline li { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 24px 22px 26px; }
.timeline li::before {
  counter-increment: step; content: counter(step);
  display: grid; place-items: center; width: 34px; height: 34px; margin-bottom: 14px;
  font-family: var(--display); font-weight: 700; color: var(--ink); background: var(--amber-soft);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.when { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--field-deep); margin-bottom: 6px; }
.timeline p { color: var(--muted); font-size: .97rem; margin-top: 8px; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.card { background: var(--paper); border: 1px solid var(--line); border-top: 4px solid var(--amber); border-radius: 14px; padding: 26px 24px; }
.card p { color: var(--muted); margin-top: 8px; }

/* Join the list */
.list { background: var(--ink); color: var(--cream); text-align: center; }
.list-inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.list h2 { max-width: 22ch; }
.list p { color: #D9CBB0; max-width: 50ch; }
.list .small { font-size: .85rem; color: #A89878; }
.list-mark { width: 54px; height: 54px; fill: var(--amber); }
.list-mark .inner { fill: var(--ink); }

/* Footer */
.footer { background: var(--cream); border-top: 1px solid var(--line); padding: 34px 0 40px; font-size: .92rem; color: var(--muted); }
.footer-inner { display: flex; flex-direction: column; gap: 8px; }
.foot-brand { color: var(--ink); font-size: 1.05rem; }
.footer a { color: var(--amber-deep); font-weight: 700; }

/* Focus */
a:focus-visible { outline: 3px solid var(--amber-deep); outline-offset: 3px; border-radius: 6px; }

/* Phones and tablets */
@media (max-width: 900px) {
  .timeline { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .wrap { padding: 0 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { padding: 64px 0 120px; }
  .section { padding: 64px 0; }
  .two-col, .cards, .timeline { grid-template-columns: 1fr; gap: 16px; }
  .two-col { gap: 18px; }
}
