@font-face {
  font-family: "Falco Black";
  src: url("assets/fonts/Falco_Black.otf") format("opentype");
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans";
  src: url("assets/fonts/NotoSans-Regular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #000000;
  --navy: #262D3F;
  --blue: #10569A;
  --grey: #555555;
  --white: #ffffff;
  --paper: #f6f6f7;
  --border: #e3e3e6;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: "Falco Black", "Noto Sans", sans-serif;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin: 0;
}

a { color: inherit; }

img { max-width: 100%; display: block; }

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand-mark {
  font-family: "Falco Black", sans-serif;
  font-size: 20px;
  text-decoration: none;
  color: var(--ink);
}

.site-nav {
  display: flex;
  gap: 28px;
}

.site-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--grey);
  transition: color .15s ease;
}

.site-nav a:hover { color: var(--blue); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover { background: #0d4a85; }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover { border-color: #fff; }

.btn-small {
  padding: 9px 18px;
  font-size: 13px;
  background: var(--ink);
  color: var(--white);
}
.btn-small:hover { background: var(--navy); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); }

/* Hero */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  filter: grayscale(30%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,0.85) 15%, rgba(38,45,63,0.55) 60%, rgba(16,86,154,0.35));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
  padding-top: 96px;
  padding-bottom: 96px;
  min-height: 560px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 14px;
}

.hero h1 {
  font-size: clamp(48px, 7vw, 84px);
  line-height: 0.95;
  margin-bottom: 18px;
}

.hero .tagline {
  font-size: 20px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-portrait {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-portrait img {
  width: 100%;
  max-width: 380px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}

/* Sections */
.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--paper);
}

.section-head {
  margin-bottom: 44px;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 42px);
}

.about-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
}

.about-body p {
  color: #2b2b2b;
  max-width: 68ch;
}

.copy-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.topics-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 260px 1fr 1fr;
  gap: 48px;
}

.topics-col h3 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey);
  margin-bottom: 18px;
}

.topics-grid .topics-col:first-child { grid-column: 2; }
.topics-grid .topics-col:last-child { grid-column: 3; }

.pill-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill-list li {
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--border);
  color: var(--navy);
}

.social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.social-list a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  font-weight: 700;
}

.social-list a span {
  font-weight: 400;
  color: var(--grey);
  font-size: 14px;
}

.social-list a:hover { color: var(--blue); }

/* Photo grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

.photo-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/5;
  text-decoration: none;
  display: block;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.photo-card:hover img { transform: scale(1.05); }

.photo-download {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(0,0,0,0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 999px;
  opacity: 0;
  transition: opacity .2s ease;
}

.photo-card:hover .photo-download { opacity: 1; }

/* Podcast */
.podcast-cover-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

.podcast-cover {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.podcast-cover-info h3 { margin-bottom: 10px; font-size: 22px; }
.podcast-cover-info p { color: var(--grey); max-width: 50ch; margin: 0 0 20px; }

.logo-heading { font-size: 22px; margin-bottom: 20px; }

.logo-tabs {
  display: inline-flex;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 28px;
}

.logo-tab {
  border: none;
  background: transparent;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  color: var(--grey);
}

.logo-tab.active {
  background: var(--ink);
  color: var(--white);
}

.logo-swatches {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}

.logo-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
}

.logo-preview {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.logo-preview--dark { background: var(--navy); }
.logo-preview--light { background: var(--paper); }

.logo-preview img {
  max-height: 100%;
  width: auto;
}

.logo-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  font-weight: 700;
  font-size: 14px;
}

.logo-links {
  display: flex;
  gap: 10px;
}

.logo-links a {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
}

.logo-links a:hover { text-decoration: underline; }

/* Brand */
.brand-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.brand-block h3 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey);
  margin-bottom: 18px;
}

.color-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.color-swatch {
  border-radius: 12px;
  overflow: hidden;
}

.color-swatch--outline { border: 1px solid var(--border); }

.swatch-copy {
  width: 100%;
  border: none;
  background: transparent;
  padding: 22px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.swatch-hex {
  font-family: "Falco Black", sans-serif;
  font-size: 18px;
  color: #fff;
}

.swatch-hex--dark { color: var(--ink); }

.swatch-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
}

.swatch-meta--dark { color: var(--grey); }

.type-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
}

.type-card img { width: 100%; }

.type-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  font-weight: 700;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-inner .brand-mark { color: var(--white); font-size: 18px; }
.footer-tagline { color: rgba(255,255,255,0.6); font-size: 13px; margin: 4px 0 0; }

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

.footer-links a:hover { color: var(--white); }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 130px; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-portrait { order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .topics-grid { grid-template-columns: 1fr; }
  .topics-grid .topics-col:first-child,
  .topics-grid .topics-col:last-child { grid-column: 1; }
  .podcast-cover-wrap { grid-template-columns: 1fr; }
  .brand-columns { grid-template-columns: 1fr; }
  .site-nav { display: none; }
}
