/* =====================================================================
   FutureLED Sales — v5 stylesheet
   Light, cohesive, airy. One family of soft tints — light-blue, cream,
   white — kept high-lightness and low-contrast so bands read as gentle
   neighbours, never choppy slabs. Gold #C49A2A is the connective accent.
   A single soft slate-blue footer grounds the bottom. Barlow Condensed.
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&family=Barlow+Condensed:wght@600;700;800&display=swap');

:root {
  --slate: #2E3A47;          /* text / headings / ink */
  --footer: #3E4F60;         /* soft slate-blue — gentle grounding footer */
  --footer-2: #37475700;     /* (reserved) */

  /* Soft light-blue family (the accent) */
  --sky-1: #EAF4FB;          /* very light blue — hero top / tint bands */
  --sky-2: #D3E8F5;          /* slightly deeper light blue — hero base */
  --sky-band: #E7F2FA;       /* flat accent band (methodology / CTA) */

  --cream: #F2F6F9;          /* soft cool light gray-blue (replaces tan) */
  --white: #FFFFFF;

  --gold: #C49A2A;
  --gold-dk: #A9821F;
  --gold-lt: #E0BC55;
  --blue-gray: #A9BFD3;

  --ink: #2E3A47;            /* text on every light band */
  --ink-soft: #51606E;       /* muted text on light */
  --on-dark: #FFFFFF;        /* text on the footer */
  --on-dark-soft: #D3DCE4;   /* muted text on the footer */

  --tint: #F2F6FA;
  --shadow: 0 18px 44px rgba(46, 58, 71, 0.12);
  --shadow-sm: 0 8px 22px rgba(46, 58, 71, 0.08);
  --shadow-card: 0 12px 30px rgba(46, 58, 71, 0.10);

  --maxw: 1180px;
  --gap: clamp(1.25rem, 3vw, 2.25rem);
  --radius: 12px;

  --head: "Barlow Condensed", "Oswald", "Arial Narrow", system-ui, sans-serif;
  --sans: "Barlow", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 1.125rem;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold-dk); text-decoration: none; }
a:hover { color: var(--gold-dk); text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--head);
  color: var(--ink);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 .45em;
}
h1 { font-size: clamp(3rem, 8vw, 5rem); }
h2 { font-size: clamp(2.2rem, 5vw, 3.25rem); }
h3 { font-size: clamp(1.5rem, 2.6vw, 1.9rem); font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }
strong { font-weight: 700; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.section { padding-block: clamp(3.5rem, 9vw, 6.5rem); }
.section--tight { padding-block: clamp(2.25rem, 5vw, 3.5rem); }

/* Bands — all light; low contrast so transitions stay smooth.
   .band-slate is now the soft light-blue accent band (dark text). */
.band-slate { background: var(--sky-band); color: var(--ink); }
.band-slate h1, .band-slate h2, .band-slate h3, .band-slate h4 { color: var(--ink); }
.band-slate p, .band-slate .lead { color: var(--ink-soft); }
.band-cream, .band-cream2 { background: var(--cream); }
.band-white { background: var(--white); }
.band-bluegray { background: var(--sky-1); }

.eyebrow {
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .95rem;
  font-weight: 700;
  color: var(--gold-dk);
  margin: 0 0 .9rem;
}
.lead { font-size: clamp(1.15rem, 2vw, 1.35rem); color: var(--ink-soft); max-width: 60ch; line-height: 1.5; }
.center { text-align: center; }
.measure { max-width: 20ch; }
.mx-auto { margin-inline: auto; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--slate); color: var(--cream); padding: .6rem 1rem; z-index: 200; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 1.05rem;
  padding: 15px 32px;
  border-radius: 8px;
  border: 3px solid transparent;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .1s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary, .btn-gold { background: var(--gold); color: var(--slate); }
.btn-primary:hover, .btn-gold:hover { background: var(--gold-dk); color: #fff; }
.btn-outline { background: transparent; border-color: var(--slate); color: var(--slate); }
.btn-outline:hover { background: var(--slate); color: #fff; }
/* On light bands a white outline vanishes — outline buttons stay slate */
.btn-outline-light { background: transparent; border-color: var(--slate); color: var(--slate); }
.btn-outline-light:hover { background: var(--slate); color: #fff; }
.btn-lg { padding: 1.15rem 2.4rem; font-size: 1.12rem; }

/* ---------- Header / nav ---------- */
.site-header { background: rgba(255,255,255,.9); backdrop-filter: saturate(1.2) blur(6px); box-shadow: 0 2px 18px rgba(46,58,71,.06); position: sticky; top: 0; z-index: 100; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 74px; }
.brand { font-family: var(--head); font-weight: 800; font-size: 1.65rem; color: var(--slate); letter-spacing: .01em; text-transform: uppercase; }
.brand:hover { color: var(--slate); text-decoration: none; }
.brand b { color: var(--gold-dk); }
.nav-toggle { display: inline-flex; align-items: center; gap: .5rem; background: transparent; border: 2px solid var(--slate); border-radius: 8px; padding: .5rem .8rem; font-size: .95rem; color: var(--slate); cursor: pointer; font-family: var(--head); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.nav-toggle .bars { display: inline-block; width: 18px; height: 2px; background: var(--slate); position: relative; }
.nav-toggle .bars::before, .nav-toggle .bars::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--slate); }
.nav-toggle .bars::before { top: -6px; } .nav-toggle .bars::after { top: 6px; }
.nav-menu { list-style: none; margin: 0; padding: 0; }
.nav-menu a {
  display: block; color: var(--slate); font-family: var(--head); font-weight: 600;
  text-transform: uppercase; letter-spacing: .07em; font-size: 1.02rem;
  padding: .7rem .2rem; border-bottom: 3px solid transparent;
}
.nav-menu a:hover, .nav-menu a[aria-current="page"] { color: var(--gold-dk); text-decoration: none; border-bottom-color: var(--gold); }
.nav-menu { position: absolute; left: 0; right: 0; top: 100%; background: var(--white); box-shadow: 0 18px 30px rgba(46,58,71,.10); display: none; padding: .5rem clamp(1rem, 4vw, 2rem) 1rem; }
.nav-menu.open { display: block; }

/* ---------- HERO (soft light-blue gradient, 85vh, cutout photo) ---------- */
.hero { background: linear-gradient(180deg, var(--sky-1) 0%, var(--sky-2) 100%); color: var(--ink); position: relative; overflow: hidden; padding-block: clamp(2.25rem, 5vw, 4rem); }
.hero::after { content: ""; position: absolute; left: 0; bottom: 0; height: 5px; width: 100%; background: linear-gradient(90deg, var(--gold) 0 38%, transparent 38%); opacity: .9; }
.hero h1, .hero h2, .hero h3 { color: var(--ink); }
.hero p, .hero .lead { color: var(--ink-soft); }
.hero-grid { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.hero-grid > div:first-child { align-self: center; }
.hero h1 { font-weight: 800; font-size: clamp(3rem, 8vw, 5rem); line-height: 1.05; margin-bottom: .3em; }
.hero .lead { margin-bottom: 1.9rem; max-width: 38ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }

/* Stacked eyebrow lines */
.hero-eyebrows { margin: 0 0 1.2rem; }
.hero-eyebrows span { display: block; font-family: var(--head); text-transform: uppercase; font-weight: 700; letter-spacing: .04em; font-size: clamp(1.15rem, 2.4vw, 1.6rem); line-height: 1.12; color: var(--slate); }
.hero-eyebrows span.gold { color: var(--gold-dk); }

.hero .eyebrow { color: var(--gold-dk); }
.hero .breadcrumb { color: var(--ink-soft); font-family: var(--head); text-transform: uppercase; letter-spacing: .12em; font-size: .9rem; font-weight: 600; }
.hero .breadcrumb a { color: var(--gold-dk); }

/* Cutout photo, bottom-aligned to the band edge */
.hero-photo { align-self: center; }
.hero-photo img { display: block; width: 100%; height: auto; max-height: 58vh; object-fit: contain; object-position: center; margin-inline: auto; filter: drop-shadow(0 20px 34px rgba(46,58,71,.20)); }
.hero-photo-caption { text-align: center; margin: 1rem 0 0; line-height: 1.2; }
.hero-photo-caption strong { display: block; font-family: var(--head); font-weight: 700; font-size: 1.4rem; color: var(--gold-dk); letter-spacing: .01em; }
.hero-photo-caption span { display: block; font-family: var(--head); text-transform: uppercase; letter-spacing: .12em; font-size: .85rem; font-weight: 600; color: var(--ink-soft); margin-top: .2rem; }

/* ---------- Image placeholders (fallback) ---------- */
.imgph {
  background: repeating-linear-gradient(45deg, rgba(169,191,211,.16) 0 14px, rgba(169,191,211,.28) 14px 28px);
  border: 3px dashed var(--blue-gray);
  border-radius: var(--radius);
  color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--head); font-size: .95rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 1rem; min-height: 260px;
}
.imgph--portrait { aspect-ratio: 4 / 5; }
.imgph--wide { aspect-ratio: 16 / 9; }
.imgph--square { aspect-ratio: 1 / 1; }
.hero .imgph { min-height: 340px; }
.guide-cover { min-height: 300px; }
.mission-photo img { display: block; width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow-card); }
.avatar { width: 92px; height: 92px; border-radius: 50%; aspect-ratio: 1/1; min-height: 0; margin: 0 auto 1rem; border: 3px solid var(--gold); }

/* ---------- Section heads ---------- */
.section-head { max-width: 26ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head .lead { max-width: 62ch; }
.section-head.center { margin-inline: auto; }
.section-head.center .lead { margin-inline: auto; }

/* ---------- Cards (soft, shadow-led, no thin borders) ---------- */
.grid { display: grid; gap: var(--gap); }
.cards { display: grid; gap: var(--gap); }
.card { background: var(--white); border: 0; border-top: 4px solid transparent; border-radius: var(--radius); padding: 1.9rem 1.7rem; box-shadow: var(--shadow-card); transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-top-color: var(--gold); }
.card h3 { margin-top: 0; }
.card .card-tag { font-family: var(--head); font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold-dk); font-weight: 700; }
.card-link { font-family: var(--head); text-transform: uppercase; letter-spacing: .06em; font-weight: 700; font-size: 1rem; color: var(--gold-dk); }
a.card { color: inherit; }
a.card:hover { text-decoration: none; }

/* Methodology cards on the light-blue band — white, gold top border, soft shadow */
.band-slate .card { background: var(--white); border-top: 4px solid var(--gold); box-shadow: var(--shadow-card); color: var(--ink); }
.band-slate .card h3 { color: var(--slate); }
.band-slate .card p { color: var(--ink-soft); }
.band-slate .card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.band-slate .card .card-tag, .band-slate .card .card-link { color: var(--gold-dk); }

/* ---------- Positioning statement ---------- */
.positioning { text-align: center; }
.positioning p { font-family: var(--head); font-weight: 800; font-size: clamp(2rem, 5vw, 3.4rem); color: var(--ink); max-width: 24ch; margin-inline: auto; line-height: 1.06; text-transform: uppercase; }
.positioning .accent { color: var(--gold-dk); }

/* ---------- Free-resource / guide card ---------- */
.resource-card { background: var(--white); border: 0; border-radius: var(--radius); padding: 0; box-shadow: var(--shadow-card); overflow: hidden; display: grid; }
.resource-card .guide-cover { min-height: 0; aspect-ratio: 3/4; border: 0; border-radius: 0; }
.resource-card a.guide-cover { display: block; overflow: hidden; }
.resource-card a.guide-cover img { display: block; width: 100%; height: 100%; object-fit: cover; }
.resource-card .guide-body { padding: clamp(1.75rem, 4vw, 2.75rem); display: grid; gap: 1.1rem; align-content: center; }
.resource-card .guide-body h2, .resource-card .guide-body h3 { margin: 0; }

/* ---------- Split (mission / bio) ---------- */
.split { display: grid; gap: clamp(1.75rem, 4vw, 3.5rem); align-items: center; }
.textlink { font-family: var(--head); text-transform: uppercase; letter-spacing: .07em; font-weight: 700; font-size: 1.05rem; color: var(--gold-dk); border-bottom: 3px solid var(--gold); padding-bottom: 2px; display: inline-block; }
.textlink:hover { text-decoration: none; color: var(--slate); border-color: var(--slate); }

/* ---------- Book / bestseller ---------- */
.book-reserved { border: 0; border-top: 6px solid var(--gold); border-radius: var(--radius); background: var(--white); padding: clamp(1.9rem, 4vw, 3rem); display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; box-shadow: var(--shadow-card); }
.reserved-flag { display: inline-block; background: var(--slate); color: var(--gold-lt); font-family: var(--head); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; padding: .4rem .9rem; border-radius: 999px; }
.stars { color: var(--gold); letter-spacing: .18em; font-size: 1.3rem; margin: .7rem 0 .2rem; }
.praise { border-left: 4px solid var(--gold); padding-left: 1.1rem; margin: 0 0 .9rem; color: var(--ink-soft); font-style: italic; }

/* ---------- Testimonials ---------- */
.quote-card { background: var(--white); border: 0; border-radius: var(--radius); padding: 3rem 1.9rem 2rem; box-shadow: var(--shadow-card); text-align: center; position: relative; }
.quote-card::before { content: "\201C"; font-family: var(--head); font-weight: 800; color: var(--gold); font-size: 5rem; line-height: .8; position: absolute; top: .5rem; left: 50%; transform: translateX(-50%); }
.quote-card blockquote { margin: 0 0 1.1rem; font-family: var(--head); font-weight: 600; font-size: 1.5rem; line-height: 1.2; color: var(--ink); }
.quote-card .cite { font-weight: 700; color: var(--slate); font-style: normal; font-size: 1rem; }
.quote-card .cite span { display: block; font-weight: 500; color: var(--ink-soft); font-size: .9rem; margin-top: .15rem; }

/* ---------- Blog / feed ---------- */
.post-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--gap); }
.post-card { background: var(--white); border: 0; border-left: 6px solid var(--gold); border-radius: var(--radius); padding: 1.8rem 1.9rem; box-shadow: var(--shadow-card); transition: transform .16s ease, box-shadow .16s ease; }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post-card .post-date { font-family: var(--head); font-size: .9rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }
.post-card h3 { margin: .45rem 0 .6rem; }
.post-card h3 a { color: var(--slate); }
.post-card h3 a:hover { color: var(--gold-dk); text-decoration: none; }

/* ---------- CTA ---------- */
.cta { text-align: center; }
.cta-links { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2rem; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.25rem; max-width: 660px; }
.field { display: grid; gap: .4rem; }
.field label { font-weight: 700; font-size: 1rem; font-family: var(--head); text-transform: uppercase; letter-spacing: .04em; }
.field .req { color: var(--gold-dk); }
.field input, .field textarea, .field select { font: inherit; color: var(--ink); background: var(--white); border: 2px solid var(--blue-gray); border-radius: 8px; padding: .8rem .9rem; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 3px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
.field textarea { min-height: 150px; resize: vertical; }
.form-note { font-size: .9rem; color: var(--ink-soft); }

/* ---------- Prose ---------- */
.prose { max-width: 68ch; }
.prose h2 { margin-top: 1.4em; }
.prose h3 { margin-top: 1.15em; }
.prose ul { padding-left: 1.3em; }
.prose li { margin-bottom: .45em; }

/* ---------- Callout ---------- */
.callout { background: var(--white); border: 0; border-left: 6px solid var(--gold); border-radius: var(--radius); padding: 1.6rem 1.8rem; box-shadow: var(--shadow-card); margin-block: 1.75rem; }
.callout h3 { margin-top: 0; }

/* ---------- Footer (soft slate-blue, gentle grounding) ---------- */
.site-footer { background: var(--footer); color: var(--on-dark-soft); padding-block: clamp(3rem, 6vw, 4.5rem); border-top: 5px solid var(--gold); }
.site-footer a { color: var(--on-dark-soft); }
.site-footer a:hover { color: var(--gold-lt); text-decoration: none; }
.footer-grid { display: grid; gap: 2.5rem; }
.footer-brand .brand { color: #fff; }
.footer-brand .brand b { color: var(--gold-lt); }
.footer-brand p { color: var(--on-dark-soft); max-width: 42ch; margin-top: .9rem; }
.footer-col h4 { color: #fff; font-family: var(--head); font-size: .95rem; text-transform: uppercase; letter-spacing: .14em; margin: 0 0 1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: .6rem; }
.social { display: flex; gap: .7rem; margin-top: 1.1rem; flex-wrap: wrap; }
.social a { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 2px solid rgba(255,255,255,.3); border-radius: 50%; font-family: var(--head); font-weight: 700; font-size: .85rem; color: #fff; }
.social a:hover { background: var(--gold); border-color: var(--gold); color: var(--slate); }
.footer-bottom { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.16); font-size: .9rem; color: var(--on-dark-soft); display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; }

/* ---------- Article (single blog post) ---------- */
.article-head .back-link { margin: 0 0 1.1rem; }
.article-head .back-link a { font-family: var(--head); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; font-size: .9rem; color: var(--gold-dk); }
.article-head .post-date { font-family: var(--head); text-transform: uppercase; letter-spacing: .12em; font-weight: 600; font-size: .95rem; color: var(--ink-soft); margin: 0 0 .6rem; }
.article-head h1 { max-width: 20ch; }
.article-head .lead { margin-top: .7rem; max-width: 60ch; }
.article-body { max-width: 720px; margin-inline: auto; }
.article-body p { font-size: 1.18rem; line-height: 1.75; margin-bottom: 1.4em; color: var(--ink); }
.article-body p:last-child { margin-bottom: 0; }

/* =====================================================================
   Breakpoints
   ===================================================================== */
@media (min-width: 640px) {
  .cards.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .cards.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .cards.cols-5 { grid-template-columns: repeat(2, 1fr); }
  .post-list.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .resource-card { grid-template-columns: 260px 1fr; }
  .book-reserved { grid-template-columns: 240px 1fr; }
}
@media (min-width: 960px) {
  .nav-toggle { display: none; }
  .nav-menu { position: static; display: flex; gap: 1.5rem; padding: 0; background: transparent; box-shadow: none; }
  .nav-menu a { padding: .4rem 0; border-bottom: 3px solid transparent; }

  .hero-grid { grid-template-columns: 1.05fr .95fr; align-items: center; }
  .hero-photo img { max-height: 66vh; }

  .split { grid-template-columns: 1fr 1fr; }
  .cards.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .cards.cols-5 { grid-template-columns: repeat(5, 1fr); }
  .post-list.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.7fr 1fr 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
