/* Jacey Cadet — personal site
   Rebuilt from the Squarespace original for static hosting on Railway. */

:root {
  --blue: #00AEEF;
  --teal: #2F4544;
  --teal-dark: #253837;
  --yellow: #F9D923;
  --ink: #1F2526;
  --ink-soft: rgba(31, 37, 38, 0.75);
  --gray-heading: #58595B;
  --white: #ffffff;
  --max: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Roboto Slab', Georgia, 'Times New Roman', serif;
  font-weight: 300;
  color: var(--ink-soft);
  background: var(--white);
  line-height: 1.7;
}

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

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

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

h1, h2, h3 {
  font-weight: 300;
  color: var(--gray-heading);
  margin: 0 0 20px;
}

h2 { font-size: 28px; }
h3 { font-size: 22px; }

.btn {
  display: inline-block;
  font-family: 'Raleway', Helvetica, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 12px;
  padding: 16px 34px;
  border-radius: 2px;
  background: var(--blue);
  color: var(--white) !important;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}
.btn:hover { background: #0090c9; transform: translateY(-1px); }

/* ---------- Header ---------- */
.site-header {
  background: var(--blue);
  padding: 22px 0;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .logo img { height: 34px; width: auto; }
.site-header nav a {
  font-family: 'Raleway', Helvetica, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255,255,255,0.9);
}
.site-header nav a:hover { color: #fff; text-decoration: none; }

/* ---------- Hero ---------- */
.hero img { width: 100%; height: auto; }

/* ---------- Section banners (brand diamond graphics + title) ---------- */
.section-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 2500 / 1050;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.section-banner.yellow { background-image: url('../img/brand-19.png'); }
.section-banner.green  { background-image: url('../img/brand-20.png'); }
.section-banner.pink   { background-image: url('../img/brand-21.png'); }
.section-banner span {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 300;
  font-size: 48px;
  letter-spacing: 20px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  padding: 0 24px;
}
@media (max-width: 860px) {
  .section-banner span { font-size: 30px; letter-spacing: 10px; }
}
@media (max-width: 520px) {
  .section-banner { aspect-ratio: 2500 / 1500; }
  .section-banner span { font-size: 20px; letter-spacing: 6px; }
}

/* ---------- About ---------- */
.about { padding: 80px 0 60px; }
.about .intro-graphic { max-width: 420px; margin-bottom: 10px; }
.about-continued { padding: 60px 0 60px; }
.tagline {
  font-size: 20px;
  color: var(--gray-heading);
  font-weight: 300;
  margin: 6px 0 50px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-grid p { margin: 0 0 20px; font-size: 18px; }
.about-photo { border-radius: 4px; overflow: hidden; }

.traits {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.traits li {
  font-size: 18px;
  padding-left: 28px;
  position: relative;
}
.traits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  background: var(--blue);
  border-radius: 50%;
}

.long-bio { margin-top: 40px; }
.long-bio p { font-size: 18px; margin: 0 0 20px; }

/* ---------- Favorite orgs ---------- */
.favorites { padding: 20px 0 70px; text-align: center; }
.favorites h3 { margin-bottom: 40px; }
.org-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  align-items: center;
}
.org-grid a { display: flex; align-items: center; justify-content: center; }
.org-grid img {
  max-height: 105px;
  width: auto;
  margin: 0 auto;
  filter: grayscale(15%);
  opacity: 0.9;
  transition: opacity 0.2s ease;
}
.org-grid img:hover { opacity: 1; }

/* ---------- Philosophy ---------- */
.philosophy {
  background: #fff;
  padding: 80px 0;
}
.philosophy h2 { font-size: 40px; font-weight: 100; }
.philosophy .lead { max-width: 640px; margin: 0 0 40px; font-size: 18px; }
.beliefs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.beliefs li {
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-heading);
}

/* ---------- Pitch coaching ---------- */
.coaching { padding: 90px 0; }
.coaching-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.coaching-photo img { border-radius: 4px; }
.coaching h2 { font-size: 30px; }
.coaching .price {
  font-family: 'Raleway', Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-heading);
  margin: 20px 0 26px;
}
.coaching p { font-size: 18px; margin: 0 0 24px; }

/* ---------- Contact ---------- */
.contact {
  background: #faf9f6;
  padding: 90px 0 70px;
  text-align: center;
}
.contact h2 { font-size: 30px; max-width: 560px; margin: 0 auto 10px; }
.contact .lead { margin-bottom: 40px; }
.contact form {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
  display: grid;
  gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 6px; }
.field label {
  font-family: 'Raleway', Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-heading);
}
.field input,
.field textarea {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid #d8d5cd;
  border-radius: 3px;
  background: #fff;
  color: var(--ink);
}
.field textarea { min-height: 130px; resize: vertical; }
.contact .btn { justify-self: start; margin-top: 6px; }
.form-note { font-size: 13px; color: #9a9a9a; margin-top: -6px; }
.form-success {
  display: none;
  max-width: 640px;
  margin: 0 auto;
  padding: 28px;
  background: #eef8ee;
  border: 1px solid #cfe9cf;
  border-radius: 4px;
  font-size: 18px;
  color: #33633a;
}

/* ---------- Footer ---------- */
footer {
  background: var(--blue);
  color: rgba(255,255,255,0.8);
  padding: 40px 0;
  text-align: center;
  font-family: 'Raleway', Helvetica, Arial, sans-serif;
  font-size: 13px;
}
footer .socials { display: flex; justify-content: center; gap: 20px; margin-bottom: 16px; }
footer .socials a { color: rgba(255,255,255,0.85); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; }
footer .email a { color: rgba(255,255,255,0.8); }
footer .backtotop { display: block; margin-top: 16px; }
footer .backtotop, footer .backtotop:hover { color: #fff; }

/* ---------- Blog / Updates ---------- */
.updates { padding: 70px 0 90px; }
.updates .page-title { font-size: 34px; margin-bottom: 50px; }
.post { padding-bottom: 46px; margin-bottom: 46px; border-bottom: 1px solid #e7e4dc; }
.post:last-child { border-bottom: none; }
.post time {
  font-family: 'Raleway', Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 10px;
}
.post h3 { margin-bottom: 18px; font-size: 24px; }
.post p { font-size: 17px; margin: 0 0 18px; }
.post ul { font-size: 17px; padding-left: 22px; margin: 0 0 18px; }
.post em.credit { font-size: 14px; color: #9a9a9a; display:block; margin-bottom: 14px;}
.back-link { display: inline-block; margin-bottom: 30px; font-family: 'Raleway', Helvetica, Arial, sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .about-grid, .coaching-grid { grid-template-columns: 1fr; gap: 34px; }
  .coaching-photo { order: -1; max-width: 320px; }
  .org-grid { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  h2 { font-size: 24px; }
}
@media (max-width: 520px) {
  .org-grid { grid-template-columns: repeat(2, 1fr); }
  .wrap { padding: 0 20px; }
}
