/* =====================================================
   CASEY BELLEW — caseybellew.com
   Modern editorial. Bold sans-first. Photo-driven.
   White paper. Fitchburg green. Gold.
   ===================================================== */

:root {
  /* Palette — monochrome black & gray (no blue in the theme; logo is the only color) */
  --bg:        #FFFFFF;             /* page background */
  --bg-2:      #F5F5F5;             /* light gray wash */
  --bg-3:      #EBEBEB;             /* deeper gray wash */
  --paper:     #FFFFFF;             /* card surfaces */
  --green:     #0A0A0A;             /* primary near-black (variable name kept for legacy) */
  --green-2:   #000000;             /* pure black hover */
  --green-3:   #3A3A3A;             /* mid-dark gray for borders on dark */
  --green-dark:#050505;             /* deepest dark sections */
  --gold:      #6E6E6E;             /* medium gray accent (was royal blue) */
  --gold-2:    #4A4A4A;             /* darker gray hover */
  --gold-bright:#DDDDDD;            /* light gray for highlights / dots on dark (high contrast) */
  --text:      #1A1A1A;
  --text-2:    #4A4A4A;
  --text-3:    #7A7A7A;
  --line:      rgba(0, 0, 0, 0.10);
  --line-2:    rgba(0, 0, 0, 0.18);

  /* Type */
  --sans:    'Inter', system-ui, -apple-system, sans-serif;
  --display: 'Inter Tight', 'Inter', system-ui, sans-serif;
  --serif:   'Playfair Display', Georgia, serif;
  --cond:    'Oswald', 'Inter', sans-serif;

  /* Layout */
  --max: 1240px;
  --pad: clamp(20px, 4vw, 64px);
  --radius: 4px;
  --radius-lg: 10px;
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
}

/* ==================== TYPOGRAPHY ==================== */

.display {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--green);
  margin: 0 0 28px;
}
.display em,
.display .accent {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.005em;
  color: var(--text-3);
}
.display--lg {
  font-size: clamp(48px, 7.5vw, 96px);
  letter-spacing: -0.035em;
}
.display--xs {
  font-size: clamp(20px, 1.6vw, 26px);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0 0 12px;
}
.display--center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--cond);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
  margin-bottom: 22px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--gold);
}
.eyebrow--light {
  color: var(--gold-bright);
  border-bottom-color: var(--gold);
}

.lede {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--text-2);
  max-width: 720px;
  margin: 0 0 32px;
}
.lede--center { margin-left: auto; margin-right: auto; text-align: center; }
.lede--light { color: rgba(255,255,255,0.82); }

p { color: var(--text-2); }
strong { color: var(--green); font-weight: 600; }

/* ==================== BUTTONS ==================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: all .25s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}
.btn--accent {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn--accent:hover {
  background: var(--green-2);
  border-color: var(--green-2);
  transform: translateY(-1px);
}
.btn--gold {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
  color: #fff;
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--green);
  border-color: var(--line-2);
}
.btn--ghost:hover {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}
.btn--ghost.btn--on-dark {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost.btn--on-dark:hover {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}
.btn--block { width: 100%; }

/* ==================== NAV ==================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease-out);
}
/* Subtle shadow once user scrolls past the top */
.nav.is-scrolled {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav__logo-mark {
  height: 64px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
@media (max-width: 920px) {
  .nav__logo-mark { height: 52px; }
}
.nav__logo-name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav__logo-first {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--green);
  line-height: 1.1;
}
.nav__logo-sub {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.01em;
  color: var(--gold-2);
  margin-top: 2px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__links a {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0;
  color: var(--text);
  font-weight: 500;
  transition: color .2s;
  position: relative;
}
.nav__links a:not(.nav__cta) { padding: 4px 2px; }
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 2px; right: 2px;
  bottom: -2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease-out);
}
.nav__links a:not(.nav__cta):hover { color: var(--green); }
.nav__links a:not(.nav__cta):hover::after { transform: scaleX(1); }
.nav__cta {
  background: var(--green);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1.5px solid var(--green);
  transition: background .2s var(--ease-out), border-color .2s var(--ease-out);
}
.nav__cta:hover {
  background: #fff;
  color: var(--green) !important;
  border-color: var(--green);
}
.nav__cta::after { display: none !important; }
.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--green);
  transition: transform .3s, opacity .3s;
}

@media (max-width: 920px) {
  .nav__toggle { display: flex; }
  .nav__logo-sub { display: none; }
  .nav__links {
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--bg);
    flex-direction: column;
    gap: 22px;
    padding: 40px var(--pad);
    transform: translateX(100%);
    transition: transform .35s var(--ease-out);
  }
  .nav__links a { font-size: 18px; color: var(--green); }
  .nav.is-open .nav__links { transform: translateX(0); }
  .nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ==================== HERO — full bleed photo ==================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  max-height: 980px;
  overflow: hidden;
  color: #fff;
  background: var(--green-dark);
}
.hero__photo { position: absolute; inset: 0; z-index: 0; }
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.05) contrast(1.02);
  animation: kenBurns 20s var(--ease-out) infinite alternate;
}
@keyframes kenBurns {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.06) translate(-1%, -1%); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(10,10,10,0.55) 0%,
      rgba(10,10,10,0.30) 18%,
      rgba(10,10,10,0.18) 35%,
      rgba(10,10,10,0.20) 55%,
      rgba(10,10,10,0.55) 75%,
      rgba(10,10,10,0.96) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 110px var(--pad) 60px;
  height: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(181,181,181,0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(181,181,181,0); }
  100% { box-shadow: 0 0 0 0 rgba(181,181,181,0); }
}

.hero__bottom {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.hero__name-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.hero__name {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(38px, 6.5vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 0;
  color: #fff;
}
.hero__name span { display: block; }
.hero__seven-mark {
  height: clamp(64px, 8vw, 110px);
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.95;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.5));
}

.hero__pitch {
  font-family: var(--sans);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.5;
  font-weight: 500;
  color: #fff;
  margin: 0 0 4px;
  max-width: 700px;
}
.hero__meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--cond);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
  flex-wrap: wrap;
}
.hero__divider {
  width: 30px;
  height: 1px;
  background: rgba(255,255,255,0.5);
}
.hero__school { color: var(--gold-bright); }
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero .btn--accent {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
  font-weight: 700;
}
.hero .btn--accent:hover {
  background: #fff;
  color: var(--green-dark);
  border-color: #fff;
}
.hero .btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.hero .btn--ghost:hover {
  background: #fff;
  color: var(--green-dark);
  border-color: #fff;
}

@media (max-width: 760px) {
  .hero { height: auto; min-height: 100svh; max-height: none; }
  .hero__inner { min-height: 100svh; height: auto; padding-top: 90px; padding-bottom: 36px; }
  .hero__name-row { gap: 10px; }
  .hero__seven-mark { height: 48px; }
  .hero__name { font-size: 36px; line-height: 0.9; }
  .hero__pitch { font-size: 15px; line-height: 1.45; }
  .hero__meta-row { font-size: 11px; gap: 10px; letter-spacing: 0.14em; }
  .hero__divider { width: 18px; }
  .hero__ctas { gap: 10px; }
}

/* ==================== CREDENTIAL STRIP ==================== */

.credstrip {
  background: var(--green);   /* near-black */
  color: #fff;
  border-bottom: 1px solid var(--green-2);
}
.credstrip__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--pad);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 36px;
  font-family: var(--cond);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
}
.credstrip__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.credstrip__item--credential { color: rgba(255,255,255,0.78); }
.credstrip__item--quest { color: #fff; font-weight: 600; }
.credstrip__dot {
  width: 8px; height: 8px;
  background: var(--gold-bright);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(181,181,181,0.5);
  animation: pulse 2.2s infinite;
}
@media (max-width: 760px) {
  .credstrip__inner {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px var(--pad);
    font-size: 11.5px;
    letter-spacing: 0.18em;
  }
}

/* ==================== STAT TICKER ==================== */

.ticker {
  background: var(--green);
  color: #fff;
  border-bottom: 1px solid var(--green-2);
}
.ticker__row {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
}
.ticker__item {
  padding: 22px 20px;
  border-right: 1px solid rgba(255,255,255,0.10);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ticker__item:last-child { border-right: 0; }
.ticker__item .k {
  font-family: var(--cond);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 500;
}
.ticker__item .v {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1;
}

@media (max-width: 980px) {
  .ticker__row { grid-template-columns: repeat(4, 1fr); }
  .ticker__item { border-bottom: 1px solid rgba(255,255,255,0.10); }
  .ticker__item:nth-child(4n) { border-right: 0; }
}
@media (max-width: 560px) {
  .ticker__row { grid-template-columns: repeat(2, 1fr); }
  .ticker__item { padding: 16px 16px; }
  .ticker__item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.10); }
  .ticker__item:nth-child(2n)  { border-right: 0; }
}

/* ==================== ABOUT ==================== */

.about { padding: 130px 0; background: var(--bg); }
.about__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: start;
}
.about__copy h2 { max-width: 720px; }
.about__copy p {
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 18px;
  color: var(--text-2);
}
.about__copy p:last-child { margin-bottom: 0; }

.about__rail { position: sticky; top: 100px; }
.about__photo {
  background: var(--paper);
  padding: 10px;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
  margin-bottom: 28px;
  border: 1px solid var(--line);
}
.about__photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
}
/* Standalone featured "available" card — sits above the facts list */
.about__feature {
  background: #000000;
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin-bottom: 16px;
}
.about__feature-k {
  font-family: var(--cond);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}
.about__feature-v {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 8px;
}
.about__feature-sub {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.88);
}

.about__facts {
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  padding: 4px 26px;
  border: 1px solid var(--line);
}
.about__fact {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.about__fact:last-child { border-bottom: 0; }
.about__fact .k {
  display: block;
  font-family: var(--cond);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 4px;
  font-weight: 600;
}
.about__fact .v {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--green);
  line-height: 1.3;
}
.about__fact .sub {
  display: block;
  font-size: 13.5px;
  color: var(--text-2);
  margin-top: 2px;
}

@media (max-width: 980px) {
  .about { padding: 80px 0; }
  .about__grid { grid-template-columns: 1fr; gap: 50px; }
  .about__rail { position: static; max-width: 480px; }
}

/* ==================== FULL-BLEED PHOTO BREAK ==================== */

.break {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: var(--green-dark);
}
.break__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.break__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.05) contrast(1.05) brightness(0.85);
}
.break__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(10,10,10,0.45) 0%,
      rgba(10,10,10,0.15) 30%,
      rgba(10,10,10,0.55) 70%,
      rgba(10,10,10,0.95) 100%);
  pointer-events: none;
}
.break__content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 90px var(--pad) 70px;
  width: 100%;
}
.break__eyebrow {
  display: inline-block;
  font-family: var(--cond);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 8px;
  margin-bottom: 22px;
  font-weight: 600;
}
.break .display { color: #fff; max-width: 800px; }
.break .display em { color: var(--gold-bright); }

@media (max-width: 760px) {
  .break { min-height: 60vh; }
  .break__content { padding: 80px var(--pad); }
}

/* ==================== PHILOSOPHY ==================== */

.philosophy {
  padding: 130px 0;
  background: var(--bg-2);
  text-align: center;
}
.philosophy .lede { margin-bottom: 70px; }
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: left;
}
.pillar {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all .3s var(--ease-out);
  position: relative;
  border: 1px solid var(--line);
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
  border-color: var(--gold);
}
.pillar__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--gold-2);
  margin-bottom: 22px;
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 1.5px solid var(--gold);
}
.pillar h3 { margin-bottom: 12px; }
.pillar p { font-size: 15px; line-height: 1.6; margin: 0; }

@media (max-width: 1080px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pillars { grid-template-columns: 1fr; } .philosophy { padding: 80px 0; } }

/* ==================== LESSONS ==================== */

.lessons { padding: 130px 0; background: var(--bg); }
.lessons__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 30px;
  flex-wrap: wrap;
}
.lessons__head .display { margin-bottom: 0; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service {
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all .3s var(--ease-out);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.service::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.service:hover::before { transform: scaleX(1); }
.service:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
  background: var(--paper);
}
.service__num {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-2);
}
.service h3 { margin: 0; }
.service p { font-size: 14.5px; margin: 0; line-height: 1.6; }
.service ul {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.service ul li {
  font-size: 13.5px;
  color: var(--text-2);
  padding-left: 22px;
  position: relative;
}
.service ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 1.5px;
  background: var(--gold);
}
.service__link {
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  transition: color .2s;
}
.service__link:hover { color: var(--gold-2); }

@media (max-width: 1080px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .service-grid { grid-template-columns: 1fr; } .lessons { padding: 80px 0; } }

/* ==================== COACHING (full-bleed photo bg) ==================== */

.coaching {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  color: #fff;
  background: var(--green);
}
.coaching__bg { position: absolute; inset: 0; z-index: 0; }
.coaching__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.85) brightness(0.55) contrast(1.05);
}
.coaching__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10,10,10,0.96) 0%, rgba(10,10,10,0.78) 50%, rgba(10,10,10,0.40) 100%);
}
.coaching__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
}
.coaching__h { color: #fff; max-width: 700px; }
.coaching__h em { color: var(--gold-bright); }

.timeline {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 760px;
}
.timeline__item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.timeline__item:last-child { border-bottom: 0; }
.timeline__year {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--gold-bright);
  font-weight: 700;
  line-height: 1.25;
  padding-top: 4px;
  text-transform: uppercase;
}
.timeline__body h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.25;
}
.timeline__body p {
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  color: rgba(255,255,255,0.78);
}
/* On dark sections, the global `strong { color: var(--green) }` rule
   turns text invisible — force light strongs inside the coaching section
   and any other dark contexts. */
.coaching strong,
.coaching__inner strong,
.break strong,
.hero strong,
.credstrip strong,
.curriculum strong { color: #fff; font-weight: 700; }

@media (max-width: 760px) {
  .coaching { padding: 80px 0; }
  .timeline__item { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
}

/* Daily curriculum block — what Casey ran each morning at Vikings Summer Clinic */
.curriculum {
  margin-top: 70px;
  padding-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.15);
  max-width: none;
}
.curriculum__head {
  max-width: 760px;
  margin-bottom: 36px;
}
.curriculum__eyebrow {
  display: inline-block;
  font-family: var(--cond);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 600;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 6px;
  margin-bottom: 18px;
}
.curriculum__h {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 16px;
}
.curriculum__lede {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0;
}
.curriculum__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.curriculum__item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 22px 20px 20px;
  transition: all .25s var(--ease-out);
}
.curriculum__item:hover {
  background: rgba(110,110,110,0.10);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.curriculum__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold-bright);
  margin-bottom: 12px;
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1.5px solid rgba(110,110,110,0.5);
}
.curriculum__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.2;
}
.curriculum__item p {
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
  margin: 0;
}
.curriculum__cite {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  margin: 0;
  font-style: italic;
  max-width: 760px;
}

@media (max-width: 1080px) {
  .curriculum__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .curriculum__grid { grid-template-columns: 1fr; }
}

/* ==================== PULL QUOTE ==================== */

.pull { padding: 110px 0; background: var(--bg-2); }
.pull__quote {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 0 30px;
}
.pull__quote::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 36px;
}
.pull__quote p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.35;
  color: var(--green);
  margin: 0 0 24px;
  letter-spacing: -0.005em;
}
.pull__quote cite {
  display: block;
  font-family: var(--cond);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-3);
  font-style: normal;
  font-weight: 500;
}

@media (max-width: 560px) { .pull { padding: 80px 0; } }

/* ==================== FILM ==================== */

.film {
  padding: 130px 0;
  background: var(--green-dark);
  color: #fff;
}
.film .display em { color: var(--gold-bright); }
.film__head { max-width: 760px; margin-bottom: 50px; }
.film__embed {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  border: 1px solid var(--green-3);
}
.film__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* YouTube channel callout */
.film__channel {
  margin-top: 32px;
  background: var(--green);
  border: 1px solid var(--green-3);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}
.film__channel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  background: var(--gold);
  color: var(--green-dark);
  border-radius: 16px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.film__channel-text { min-width: 0; }
.film__channel-eyebrow {
  font-family: var(--cond);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--gold-bright);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
}
.film__channel-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  line-height: 1.2;
}
.film__channel-url {
  font-family: 'Inter', monospace;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  word-break: break-all;
}
.film__channel-url a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .2s;
}
.film__channel-url a:hover { color: #fff; }
.film__channel-cta { flex-shrink: 0; }

@media (max-width: 760px) {
  .film { padding: 80px 0; }
  .film__channel {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: left;
    padding: 24px 22px;
  }
  .film__channel-cta { width: 100%; }
  .film__channel-cta .btn { width: 100%; }
}

/* ==================== TOOLKIT ==================== */

.tech { padding: 130px 0; background: var(--bg); text-align: center; }
.tech__head { max-width: 760px; margin: 0 auto 60px; }
.tech__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tech__item {
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  padding: 36px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), background .3s var(--ease-out);
  border: 1px solid var(--line);
}
.tech__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
  background: var(--paper);
  border-color: var(--gold);
}
.tech__item strong {
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--green);
  line-height: 1.1;
}
.tech__item span {
  font-family: var(--cond);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold-2);
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 880px) {
  .tech { padding: 80px 0; }
  .tech__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) { .tech__grid { grid-template-columns: 1fr; } }

/* ==================== FOR COACHES ==================== */

.coaches { padding: 130px 0; background: var(--bg-2); }
.coaches__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.coaches__copy p {
  font-size: 16.5px;
  line-height: 1.7;
  margin: 0 0 16px;
}
.coaches__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.coaches__card {
  background: var(--green);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}
.coaches__card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--gold);
}
.coaches__card-eyebrow {
  font-family: var(--cond);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--gold-bright);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 26px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid rgba(110,110,110,0.4);
}
.coaches__card ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.coaches__card li {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  padding-left: 28px;
  position: relative;
  line-height: 1.55;
}
.coaches__card li span {
  font-weight: 600;
  color: #fff;
}
.coaches__card li::before {
  content: "→";
  position: absolute;
  left: 0; top: 0;
  color: var(--gold-bright);
  font-weight: 700;
}

@media (max-width: 880px) {
  .coaches { padding: 80px 0; }
  .coaches__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ==================== TESTIMONIALS ==================== */

.quotes { padding: 130px 0; background: var(--bg); }
.quotes__head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.quotes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quotes blockquote {
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin: 0;
  position: relative;
  border: 1px solid var(--line);
}
.quotes blockquote::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}
.quotes blockquote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--green);
  margin: 0 0 20px;
}
.quotes blockquote cite {
  display: block;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--green);
  font-style: normal;
  font-weight: 700;
}
.quotes blockquote cite span {
  display: block;
  color: var(--text-3);
  font-weight: 400;
  font-family: var(--cond);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 4px;
}
.quotes__note {
  margin-top: 40px;
  text-align: center;
  font-family: var(--cond);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--text-3);
  text-transform: uppercase;
}

@media (max-width: 1080px) { .quotes__grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .quotes { padding: 80px 0; } }

/* ==================== CONTACT ==================== */

.contact { padding: 130px 0 100px; background: var(--bg-2); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.contact__copy p {
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 36px;
}
.contact__direct {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact__direct a, .contact__direct > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 22px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  transition: all .25s;
  border: 1px solid var(--line);
}
.contact__direct a:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  transform: translateY(-2px);
}
.contact__direct a:hover .k { color: var(--gold-bright); }
.contact__direct .k {
  font-family: var(--cond);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--gold-2);
  text-transform: uppercase;
  font-weight: 600;
}
.contact__direct .v {
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.005em;
}

/* Right-column CTA card (replaces the old contact form) */
.contact__cta-card {
  background: var(--green);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 40px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact__cta-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: #fff;
}
.contact__cta-eyebrow {
  font-family: var(--cond);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--gold-bright);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid rgba(255,255,255,0.2);
  display: inline-block;
}
.contact__cta-h {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.05;
}
.contact__cta-p {
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin: 0 0 28px;
}
.contact__cta-btn {
  background: #fff !important;
  color: var(--green) !important;
  border-color: #fff !important;
  font-size: 15px;
  padding: 17px 32px;
}
.contact__cta-btn:hover {
  background: var(--gold-bright) !important;
  border-color: var(--gold-bright) !important;
  color: var(--green) !important;
}
.contact__cta-foot {
  margin: 22px 0 0;
  font-family: var(--sans);
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
}
.contact__cta-foot a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

@media (max-width: 880px) {
  .contact { padding: 80px 0; }
  .contact__grid { grid-template-columns: 1fr; gap: 50px; }
  .contact__form { padding: 30px 24px; }
}

/* ==================== FOOTER ==================== */

.footer { background: var(--green-dark); color: #fff; padding: 60px 0 36px; }
.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer__mark {
  height: 72px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.footer__name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: #fff;
}
.footer__sub {
  font-family: var(--cond);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-top: 2px;
}
.footer__links {
  display: flex;
  gap: 26px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer__links a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.90);
  transition: color .2s;
}
.footer__links a:hover { color: var(--gold-bright); }
.footer__social {
  display: flex;
  gap: 18px;
}
.footer__social a {
  font-family: var(--cond);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  font-weight: 500;
  transition: color .2s;
}
.footer__social a:hover { color: var(--gold-bright); }
.footer__copy {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.70);
  font-family: var(--cond);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 26px;
  margin-top: 16px;
}

@media (max-width: 880px) {
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__brand { justify-content: center; }
  .footer__brand { flex-direction: column; gap: 8px; }
}

/* ==================== SCROLL REVEAL ==================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==================== IMAGE FALLBACKS ==================== */

.img-missing {
  position: relative;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
}
.img-missing__label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  font-family: var(--cond);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--text-3);
  text-transform: uppercase;
  pointer-events: none;
  z-index: 1;
  padding: 20px;
}
.img-missing__label span { color: var(--gold-2); margin-bottom: 6px; }

/* ==================== SEVEN BASEBALL — Linking Banner ==================== */
.seven {
  position: relative;
  background: #0A0A0A;
  color: #fff;
  padding: clamp(72px, 9vw, 130px) 0 clamp(64px, 8vw, 110px);
  overflow: hidden;
  isolation: isolate;
}
.seven::before {
  /* subtle radial halo behind the mark */
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 80%;
  background: radial-gradient(ellipse at center,
    rgba(255,255,255,0.06) 0%,
    rgba(255,255,255,0) 60%);
  pointer-events: none;
  z-index: 0;
}
.seven::after {
  /* hairline top + bottom edge */
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
  z-index: 0;
}
.seven__grain {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(0deg,  rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}
.seven__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Brand lockup */
.seven__brand {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 22px);
}
.seven__mark {
  width: clamp(54px, 6.4vw, 78px);
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.6));
}
.seven__wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 0.95;
}
.seven__seven {
  font-family: var(--cond);
  font-weight: 700;
  font-size: clamp(40px, 5.6vw, 72px);
  letter-spacing: 0.06em;
  color: #fff;
}
.seven__sub {
  font-family: var(--cond);
  font-weight: 500;
  font-size: clamp(14px, 1.4vw, 18px);
  letter-spacing: 0.42em;
  color: rgba(255,255,255,0.72);
  margin-top: 4px;
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.18);
  width: 100%;
}

/* Divider */
.seven__divider {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
  margin: clamp(22px, 3vw, 32px) 0 clamp(18px, 2.4vw, 26px);
}

/* Tagline */
.seven__tag {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(10px, 1.6vw, 22px);
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(22px, 3.4vw, 38px);
  letter-spacing: -0.01em;
  line-height: 1;
  color: #fff;
}
.seven__tag span { display: inline-block; }
.seven__tag-accent {
  color: #2B6CFF;        /* SEVEN brand blue */
  position: relative;
}
.seven__tag-accent::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #2B6CFF;
  margin-top: 6px;
  border-radius: 2px;
}

.seven__lede {
  max-width: 580px;
  margin: clamp(18px, 2.4vw, 26px) auto 0;
  color: rgba(255,255,255,0.74);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.55;
}

/* Links grid */
.seven__links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  margin: clamp(34px, 4.4vw, 56px) 0 clamp(28px, 3.6vw, 40px);
}
.seven__link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  color: #fff;
  text-decoration: none;
  text-align: left;
  transition: transform 220ms var(--ease-out),
              background 220ms var(--ease-out),
              border-color 220ms var(--ease-out);
  overflow: hidden;
}
.seven__link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0));
  opacity: 0;
  transition: opacity 220ms var(--ease-out);
  pointer-events: none;
}
.seven__link:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.28);
}
.seven__link:hover::before { opacity: 1; }
.seven__icon {
  width: 22px;
  height: 22px;
  color: rgba(255,255,255,0.85);
  transition: color 220ms var(--ease-out), transform 220ms var(--ease-out);
}
.seven__link:hover .seven__icon {
  color: #fff;
  transform: translateX(2px);
}
.seven__link-k {
  font-family: var(--cond);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.seven__link-v {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  letter-spacing: -0.005em;
}
.seven__link--accent {
  background: #2B6CFF;
  border-color: #2B6CFF;
}
.seven__link--accent .seven__icon,
.seven__link--accent .seven__link-k {
  color: rgba(255,255,255,0.9);
}
.seven__link--accent:hover {
  background: #1f59e0;
  border-color: #1f59e0;
}

/* Footer line */
.seven__foot {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--cond);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.32em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.seven__foot-sep {
  color: rgba(255,255,255,0.25);
}

/* Tablet */
@media (max-width: 960px) {
  .seven__links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
/* Phone */
@media (max-width: 560px) {
  .seven__brand { flex-direction: column; gap: 12px; }
  .seven__wordmark { align-items: center; }
  .seven__sub { text-align: center; }
  .seven__links { grid-template-columns: 1fr; }
  .seven__foot { flex-direction: column; gap: 6px; }
  .seven__foot-sep { display: none; }
}

/* =====================================================
   CAREER — Boston business + LinkedIn-style résumé
   ===================================================== */

.career {
  padding: 130px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

/* Head: title + open-to-work card */
.career__head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}
.career__head-copy h2 { margin-bottom: 22px; }
.career__head-copy .lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-2);
  margin: 0;
  max-width: 640px;
}

/* LinkedIn-style headline tagline */
.career__headline {
  font-family: var(--display);
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg-2);
  border-left: 3px solid var(--green);
  padding: 14px 18px;
  margin: 0 0 26px;
  max-width: 640px;
  letter-spacing: 0.005em;
}

/* LinkedIn-style summary — multi-paragraph About */
.career__summary {
  max-width: 640px;
}
.career__summary p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 16px;
}
.career__summary p:last-child { margin-bottom: 0; }
.career__summary-close {
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px !important;
  color: var(--text) !important;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  margin-top: 20px !important;
}

.career__open {
  background: var(--green);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  position: relative;
  overflow: hidden;
}
.career__open::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--gold);
}
/* LinkedIn-style profile chip at top of open-to-work card */
.career__open-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.career__open-photo {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 30%;
  border: 2px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
  background: var(--green-2);
}
.career__open-id {
  min-width: 0;
}
.career__open-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 4px;
}
.career__open-role {
  font-size: 12.5px;
  color: rgba(255,255,255,0.78);
  line-height: 1.4;
  margin-bottom: 3px;
}
.career__open-loc {
  font-family: var(--cond);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 600;
  margin-bottom: 8px;
}
.career__open-li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--display);
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 4px 10px;
  border-radius: 4px;
  transition: background 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}
.career__open-li:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.32);
}
.career__open-li-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.career__open-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-family: var(--cond);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.career__open-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74,222,128,0.18);
  animation: careerPulse 2s ease-in-out infinite;
}
@keyframes careerPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.7; transform: scale(0.9); }
}
.career__open-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
  margin: 0 0 26px;
}
.career__open-meta > div {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 12px;
}
.career__open-meta dt {
  font-family: var(--cond);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 600;
  margin-bottom: 4px;
}
.career__open-meta dd {
  margin: 0;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

/* Target roles */
.career__roles {
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  padding: 36px 36px 30px;
  margin-bottom: 80px;
  border: 1px solid var(--line);
}
.career__roles-eyebrow {
  font-family: var(--cond);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 600;
  margin-bottom: 18px;
}
.career__role-chips {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.career__role-chips li {
  background: #fff;
  border: 1px solid var(--line-2);
  color: var(--text);
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 999px;
  letter-spacing: 0.005em;
  transition: transform 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}
.career__role-chips li:hover {
  transform: translateY(-1px);
  border-color: var(--green);
}
.career__roles-foot {
  margin: 0;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
}

/* Experience timeline */
.career__exp {
  margin-bottom: 80px;
}
.career__exp-head {
  margin-bottom: 36px;
}
.career__exp-head .display { margin: 6px 0 0; }

.exp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.exp {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 36px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.exp:last-child { border-bottom: 1px solid var(--line); }
.exp__dates {
  font-family: var(--cond);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 600;
  padding-top: 6px;
}
.exp__title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.exp__org {
  font-size: 14.5px;
  color: var(--text-2);
  font-weight: 500;
  margin-bottom: 14px;
}
.exp__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.exp__bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}
.exp__bullets li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--text-3);
  font-weight: 600;
}

/* Education + Skills */
.career__edu-skills {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
.career__edu .eyebrow,
.career__skills .eyebrow { margin-bottom: 22px; }

.edu-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.edu {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.edu:first-child { border-top: 0; padding-top: 0; }
.edu__school {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.edu__deg {
  font-size: 14.5px;
  color: var(--text-2);
  font-weight: 500;
  margin-bottom: 6px;
}
.edu__sub {
  font-size: 13.5px;
  color: var(--text-3);
  line-height: 1.55;
}

.skill-group {
  margin-bottom: 26px;
}
.skill-group:last-child { margin-bottom: 0; }
.skill-group__h {
  font-family: var(--cond);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 12px;
}
.skill-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.skill-tags li {
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 4px;
  letter-spacing: 0.005em;
}

/* Career — responsive */
@media (max-width: 1080px) {
  .career__head { grid-template-columns: 1fr; gap: 40px; }
  .career__edu-skills { grid-template-columns: 1fr; gap: 50px; }
}
@media (max-width: 720px) {
  .career { padding: 80px 0; }
  .career__head { margin-bottom: 50px; }
  .career__roles { padding: 28px 22px 24px; margin-bottom: 50px; }
  .career__exp { margin-bottom: 50px; }
  .exp {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 26px 0;
  }
  .exp__dates { padding-top: 0; }
  .exp__title { font-size: 19px; }
  .career__open { padding: 26px 22px; }
  .career__open-meta { grid-template-columns: 1fr 1fr; gap: 14px 18px; }
}

/* ============================================================
   GOOGLE AI CERTIFICATE SECTION
   ============================================================ */
.ai {
  padding: 130px 0;
  background:
    radial-gradient(1100px 600px at 12% -10%, rgba(0,0,0,0.06), transparent 60%),
    radial-gradient(900px 500px at 100% 110%, rgba(0,0,0,0.05), transparent 60%),
    var(--bg-2);
  position: relative;
}
.ai__head {
  max-width: 920px;
  margin: 0 auto 70px;
  text-align: center;
}
.ai__eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 18px;
}
.ai__head .lede {
  margin-top: 22px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-2);
}
.ai__grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 50px;
  align-items: start;
}

/* Credential card */
.ai__card {
  background: #0A0A0A;
  color: #fff;
  border-radius: 6px;
  padding: 34px 30px 30px;
  position: sticky;
  top: 100px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.4);
}
.ai__card-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: #0A0A0A;
}
.ai__card-mark svg {
  width: 30px;
  height: 30px;
}
.ai__card-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.ai__card-h {
  font-family: 'Inter Tight', sans-serif;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  color: #fff;
}
.ai__card-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 26px;
}
.ai__card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.18);
  animation: aiDot 2.2s ease-in-out infinite;
}
@keyframes aiDot {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.ai__card-meta {
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
}
.ai__card-meta > div { display: block; }
.ai__card-meta dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.ai__card-meta dd {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
}

/* Pillar grid */
.ai__pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.ai__pillar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px 26px 26px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.ai__pillar:hover {
  border-color: var(--line-2);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -24px rgba(0,0,0,0.18);
}
.ai__pillar-num {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--text-3);
  margin-bottom: 12px;
}
.ai__pillar h3 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.005em;
  margin: 0 0 10px;
  color: var(--text);
}
.ai__pillar p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-2);
}

.ai__foot {
  margin: 56px auto 0;
  max-width: 820px;
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-2);
  font-style: italic;
}

/* Certification badge inside Education list */
.eyebrow--spaced { margin-top: 44px; }
.edu--cert .edu__school {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.edu__badge {
  display: inline-flex;
  align-items: center;
  background: #0A0A0A;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}

/* AI section — responsive */
@media (max-width: 1080px) {
  .ai__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .ai__card {
    position: static;
  }
}
@media (max-width: 720px) {
  .ai { padding: 80px 0; }
  .ai__head { margin-bottom: 44px; }
  .ai__head .lede { font-size: 16.5px; }
  .ai__pillars {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .ai__pillar { padding: 24px 22px; }
  .ai__card { padding: 28px 24px 26px; }
  .ai__card-h { font-size: 21px; }
  .ai__foot { margin-top: 40px; font-size: 15px; }
}
