
/* Hanlon Creative Press Phase 1 Website
   Replace images in /assets/images/ using the same filenames, or update image src paths in the HTML files.
*/

:root {
  --hcp-navy: #1f2d3d;
  --hcp-blue: #2f6fb6;
  --hcp-teal: #2ca6a4;
  --hcp-gold: #f4b942;
  --hcp-orange: #e67e22;
  --hcp-red: #c0392b;
  --hcp-cream: #fff8ed;
  --hcp-soft-blue: #eef6ff;
  --hcp-soft-teal: #edfafa;
  --hcp-soft-gold: #fff4d6;
  --hcp-grey-50: #f7f8fa;
  --hcp-grey-100: #eef1f4;
  --hcp-grey-300: #ccd4dd;
  --hcp-grey-700: #475569;
  --hcp-white: #ffffff;
  --hcp-black: #101828;
  --shadow-sm: 0 8px 24px rgba(31, 45, 61, 0.08);
  --shadow-md: 0 16px 42px rgba(31, 45, 61, 0.14);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", "Lato", Arial, sans-serif;
  color: var(--hcp-navy);
  background: var(--hcp-white);
  line-height: 1.6;
}

.highlight {
    color: #2ca6a4; /* Teal */
}

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

a {
  color: var(--hcp-blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  background: var(--hcp-navy);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 999;
}

.skip-link:focus { top: 16px; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hcp-grey-100);
}

.navbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--hcp-navy);
  text-decoration: none;
  min-width: 245px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--hcp-blue), var(--hcp-teal));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: -1px;
  font-family: Montserrat, Arial, sans-serif;
}

.brand-title {
  display: block;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.1;
}

.brand-tagline {
  display: block;
  font-size: 0.78rem;
  color: var(--hcp-grey-700);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--hcp-grey-300);
  background: white;
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--hcp-navy);
}

audio {
  width: 100%;
  margin-top: 10px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu a {
  display: block;
  padding: 10px 11px;
  border-radius: 999px;
  color: var(--hcp-navy);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: var(--hcp-soft-blue);
  color: var(--hcp-blue);
}

.header-cta {
  background: var(--hcp-gold) !important;
  color: var(--hcp-navy) !important;
  box-shadow: var(--shadow-sm);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 66px;
  background:
    radial-gradient(circle at 12% 14%, rgba(244,185,66,0.22), transparent 28%),
    radial-gradient(circle at 88% 15%, rgba(44,166,164,0.18), transparent 26%),
    linear-gradient(180deg, var(--hcp-cream), #ffffff);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--hcp-soft-gold);
  color: #7a5607;
  border: 1px solid #f7d77b;
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 800;
  font-size: 0.84rem;
  margin-bottom: 16px;
}

h1, h2, h3, h4 {
  font-family: Montserrat, Arial, sans-serif;
  line-height: 1.14;
  margin: 0 0 14px;
  color: var(--hcp-navy);
}

h1 {
  font-size: clamp(2.15rem, 5vw, 4.65rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.28rem;
}

.lead {
  font-size: 1.16rem;
  color: var(--hcp-grey-700);
  max-width: 760px;
}

.hero .lead { font-size: 1.24rem; }

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 800;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: var(--hcp-blue);
  color: white;
}

.btn-secondary {
  background: var(--hcp-navy);
  color: white;
}

.btn-thirdly {
  background: var(--hcp-orange);
  color: white;
}

.btn-gold {
  background: var(--hcp-gold);
  color: var(--hcp-navy);
}

.btn-outline {
  background: white;
  color: var(--hcp-blue);
  border-color: var(--hcp-blue);
}

.hero-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--hcp-grey-100);
}

.hero-card img {
  border-radius: 22px;
  background: var(--hcp-soft-blue);
  border: 1px solid var(--hcp-grey-100);
margin-left: auto; margin-right: auto;
}

.hero-note {
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  background: var(--hcp-soft-teal);
  font-weight: 700;
}

.section {
  padding: 72px 0;
}

.section-soft {
  background: var(--hcp-grey-50);
}

.section-cream {
  background: var(--hcp-cream);
}

.section-header {
  max-width: 820px;
  margin-bottom: 34px;
}

.grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: 22px;
}

.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: white;
  border: 1px solid var(--hcp-grey-100);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
margin-left: auto; margin-right: auto;
}

.card-highlight {
  border-top: 6px solid var(--hcp-blue);
}

.card-gold {
  border-top: 6px solid var(--hcp-gold);
}

.card-teal {
  border-top: 6px solid var(--hcp-teal);
}

.card-red {
  border-top: 6px solid var(--hcp-red);
}

.card img.card-img {
  border-radius: 16px;
  margin-bottom: 18px;
  background: var(--hcp-grey-100);
margin-left: auto; margin-right: auto;
}

.kicker {
  color: var(--hcp-blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  margin-bottom: 8px;
}

.feature-list {
  margin: 14px 0 0;
  padding-left: 0;
  list-style: none;
}

.feature-list li {
  margin: 9px 0;
  padding-left: 28px;
  position: relative;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--hcp-teal);
  font-weight: 900;
}

.pathway {
  display: block;
  color: var(--hcp-navy);
  text-decoration: none;
}

.pathway:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.pathway .card {
  height: 100%;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.pathway:hover .card {
  border-color: var(--hcp-blue);
}

.badge {
  display: inline-block;
  border-radius: 999px;
  background: var(--hcp-soft-blue);
  color: var(--hcp-blue);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 6px 10px;
  margin-right: 6px;
  margin-bottom: 8px;
}

.notice {
  border-left: 6px solid var(--hcp-gold);
  background: var(--hcp-soft-gold);
  border-radius: 16px;
  padding: 18px 20px;
  margin: 20px 0;
}

.warning {
  border-left-color: var(--hcp-red);
  background: #fff1f0;
}

.resource-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--hcp-grey-100);
  border-radius: 16px;
  margin-bottom: 12px;
  background: white;
}

.table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--hcp-grey-100);
  background: white;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--hcp-grey-100);
  vertical-align: top;
}

th {
  background: var(--hcp-soft-blue);
  font-weight: 900;
}

tr:last-child td { border-bottom: none; }

.page-title {
  padding: 56px 0;
  background: linear-gradient(135deg, var(--hcp-soft-blue), var(--hcp-cream));
}

.breadcrumb {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--hcp-grey-700);
}

.book-hero {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 32px;
  align-items: start;
}

.book-cover {
  background: white;
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--hcp-grey-100);
}

.book-cover img {
  border-radius: 18px;
  background: var(--hcp-soft-blue);
}

.cta-band {
  background: var(--hcp-navy);
  color: white;
  border-radius: var(--radius-lg);
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
}

.cta-band h2, .cta-band p { color: white; }

.form-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--hcp-grey-100);
}

label {
  display: block;
  font-weight: 800;
  margin-bottom: 6px;
}

input, textarea, select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--hcp-grey-300);
  border-radius: 12px;
  font: inherit;
  margin-bottom: 14px;
}

textarea { min-height: 130px; }

.site-footer {
  background: var(--hcp-navy);
  color: white;
  padding: 48px 0 22px;
}

.site-footer h3, .site-footer h4, .site-footer a, .site-footer p {
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 26px;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-list li { margin-bottom: 8px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.18);
  margin-top: 28px;
  padding-top: 18px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
}

.placeholder-note {
  font-size: 0.88rem;
  color: var(--hcp-grey-700);
  background: var(--hcp-grey-50);
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px dashed var(--hcp-grey-300);
  margin-top: 10px;
}

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }

  .nav-menu {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--hcp-grey-100);
    padding: 12px 22px 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-menu.open { display: flex; }

  .nav-menu a {
    border-radius: 12px;
    padding: 12px;
  }

  .hero-grid,
  .book-hero,
  .cta-band,
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero { padding-top: 46px; }
}

@media (max-width: 620px) {
  .container { padding: 0 16px; }
  .navbar { min-height: 68px; }
  .brand { min-width: 0; }
  .brand-tagline { display: none; }
  .nav-menu { top: 68px; }
  .section { padding: 52px 0; }
  .resource-row { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .button-row { width: 100%; }
  .cta-band { padding: 24px; }
}
