/* Fleuve Digital — retro / northern static site
   Palette drawn from the St. Lawrence: cream paper, sunset blush,
   sea-green water, misty blue-grey hills, deep navy ink. */

:root {
  --paper:       #f4efe4;
  --paper-deep:  #ece4d4;
  --ink:         #17262d;
  --ink-soft:    #3f5158;
  --teal:        #5c8a82;
  --teal-deep:   #3d6660;
  --blush:       #dda192;
  --peach:       #e6c79c;
  --mist:        #9fb4bb;
  --line:        rgba(23, 38, 45, 0.14);

  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --wrap: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

/* Film-grain overlay for the retro texture */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Header ---------- */
.site-head {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
}
.site-head .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  padding-bottom: 26px;
}
.wordmark {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
}
.wordmark span { color: var(--teal-deep); }
.head-note {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-scene svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 28px;
  margin-bottom: 8vh;
}
.eyebrow {
  font-size: 12.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin: 0 0 22px;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.7rem, 7vw, 5.1rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.hero h1 em {
  font-style: italic;
  color: var(--teal-deep);
}
.rule {
  width: 54px;
  height: 1px;
  background: var(--ink);
  opacity: 0.4;
  margin: 30px auto;
}
.hero p.lede {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 30em;
  margin: 0 auto;
}

/* ---------- Sections ---------- */
section.band {
  padding: 108px 0;
  border-top: 1px solid var(--line);
}
.section-label {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin: 0 0 46px;
}
.lead {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  line-height: 1.28;
  letter-spacing: -0.01em;
  max-width: 20em;
  margin: 0;
  color: var(--ink);
}
.lead em { font-style: italic; color: var(--teal-deep); }

/* Offerings */
.offerings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 4px;
  background: var(--line);
  border: 1px solid var(--line);
}
.offering {
  background: var(--paper);
  padding: 40px 34px 44px;
}
.offering .num {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--teal);
  letter-spacing: 0.1em;
}
.offering h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  margin: 18px 0 12px;
  color: var(--ink);
}
.offering p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* Closing */
.closing {
  background: var(--ink);
  color: var(--paper);
  border: none;
}
.closing .lead { color: var(--paper); max-width: 18em; }
.closing .lead em { color: var(--blush); }
.closing .section-label { color: var(--mist); }

/* ---------- Footer ---------- */
footer {
  padding: 46px 0;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--ink-soft);
}
footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
footer a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 1px; }
footer a:hover { border-color: var(--teal); color: var(--teal-deep); }
footer .place { letter-spacing: 0.14em; text-transform: uppercase; font-size: 11.5px; }

/* ---------- Legal page ---------- */
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 150px 28px 100px;
}
.legal .back {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-deep);
  text-decoration: none;
}
.legal h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  letter-spacing: -0.015em;
  margin: 26px 0 6px;
}
.legal .updated { color: var(--ink-soft); font-size: 14px; margin: 0 0 46px; }
.legal h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  margin: 46px 0 12px;
}
.legal p, .legal li { color: var(--ink-soft); }
.legal a { color: var(--teal-deep); }
.legal .placeholder {
  background: rgba(221, 161, 146, 0.16);
  border-left: 3px solid var(--blush);
  padding: 14px 18px;
  font-size: 14.5px;
  border-radius: 3px;
}

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .offerings { grid-template-columns: 1fr; }
  section.band { padding: 74px 0; }
  .head-note { display: none; }
  .hero-inner { margin-bottom: 6vh; }
}
