/* Fuchsoto Group — Media Company
   Palette from FG brand mark: ink black, teal→ocean gradient, cream. */
:root {
  --ink: #0b0f13;
  --ink-2: #12181f;
  --teal: #16cfc2;
  --ocean: #1e86d8;
  --cream: #f3eee4;
  --paper: #ffffff;
  --body: #2b333b;
  --muted: #6d7b88;
  --line: #e3e7eb;
  --line-dark: #232c35;
  --grad: linear-gradient(135deg, var(--teal), var(--ocean));
  --max: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Albert Sans", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--paper);
}

img { max-width: 100%; display: block; }
a { color: var(--ocean); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ---------- Header ---------- */
header.site {
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line-dark);
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brandline { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brandline:hover { text-decoration: none; }
.brandline img { width: 44px; height: auto; }
.brandline .word {
  color: var(--cream);
  font-family: "Bricolage Grotesque", "Albert Sans", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 1.15;
}
.brandline .word small {
  display: block;
  font-family: "Albert Sans", sans-serif;
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: var(--teal);
  text-transform: uppercase;
}
nav.main { display: flex; gap: 26px; align-items: center; }
nav.main a {
  color: #b9c3cc;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}
nav.main a:hover, nav.main a[aria-current="page"] { color: var(--cream); }
nav.main a.cta {
  background: var(--grad);
  color: var(--ink);
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 999px;
}
nav.main a.cta:hover { filter: brightness(1.08); text-decoration: none; }

/* ---------- Hero ---------- */
.hero {
  background: var(--ink);
  color: var(--cream);
  padding: 96px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -220px;
  top: -220px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle at center, rgba(22,207,194,0.16), rgba(30,134,216,0.05) 55%, transparent 70%);
  pointer-events: none;
}
.kicker {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--teal);
  margin-bottom: 18px;
}
.hero h1 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(2.3rem, 5.4vw, 4.1rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  max-width: 15ch;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lede { font-size: 1.15rem; color: #c4cdd5; max-width: 56ch; margin-bottom: 36px; }
.btnrow { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn.primary { background: var(--grad); color: var(--ink); }
.btn.primary:hover { filter: brightness(1.08); }
.btn.ghost { border: 1px solid #3a4550; color: var(--cream); }
.btn.ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn.dark { background: var(--ink); color: var(--cream); }
.btn.dark:hover { filter: brightness(1.25); }

/* ---------- Section scaffolding ---------- */
section.block { padding: 84px 0; }
section.block.tint { background: #f7f8f9; }
.section-head { margin-bottom: 44px; max-width: 60ch; }
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 10px;
}
h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 14px;
}
h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ---------- Newsstand (signature) ---------- */
.newsstand {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.cover {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 22px;
  color: var(--cream);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(11,15,19,0.14);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.cover:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(11,15,19,0.22); text-decoration: none; }
.cover .masthead {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.cover .folio {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 10px;
}
.cover .desc { font-size: 0.88rem; line-height: 1.5; opacity: 0.92; }
.cover .go { font-weight: 700; font-size: 0.85rem; margin-top: 12px; }
.cover.c-depalm { background: linear-gradient(160deg, #0e7d8c, #0b4f66); }
.cover.c-jamaica { background: linear-gradient(160deg, #0f7a3d, #084a25); }
.cover.c-app { background: linear-gradient(160deg, #e0a800, #b97600); }
.cover.c-digital { background: linear-gradient(160deg, #1e86d8, #123f77); }

/* ---------- Reach band ---------- */
.reach {
  background: var(--ink);
  color: var(--cream);
  padding: 64px 0;
}
.reach .grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  text-align: center;
}
.stat .num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat .lab { font-size: 0.82rem; color: #9aa6b1; margin-top: 4px; }

/* ---------- Cards / routers ---------- */
.threeup { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.twoup { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 30px 28px;
  background: var(--paper);
}
.card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 16px; }
.card .link { font-weight: 700; font-size: 0.92rem; }
.checks { list-style: none; margin: 18px 0; }
.checks li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
  font-size: 0.97rem;
}
.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--grad);
}

/* ---------- Publication feature rows ---------- */
.pubrow {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}
.pubrow:last-of-type { border-bottom: none; }
.pubcover {
  border-radius: 10px;
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 24px;
  color: var(--cream);
  box-shadow: 0 14px 34px rgba(11,15,19,0.18);
}
.pubcover .masthead { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 1.7rem; line-height: 1.1; }
.pubcover .folio { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.85; margin-bottom: 10px; }
.pubcover .tag { font-family: "Newsreader", Georgia, serif; font-style: italic; font-size: 1rem; opacity: 0.95; }
.pubstats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 26px 0; }
.pubstats .stat { text-align: left; }
.pubstats .num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--ink);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}
.pubstats .lab { font-size: 0.8rem; color: var(--muted); }
.linkrow { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 8px; }

/* ---------- Feature list (app) ---------- */
.features { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 34px; margin: 30px 0; }
.feature { padding-left: 30px; position: relative; }
.feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 15px;
  height: 15px;
  border-radius: 4px;
  background: var(--grad);
}
.feature b { color: var(--ink); }
.feature span { display: block; color: var(--muted); font-size: 0.92rem; }

/* ---------- Panels ---------- */
.panel {
  background: #f2f9f8;
  border: 1px solid #d5ece9;
  border-radius: 12px;
  padding: 26px 28px;
  margin: 26px 0;
}
.panel.dark {
  background: var(--ink-2);
  border-color: var(--line-dark);
  color: var(--cream);
}
.panel.dark h3 { color: var(--cream); }
.panel.dark p { color: #b9c3cc; }

/* ---------- CTA band ---------- */
.ctaband {
  background: var(--ink);
  color: var(--cream);
  padding: 76px 0;
  text-align: center;
}
.ctaband h2 { color: var(--cream); max-width: 24ch; margin: 0 auto 14px; }
.ctaband p { color: #b9c3cc; max-width: 52ch; margin: 0 auto 30px; }
.ctaband .btnrow { justify-content: center; }

/* ---------- Contact ---------- */
.contactgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
dl.contact dt { font-weight: 700; color: var(--ink); margin-top: 16px; }
dl.contact dd { margin-left: 0; color: var(--muted); }

/* ---------- Footer ---------- */
footer.site {
  background: var(--ink);
  color: #9aa6b1;
  padding: 56px 0 40px;
  font-size: 0.88rem;
}
footer.site .cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
footer.site img { width: 54px; margin-bottom: 14px; }
footer.site h4 {
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
footer.site a { color: #9aa6b1; display: block; margin-bottom: 8px; }
footer.site a:hover { color: var(--teal); }
footer.site .legal {
  border-top: 1px solid var(--line-dark);
  padding-top: 22px;
  font-size: 0.8rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .newsstand { grid-template-columns: repeat(2, 1fr); }
  .reach .grid { grid-template-columns: repeat(2, 1fr); }
  .threeup, .twoup, .contactgrid, .features { grid-template-columns: 1fr; }
  .pubrow { grid-template-columns: 1fr; }
  .pubcover { max-width: 340px; }
  footer.site .cols { grid-template-columns: 1fr; }
  nav.main { gap: 16px; }
  nav.main a:not(.cta) { display: none; }
}
@media (max-width: 520px) {
  .newsstand { grid-template-columns: 1fr; }
  .cover { aspect-ratio: auto; min-height: 240px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cover { transition: none; }
}
a:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

/* ---------- Real cover images ---------- */
.cover.has-img { padding: 0; background: var(--ink-2); }
.cover.has-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.cover.has-img .overlay {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 48px 20px 18px;
  background: linear-gradient(to top, rgba(11,15,19,0.92), rgba(11,15,19,0.55) 60%, transparent);
  width: 100%;
}
.cover.has-img .overlay .desc { font-size: 0.84rem; }
.pubimg {
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(11,15,19,0.18);
  width: 100%;
  height: auto;
}
