/* ==========================================================================
   The Art of Learned Intelligence — shared stylesheet
   ========================================================================== */

:root {
  /* Palette — navy, hot pink, and gold are the three brand colors and
     should dominate the page. Neutrals are kept to white/near-white so
     tan never competes with the brand palette. */
  --color-ink: #131b37; /* deep navy — headings, primary text */
  --color-ink-soft: #4a5170; /* secondary text, navy-tinted grey */
  --color-navy: #131b37; /* true navy, same as ink — structural color */
  --color-navy-deep: #0b1128; /* footer / dark bands */
  --color-cream: #ffffff; /* page background — clean white, not tan */
  --color-cream-deep: #f3f4f8; /* section band background — pale navy-white, not tan */
  --color-white: #ffffff;
  --color-pink: #e31c79; /* hot pink — primary accent */
  --color-pink-deep: #b5145f; /* hot pink hover / dark accent */
  --color-pink-tint: #fce8f0; /* pale pink wash for small surfaces */
  --color-gold: #c9a227; /* gold — secondary accent */
  --color-gold-deep: #9c7c1b; /* gold hover / dark accent */
  --color-gold-tint: #fbf3dc; /* pale gold wash for small surfaces */
  --color-line: #dadde8; /* hairlines, borders — neutral, not tan */

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:
    "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max-width: 1440px;
  --radius: 4px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--color-ink);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 500;
}
h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}
h3 {
  font-size: 1.35rem;
}
h4 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

p {
  margin: 0 0 1.2em;
  color: var(--color-ink-soft);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-pink-deep);
  margin-bottom: 14px;
}

.lede {
  font-size: 1.2rem;
  color: var(--color-ink-soft);
  max-width: 64ch;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--color-ink);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-navy-deep);
}

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

.btn-gold {
  background: var(--color-gold);
  color: var(--color-white);
}
.btn-gold:hover {
  background: var(--color-gold-deep);
}

.btn-pink {
  background: var(--color-pink);
  color: var(--color-white);
}
.btn-pink:hover {
  background: var(--color-pink-deep);
}

/* ---------- header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-pink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.site-header .wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
  max-width: 1440px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  height: 54px;
  width: auto;
}
.brand-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--color-white);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
}

.main-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.85);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--color-white);
  border-bottom-color: var(--color-navy);
}

/* ---------- nav dropdown (Results: Case Studies + Testimonials) ---------- */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-dropdown-trigger::after {
  content: "▾";
  font-size: 0.7rem;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 14px;
  background: var(--color-navy);
  border-radius: var(--radius);
  padding: 10px;
  min-width: 170px;
  box-shadow: 0 18px 40px rgba(11, 17, 40, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: none !important;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-ink);
  margin: 5px 0;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}

/* ---------- hero (full-bleed background photo) ---------- */
.page-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  /* Dark base so any sub-pixel seam at the vh-rounded bottom edge blends with
     the gradient instead of exposing the white page background. */
  background-color: var(--color-navy-deep);
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 17, 40, 0.1) 0%,
    rgba(11, 17, 40, 0.75) 100%
  );
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  padding: 64px;
  color: var(--color-white);
  max-width: 1200px;
  width: 100%;
}
.page-hero-inner::before {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--color-gold);
  margin-bottom: 18px;
}
.page-hero-inner .eyebrow {
  color: #f2a6c9;
}
.page-hero-inner h1 {
  color: var(--color-white);
  margin-bottom: 14px;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.08;
  max-width: 34ch;
}
.page-hero-inner .lede {
  color: #d9d4c6;
  max-width: 56ch;
}

/* Home page hero — taller, more dramatic, text vertically centered */
.page-hero.home-hero {
  min-height: 92vh;
  align-items: center;
}
.page-hero.home-hero::after {
  background: linear-gradient(
    100deg,
    rgba(11, 17, 40, 0.9) 0%,
    rgba(11, 17, 40, 0.68) 42%,
    rgba(11, 17, 40, 0.15) 82%
  );
}
.home-hero .page-hero-inner {
  max-width: 960px;
}
.home-hero .page-hero-inner h1 {
  font-size: clamp(3rem, 6.2vw, 5.4rem);
  max-width: none;
}

.page-hero.face-hero {
  min-height: 88vh;
  background: var(--color-navy);
}
.page-hero.face-hero img {
  object-fit: contain;
  object-position: 50% 100%;
}
.page-hero.face-hero::after {
  background: linear-gradient(
    180deg,
    rgba(11, 17, 40, 0.05) 0%,
    rgba(11, 17, 40, 0.05) 55%,
    rgba(11, 17, 40, 0.85) 100%
  );
}
@media (max-width: 600px) {
  .page-hero.face-hero {
    min-height: 62vh;
  }
}

/* ---------- split hero (uncropped photo + large title, editorial layout) ---------- */
.split-hero {
  padding: 56px 0 80px;
  overflow: hidden;
}
.split-hero.dark {
  background: var(--color-navy);
}
.split-hero .wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.25fr;
  gap: 56px;
  align-items: center;
  max-width: 1400px;
}
.split-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}
.split-hero-text .eyebrow {
  margin-bottom: 16px;
}
.split-hero.dark .split-hero-text .eyebrow {
  color: #f2a6c9;
}
.split-hero-text h1 {
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
  line-height: 1.12;
  margin-bottom: 20px;
}
.split-hero.dark .split-hero-text h1 {
  color: var(--color-white);
}
.split-hero-text .lede {
  max-width: 52ch;
}
.split-hero.dark .split-hero-text .lede {
  color: #d9d4c6;
}
.split-hero.large-photo .wrap {
  grid-template-columns: 1.55fr 1fr;
}
.split-hero.large-photo .split-hero-image img {
  min-height: 620px;
  object-fit: cover;
  object-position: 50% 15%;
  max-height: 780px;
}
@media (max-width: 900px) {
  .split-hero.large-photo .split-hero-image img {
    max-height: 480px;
    min-height: 320px;
  }
}
@media (max-width: 900px) {
  /* .large-photo carries an extra class, so it outranks a bare
     `.split-hero .wrap` here -- media queries add no specificity. Both
     selectors must be listed or the About hero never collapses. */
  .split-hero .wrap,
  .split-hero.large-photo .wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .split-hero-image {
    order: -1;
  }
  .split-hero.large-photo .split-hero-image img {
    min-height: 0;
    max-height: none;
  }
}

/* ---------- about: portrait badges + bio columns ---------- */
.about-badge {
  position: absolute;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(11, 17, 40, 0.35);
  white-space: nowrap;
}
.about-badge--exp {
  top: 6%;
  right: -4%;
  background: var(--color-gold);
  color: var(--color-navy);
}
.about-badge--icf {
  bottom: 8%;
  left: -6%;
  background: var(--color-navy);
  color: var(--color-white);
  border: 2px solid var(--color-gold);
}
.bio-cols {
  column-count: 2;
  column-gap: 64px;
}
.bio-cols > * {
  break-inside: avoid;
}
@media (max-width: 900px) {
  .bio-cols {
    column-count: 1;
  }
}
@media (max-width: 600px) {
  /* Negative offsets push the badges past the viewport on a phone. */
  .about-badge {
    font-size: 0.72rem;
    padding: 9px 13px;
  }
  .about-badge--exp {
    top: 2%;
    right: 0;
  }
  .about-badge--icf {
    bottom: 2%;
    left: 0;
  }
}

/* ---------- sections ---------- */
section {
  padding: 88px 0;
}
.section-tight {
  padding: 56px 0;
}
.band-cream {
  background: var(--color-cream-deep);
}
.band-navy {
  background: var(--color-navy-deep);
  color: #e9e4d8;
}
.band-navy h1,
.band-navy h2,
.band-navy h3,
.band-navy h4 {
  color: var(--color-white);
}
.band-navy p {
  color: #c7c1b3;
}
.band-navy .pillar-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
  border-top-color: var(--color-pink);
}
.band-navy .pillar-card .tag {
  color: var(--color-pink);
}
.band-navy .check-list li {
  color: #c7c1b3;
}
.band-navy .eyebrow {
  color: #f2a6c9;
}
.band-navy .btn-outline {
  border-color: var(--color-white);
  color: var(--color-white);
}
.band-navy .btn-outline:hover {
  background: var(--color-white);
  color: var(--color-ink);
}
.band-navy blockquote {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--color-white);
}
.band-navy blockquote cite {
  color: #f2a6c9;
}

/* ---------- certifications ---------- */
.cert-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.cert-badge {
  padding: 14px 28px;
  border: 1px solid var(--color-pink);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-white);
  background: rgba(227, 28, 121, 0.12);
  letter-spacing: 0.01em;
}

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head::before {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-gold);
  margin-bottom: 16px;
}
.section-head.center::before {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- three-pillar / grid cards ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.pillar-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-top: 3px solid var(--color-gold);
  border-radius: var(--radius);
  padding: 36px 30px;
}
.pillar-card .tag {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--color-pink-deep);
  margin-bottom: 10px;
  display: block;
}
/* Vary the EQ / RQ / SQ tag color across the three brand accents */
.grid-3 .pillar-card:nth-of-type(2) .tag {
  color: var(--color-gold-deep);
}
.grid-3 .pillar-card:nth-of-type(3) .tag {
  color: var(--color-navy);
}

.pillar-card h3 {
  margin-bottom: 10px;
}
.pillar-card p {
  margin-bottom: 0;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.check-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: var(--color-ink-soft);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-gold-deep);
  font-weight: 700;
}

/* ---------- image + text split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split img {
  border-radius: var(--radius);
}
.split.reverse .split-image {
  order: 2;
}

/* ---------- clients / logos ---------- */
.clients-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.clients-strip .client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 84px;
  flex: 0 1 calc((100% - 100px) / 6);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 16px;
}
.clients-strip .client-logo img {
  max-width: 100%;
  max-height: 40px;
  opacity: 0.65;
  transition: opacity 0.2s ease;
}
.clients-strip .client-logo:hover img {
  opacity: 1;
}
.clients-strip .client-logo.logo-large img {
  max-height: 78px;
}
.clients-strip .client-logo.logo-bump img {
  max-height: 66px;
}
@media (max-width: 980px) {
  .clients-strip .client-logo {
    flex-basis: calc((100% - 40px) / 3);
  }
}
@media (max-width: 600px) {
  .clients-strip .client-logo {
    flex-basis: calc((100% - 20px) / 2);
  }
}

/* ---------- pricing (products page) ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pricing-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-section + .product-section {
  border-top: 1px solid var(--color-line);
  padding-top: 72px;
  margin-top: 72px;
}
.price-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-top: 3px solid var(--color-gold);
  border-radius: 6px;
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border-color: var(--color-pink);
  border-top: 3px solid var(--color-gold);
  box-shadow: 0 18px 40px rgba(19, 27, 55, 0.1);
  position: relative;
}
.price-card.featured::before {
  content: "Most Requested";
  position: absolute;
  top: -13px;
  left: 32px;
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}
.price-card h3 {
  margin-bottom: 4px;
}
.price-card .price-sub {
  color: var(--color-ink-soft);
  font-size: 0.88rem;
  margin-bottom: 20px;
}
.price-value {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--color-ink);
  margin-bottom: 4px;
}
.price-value span {
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--color-ink-soft);
  font-weight: 500;
}
.price-card.featured .price-value {
  color: var(--color-pink-deep);
}
.price-card .check-list {
  margin: 22px 0 28px;
  flex-grow: 1;
}
.price-note {
  font-size: 0.82rem;
  color: var(--color-ink-soft);
  margin-top: 10px;
}

.pricing-disclaimer {
  background: var(--color-gold-tint);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 18px 24px;
  font-size: 0.9rem;
  color: var(--color-ink-soft);
  margin-bottom: 48px;
}
.pricing-disclaimer strong {
  color: var(--color-ink);
}

.addon-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.addon-card {
  border: 1px solid var(--color-line);
  border-top: 3px solid var(--color-gold);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--color-white);
}
.addon-card .price-value {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

/* ---------- testimonial / quote ---------- */
blockquote {
  margin: 0;
  padding: 32px 36px;
  background: var(--color-white);
  border-left: 3px solid var(--color-gold);
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-ink);
  font-style: italic;
}
blockquote cite {
  display: block;
  margin-top: 14px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  color: var(--color-ink-soft);
}
.quote-avatar {
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold);
  margin-bottom: 16px;
}
.quote-avatar.logo-avatar {
  border-radius: 8px;
  object-fit: contain;
  background: var(--color-white);
  padding: 8px;
  border: 1px solid var(--color-line);
}

/* ---------- testimonial wall (testimonials.html) ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-top: 3px solid var(--color-gold);
  border-radius: 6px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
}
.testimonial-card .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold);
  margin-bottom: 16px;
}
.testimonial-card .avatar-initials {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-navy);
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid var(--color-gold);
  margin-bottom: 16px;
}
.testimonial-card .stars {
  color: var(--color-gold);
  letter-spacing: 3px;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.testimonial-card h3 {
  font-size: 1.05rem;
  line-height: 1.3;
  margin-bottom: 14px;
}
.testimonial-card .quote {
  color: var(--color-ink-soft);
  font-size: 0.94rem;
  flex-grow: 1;
  margin-bottom: 22px;
}
.testimonial-card .signee {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--color-ink);
  margin-bottom: 2px;
}
.testimonial-card .role {
  font-size: 0.78rem;
  color: var(--color-gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ---------- case study ---------- */
.case-study {
  border-top: 1px solid var(--color-line);
  padding: 64px 0;
  position: relative;
}
.case-study:first-of-type {
  border-top: none;
}
.case-study::before {
  content: "";
  position: absolute;
  top: 64px;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--color-gold);
}
.case-study:first-of-type::before {
  top: 0;
}
.case-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  margin-top: 24px;
}
.case-meta img {
  height: 34px;
  width: auto;
  object-fit: contain;
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin: 28px 0;
}
.case-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
/* Both selectors must be listed: `.case-grid.cols-3` is two classes and would
   otherwise outrank a bare `.case-grid` here, since media queries add no
   specificity. Four stat cards at 390px overflow the viewport to ~502px. */
@media (max-width: 900px) {
  .case-grid,
  .case-grid.cols-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .case-grid,
  .case-grid.cols-3 {
    grid-template-columns: 1fr;
  }
}
.stat-card {
  background: var(--color-cream-deep);
  border-bottom: 3px solid var(--color-gold);
  border-radius: var(--radius);
  padding: 20px;
}
.stat-card .num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--color-gold-deep);
  display: block;
}
.stat-card .label {
  font-size: 0.85rem;
  color: var(--color-ink-soft);
}

/* ---------- larger, dynamic stat cards (What We Do page) ---------- */
.stat-card-lg {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.stat-card-lg:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(11, 17, 40, 0.14);
}
.stat-card-lg .num {
  font-size: 2.6rem;
}
.stat-card-lg .label {
  font-size: 1.02rem;
  line-height: 1.4;
}
.stat-card-lg:nth-child(4n + 1) {
  border-bottom-color: var(--color-gold);
}
.stat-card-lg:nth-child(4n + 2) {
  border-bottom-color: var(--color-pink);
}
.stat-card-lg:nth-child(4n + 3) {
  border-bottom-color: var(--color-navy);
}
.stat-card-lg:nth-child(4n + 4) {
  border-bottom-color: var(--color-gold-deep);
}
.band-cream .stat-card-lg {
  background: var(--color-white);
}

/* ---------- dynamic hover-lift + icon badges (What We Do page) ---------- */
.pillar-card-hover {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.pillar-card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(11, 17, 40, 0.14);
}
.tag-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-gold-tint);
  margin-bottom: 14px;
}
.band-navy .tag-badge {
  background: rgba(255, 255, 255, 0.1);
}

/* ---------- podcast ---------- */
.podcast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.podcast-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-top: 3px solid var(--color-gold);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.podcast-card .icon {
  font-size: 1.8rem;
}
/* The card is opaque white but sits inside .band-navy, so `.band-navy p`
   (#c7c1b3, a pale tan meant for text directly on navy) bleeds in and renders
   at 1.79:1 against white -- a WCAG failure. Restate the body colour at (0,2,1)
   to outrank it. Sibling .pillar-card is translucent white over navy, so its
   light text is correct and must not be changed. */
.band-navy .podcast-card p {
  color: var(--color-ink-soft);
}

/* ---------- newsletter ---------- */
.newsletter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 400px;
}
.newsletter input[type="email"] {
  flex: 1 1 180px;
  min-width: 0;
  padding: 13px 16px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--color-white);
}
.newsletter .btn {
  flex: 0 0 auto;
  white-space: nowrap;
}
/* status messages sit on their own line, hidden until Ghost fires them */
.newsletter [data-members-success],
.newsletter [data-members-error] {
  flex-basis: 100%;
  margin: 4px 0 0;
  font-size: 0.85rem;
  display: none;
}
.newsletter.success [data-members-success],
.newsletter.error [data-members-error] {
  display: block;
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--color-navy-deep);
  color: #c7c1b3;
  padding: 64px 0 28px;
  border-top: 3px solid var(--color-pink);
}
.footer-grid {
  display: grid;
  /* 3 columns for the 3 live blocks (Brand / Explore / Connect). The 4th
     Membership column is hidden pending paid-tier sign-off -- add a 4th track
     (e.g. 1.5fr 1fr 1fr 1.4fr) here if that block is re-enabled. */
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
  align-items: start;
}
/* 3 cols hold from desktop down to the 1024px mobile stack -- no 2x2 wrap. */
.site-footer h4 {
  color: var(--color-white);
  margin-bottom: 16px;
}
.site-footer a {
  color: #c7c1b3;
}
.site-footer a:hover {
  color: var(--color-pink);
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
  font-size: 0.92rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #93897a;
  flex-wrap: wrap;
  gap: 12px;
}
.social-row {
  display: flex;
  gap: 16px;
}

/* ---------- contact page ---------- */
.contact-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-top: 3px solid var(--color-gold);
  border-radius: 6px;
  padding: 44px;
}
.form-row {
  margin-bottom: 20px;
}
.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-ink);
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--color-cream);
}
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-info-list li {
  margin-bottom: 22px;
}
.contact-info-list .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold-deep);
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--color-ink);
  color: var(--color-white);
  border-radius: 8px;
  padding: 64px;
  text-align: center;
  border-top: 4px solid var(--color-pink);
}
.cta-band h2,
.cta-band p {
  color: var(--color-white);
}
.cta-band p {
  color: #c7c1b3;
}
.cta-band .lede {
  margin: 0 auto 30px;
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) and (min-width: 981px) {
  .pricing-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet-landscape band: keep all 7 links on ONE line by tightening spacing,
   type, logo, and CTA before the hamburger takes over (<=1024px). */
@media (max-width: 1240px) and (min-width: 1025px) {
  .site-header .wrap {
    gap: 16px;
  }
  .main-nav {
    gap: 22px;
  }
  .main-nav a {
    font-size: 0.8rem;
    letter-spacing: 0.02em;
  }
  .brand img {
    height: 46px;
  }
  .header-cta {
    padding: 11px 18px;
    font-size: 0.82rem;
  }
}

@media (max-width: 1024px) {
  .site-header .wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 0;
  }
  .nav-toggle {
    display: block;
    margin-left: auto;
    order: 2;
  }
  .header-cta {
    display: none;
  }
  .main-nav {
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .site-header.nav-open .main-nav {
    max-height: 70vh;
    overflow-y: auto;
    padding-top: 8px;
  }
  .main-nav a {
    white-space: nowrap;
    width: 100%;
    padding: 14px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
  .site-header.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .site-header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .site-header.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .page-hero {
    min-height: 50vh;
  }
  .page-hero.home-hero {
    min-height: 78vh;
  }
  .page-hero.home-hero::after {
    background: linear-gradient(
      180deg,
      rgba(11, 17, 40, 0.35) 0%,
      rgba(11, 17, 40, 0.9) 100%
    );
  }
  .grid-3,
  .grid-2,
  .pricing-grid,
  .pricing-grid-4,
  .case-grid,
  .footer-grid,
  .podcast-grid,
  .addon-row,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .split.reverse .split-image {
    order: 0;
  }
  section {
    padding: 56px 0;
  }
  .wrap {
    padding: 0 20px;
  }
  .page-hero-inner {
    padding: 40px 24px;
  }
  .cta-band {
    padding: 40px 24px;
  }
}

/* ==========================================================================
   Ghost additions (not in the static site) — Koenig content, gated posts,
   member hub. Kept separate so the ported styles above stay 1:1 with the site.
   ========================================================================== */
.site-main {
  min-height: 50vh;
}
.wrap-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Koenig editor content widths (required by Ghost gscan) */
.kg-width-wide {
  position: relative;
  width: 75vw;
  min-width: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.kg-width-full {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
}
.kg-width-full img {
  width: 100%;
}
.kg-card {
  margin: 1.6em 0;
}

/* single post / lesson (blog + gated content) */
.post-single {
  padding: 72px 0;
}
.post-head {
  margin-bottom: 32px;
}
.post-head h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}
.post-meta {
  display: flex;
  gap: 18px;
  font-size: 0.85rem;
  color: var(--color-ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.post-feature {
  margin: 0 0 36px;
}
.post-feature img {
  width: 100%;
  border-radius: var(--radius);
}
.post-content {
  font-size: 1.08rem;
}
.post-content p {
  color: var(--color-ink);
}
.post-content h2,
.post-content h3 {
  margin-top: 1.6em;
}
.post-content a {
  color: var(--color-pink-deep);
  border-bottom: 1px solid var(--color-pink-tint);
}
.post-content img {
  border-radius: var(--radius);
  margin: 1.5em 0;
}
.post-content blockquote {
  margin: 1.5em 0;
}
.post-foot {
  margin-top: 48px;
}

/* active nav state driven by Ghost body_class (per-page) */
body.home-template .main-nav .nav-home,
body.page-about .main-nav .nav-about,
body.page-what-we-do .main-nav .nav-what-we-do,
body.page-products .main-nav .nav-products,
body.page-case-studies .main-nav .nav-case-studies,
body.page-testimonials .main-nav .nav-testimonials,
body.page-contact .main-nav .nav-contact {
  color: var(--color-white);
  border-bottom-color: var(--color-navy);
}

/* ---- Client logo wall: full color, no hover effect (client request 2026-07-13) ---- */
.clients-strip .client-logo img {
  filter: none;
  opacity: 1;
}
.clients-strip .client-logo:hover img {
  filter: none;
  opacity: 1;
}

/* ---- Testimonials "Sound Bytes" scrolling marquee ---- */
/* Static reviews overlaid on the hero (two lanes, no animation). */
.sb-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 6%;
  pointer-events: none;
}
.sb-track {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
}
.sb-slot {
  flex: 0 1 300px;
  text-align: center;
}
/* one static quote per slot (the second is kept in markup but not shown) */
.sb-slot .sb-chip:nth-child(n + 2) {
  display: none;
}
.sb-chip .sb-quote {
  display: block;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-style: italic;
  color: #fff;
  line-height: 1.35;
  text-shadow: 0 2px 14px rgba(11, 17, 40, 0.8);
}
.sb-chip .sb-attr {
  display: block;
  margin-top: 8px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f0d9a0;
  font-weight: 600;
  text-shadow: 0 1px 10px rgba(11, 17, 40, 0.8);
}
/* Mobile: stack a couple of quotes over the lower hero, one per lane. */
@media (max-width: 760px) {
  .sb-overlay {
    bottom: 28%;
    gap: 14px;
    padding: 0 7%;
  }
  .sb-track {
    flex-direction: column;
    gap: 12px;
  }
  .sb-slot {
    flex-basis: auto;
  }
  .sb-track .sb-slot:nth-child(n + 2) {
    display: none;
  }
  .sb-chip .sb-quote {
    font-size: 0.95rem;
  }
}

/* User request: tone down oversized page headers */
.page-hero-inner h1 {
  font-size: clamp(2.1rem, 3.6vw, 3rem);
}
.home-hero .page-hero-inner h1 {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
}
.split-hero-text h1 {
  font-size: clamp(1.9rem, 2.8vw, 2.7rem);
}

/* ==========================================================================
   Classes migrated from inline style= attributes (cc-hive#43).

   Inline styles beat every media query, so any layout expressed as a style=
   attribute can never respond to a breakpoint. That is what stopped the About
   hero collapsing and pushed three pages past the viewport. These classes carry
   the exact same declarations, but live where a media query can reach them.
   ========================================================================== */

/* --- spacing utilities --- */
.u-center {
  text-align: center;
}
.u-m-0 {
  margin: 0;
}
.u-m-0-auto {
  margin: 0 auto;
}
.u-mt-4 {
  margin-top: 4px;
}
.u-mt-8 {
  margin-top: 8px;
}
.u-mt-12 {
  margin-top: 12px;
}
.u-mt-16 {
  margin-top: 16px;
}
.u-mt-18 {
  margin-top: 18px;
}
.u-mt-20 {
  margin-top: 20px;
}
.u-mt-24 {
  margin-top: 24px;
}
.u-mt-36 {
  margin-top: 36px;
}
.u-mt-40 {
  margin-top: 40px;
}
.u-mt-44 {
  margin-top: 44px;
}
.u-mb-2 {
  margin-bottom: 2px;
}
.u-mb-6 {
  margin-bottom: 6px;
}
.u-mb-12 {
  margin-bottom: 12px;
}
.u-mb-14 {
  margin-bottom: 14px;
}
.u-mb-16 {
  margin-bottom: 16px;
}
li.u-mb-18,
.u-mb-18 {
  margin-bottom: 18px;
}
.u-mb-22 {
  margin-bottom: 22px;
}
li.u-mb-24,
.u-mb-24 {
  margin-bottom: 24px;
}
.u-pt-16 {
  padding-top: 16px;
}
.u-pt-40 {
  padding-top: 40px;
}
.is-hidden {
  display: none;
}

/* --- eyebrow colour variants --- */
.eyebrow-pink {
  color: #f2a6c9;
}
.eyebrow-gold {
  color: var(--color-gold-deep);
}
.eyebrow-navy {
  color: var(--color-navy);
}
.eyebrow-pink-deep {
  color: var(--color-pink-deep);
}
/* beats `.split-hero.dark .split-hero-text .eyebrow` (0,4,0) */
.split-hero.dark .split-hero-text .eyebrow.eyebrow-display {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: none;
  font-size: clamp(2rem, 4vw, 2.9rem);
  letter-spacing: 0;
  line-height: 1.05;
  color: var(--color-pink);
  margin-bottom: 22px;
}

/* --- typography --- */
.title-md {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}
.text-lg {
  font-size: 1.25rem;
  line-height: 1.6;
}
.text-sm {
  font-size: 0.88rem;
}
.p-strong {
  font-weight: 600;
  color: var(--color-ink);
}
.h-on-navy {
  color: var(--color-white);
}
p.lede-on-navy {
  color: #d9d4c6;
}
.tag-badge-lg {
  font-size: 1.6rem;
}
.bio-lede {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-ink);
}
p.pull-quote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-white);
  font-style: italic;
}
.section-note {
  text-align: center;
  margin-top: 44px;
  color: var(--color-ink-soft);
  font-size: 0.9rem;
}
.stat-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-ink-soft);
  margin-top: 20px;
}
.stat-note-sm {
  text-align: center;
  font-size: 0.78rem;
  color: var(--color-ink-soft);
  margin-top: 16px;
}
.link-gold {
  color: var(--color-gold-deep);
  text-decoration: underline;
}

/* --- buttons. Two-class selectors so component rules (.btn.btn-gold etc)
       cannot outrank these by specificity. --- */
.btn.btn-center {
  justify-content: center;
}
.btn.btn-sm {
  padding: 13px 22px;
}
.btn.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}
.btn.btn-full {
  width: 100%;
  justify-content: center;
}
.btn.btn-outline-light {
  border-color: #fff;
  color: #fff;
}

/* --- rows of buttons / links. These were inline flex containers; a phone
       needs them to wrap, which is why they belong here. --- */
.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-row-center {
  justify-content: center;
}
.link-row {
  display: flex;
  gap: 18px;
}

/* --- about page --- */
.split-hero-about {
  padding-bottom: 24px;
  position: relative;
  overflow: visible;
}
.split-hero-tight {
  padding-bottom: 24px;
}
.portrait-ring {
  position: relative;
  background: conic-gradient(
    from 210deg,
    var(--color-navy) 0%,
    var(--color-navy) 35%,
    var(--color-gold) 55%,
    var(--color-navy) 75%,
    var(--color-navy) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 640px);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  padding: 16px;
}
/* `.split-hero.large-photo .split-hero-image img` (0,3,1) sets min-height:620px
   and outranks `.portrait-ring img` (0,1,1). The inline style this replaced used
   to win outright, so restate the override at matching specificity. */
.split-hero.large-photo .portrait-ring img {
  min-height: 0;
  max-height: none;
}

.portrait-ring img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 15%;
  box-shadow:
    0 0 0 6px var(--color-cream),
    0 20px 50px rgba(11, 17, 40, 0.5);
}

/* --- what we do --- */
h1.hero-sub {
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  line-height: 1.3;
  font-family: var(--font-body);
  font-weight: 400;
  max-width: 26ch;
}
.pillar-card-wide {
  grid-column: 1 / -1;
  max-width: 640px;
  margin: 0 auto;
}
.split-stretch {
  align-items: stretch;
}
.split-media-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.media-cover {
  height: 100%;
  object-fit: cover;
}
/* --- contact --- */
.contact-link {
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.contact-label {
  font-size: 1.1rem;
  font-family: var(--font-display);
}
.contact-divider {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--color-line);
}

/* --- sections / bands --- */
.cta-band-ink {
  background: var(--color-ink);
}
.section-pad-36 {
  padding-top: 36px;
  padding-bottom: 36px;
}
.section-pad-16-36 {
  padding-top: 16px;
  padding-bottom: 36px;
}

/* --- footer / newsletter --- */
.footer-note {
  margin: 0 0 14px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}
.newsletter .form-msg {
  margin: 10px 0 0;
  font-size: 0.85rem;
}
.form-msg-ok {
  color: #bfe3c0;
}
.form-msg-err {
  color: #ffb4b4;
}

/* Contact-form async submit status (cc-hive#51) */
.form-status {
  margin-top: 14px;
  font-size: 0.95rem;
  min-height: 1.2em;
}
.form-status.is-success {
  color: #2f8f5b;
}
.form-status.is-error {
  color: #c0392b;
}

/* ==========================================================================
   Member Hub template (custom-member-hub.hbs)
   The .dash-* styles were dropped when screen.css became the client's verbatim
   stylesheet, leaving the hub heading dark-on-navy (unreadable) and the tiles
   unstyled. Re-added below. Purely additive: no other template uses .dash-*.
   ========================================================================== */
.dash-hero {
  padding: 92px 0 84px;
}
.dash-hero h1 {
  color: var(--color-white);
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  line-height: 1.05;
  margin: 10px 0 18px;
}
.dash-hero .lede {
  max-width: 46ch;
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 30px;
}

.dash-tiles {
  padding: 72px 0;
  background: var(--color-white);
}
.dash-tiles .section-head,
.dash-recent .section-head {
  margin-bottom: 30px;
}
.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.dash-card {
  display: flex;
  flex-direction: column;
  padding: 28px 26px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-top: 3px solid var(--color-gold);
  border-radius: 12px;
  text-decoration: none;
  color: var(--color-ink);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.dash-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(19, 27, 55, 0.12);
}
.dash-card .tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-pink);
  margin-bottom: 12px;
}
.dash-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.dash-card p {
  color: var(--color-ink-soft);
  line-height: 1.5;
  margin-bottom: 18px;
  flex: 1;
}
.dash-card .card-arrow {
  font-weight: 600;
  color: var(--color-pink);
}

.dash-recent {
  padding: 72px 0;
}
.post-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-line);
}
.post-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 6px 24px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--color-line);
  text-decoration: none;
  color: var(--color-ink);
  transition: background 0.15s ease;
}
.post-row:hover {
  background: var(--color-cream-deep);
}
.post-date {
  color: var(--color-ink-soft);
  font-size: 0.9rem;
}
.post-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}
.post-excerpt {
  grid-column: 2;
  color: var(--color-ink-soft);
  line-height: 1.5;
}
.empty-note {
  color: var(--color-ink-soft);
}
@media (max-width: 640px) {
  .post-row {
    grid-template-columns: 1fr;
  }
  .post-excerpt {
    grid-column: 1;
  }
}
