:root {
  --white: #fefefe;
  --red: #e50913;
  --navy: #242947;
  --light-gray: #f5f5f5;
  --text-dark: #222;
  --blue: #1E73BE;
  --container: 1140px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.55;
  scrollbar-color: var(--red) var(--light-gray);
  scrollbar-width: thin;
}

/* [ENHANCEMENT] Custom scrollbar */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--light-gray); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 10px; border: 2px solid var(--light-gray); }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: "Playfair", sans-serif;
}

p { margin: 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip-to-content accessibility link */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--red);
  color: var(--white);
  padding: 8px 16px;
  text-decoration: none;
  font-size: 14px;
}

.skip-to-content:focus {
  left: 0;
}

/* ===== HEADER ===== */
#siteHeader {
  position: sticky; /* [ENHANCEMENT] */
  top: 0;
  z-index: 20;
  min-height: 66px; /* Reserve space to prevent layout shift while partial loads */
}

.site-header {
  background: var(--white);
  border-bottom: 0;
  height: 66px;
}

.nav-wrap {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--blue);
}

.brand h2 {
  font-size: 35px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: -1px;
  text-transform: uppercase;
  word-spacing: 5px;
}

/* Logo centered in header */
.header-logo {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  text-decoration: none;
  z-index: 10;
  background: var(--white);
  padding: 5px 10px 15px;
  border-radius: 15px;
  text-align: center;
}

.header-logo-img {
  display: block;
  width: 90px;
  height: auto;
}

.menu-toggle {
  display: none;
  border: 1px solid #ddd;
  background: transparent;
  color: var(--navy);
  border-radius: 8px;
  padding: 8px 10px;
  font: inherit;
  cursor: pointer;
}

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

.menu a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 15px 10px;
  color: var(--navy);
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  position: relative;
  transition: color .1s ease-in-out, background-color .1s ease-in-out;
}

.menu a::before,
.menu a::after {
  display: block;
  position: absolute;
  transition: 0.3s;
  transition-timing-function: cubic-bezier(0.58, 0.3, 0.005, 1);
}

.menu a:not(.nav-cta):not(:hover):not(:focus)::before,
.menu a:not(.nav-cta):not(:hover):not(:focus)::after {
  opacity: 0;
}

.menu a:not(.nav-cta):hover::before,
.menu a:not(.nav-cta):hover::after,
.menu a:not(.nav-cta):focus::before,
.menu a:not(.nav-cta):focus::after {
  transform: scale(1);
}

.menu a:not(.nav-cta)::before,
.menu a:not(.nav-cta)::after {
  height: 3px;
  width: 100%;
  left: 0;
  background: var(--red);
  z-index: 2;
}

.menu a:not(.nav-cta)::after { content: ""; }
.menu a:not(.nav-cta)::after { bottom: 0; }

/* Contact nav CTA button styling */
.menu a.nav-cta {
  display: inline-flex;
  background: var(--red);
  color: var(--white);
  border-radius: 50px;
  padding: 10px 15px;
  font-size: 15px;
  line-height: 15px;
  transition: .3s;
}

.menu a.nav-cta:hover {
  background: var(--navy);
  color: var(--white);
}

.menu a .fa-home {
  font-size: 19px;
  color: var(--navy);
}

@media (min-width: 1025px) {
  .menu a[aria-label="Home"] {
    top: -1.5px;
  }
}

/* ===== HOMEPAGE ===== */
.section {
  padding: 0;
}

.hero {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  height: 600px;
  display: grid;
  align-items: center;
}

.hero .content {
  width: calc(100% - 200px);
  max-width: none;
  margin: 0 auto;
}

.hero h2,
.about h2,
.why-head h2,
.why-detail h2,
.cta h2 {
  text-transform: uppercase;
  font-size: 35px;
  font-weight: 400;
  line-height: 35px;
  margin-bottom: 20px;
}

/* Light-section headings use dark text in source */
.about h2,
.why-detail h2,
.cta h2 {
  color: var(--text-dark);
}

.hero h4 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 30px;
}

/* Hero CTA button with white border */
.hero .btn {
  border: 3px solid var(--white);
}

.btn {
  display: inline-block;
  text-decoration: none;
  color: var(--white);
  background: var(--red);
  border: 0;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 20px;
  padding: 12px 24px;
  transition: all .2s ease;
}

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

.about {
  text-align: center;
  height: 400px;
  display: grid;
  align-items: center;
}

.about .content {
  width: min(var(--container), calc(100% - 40px));
  padding: 0 10px;
  margin: 0 auto;
}

.about p {
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 17px;
  line-height: 25.5px;
  margin-bottom: 20px;
}

.why-head {
  padding: 30px 0 0;
  text-align: center;
  color: var(--white);
  background: var(--navy);
}

.why-head .container {
  padding: 0 10px;
  display: flow-root;
}

.features {
  background: var(--navy);
  color: var(--white);
  height: 400px;
  display: grid;
  align-items: center;
  padding: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.feature {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 308px;
  padding: 10px;
}

.feature svg {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  fill: var(--white);
}

.feature h3 {
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 700;
  font-size: 17px;
  line-height: 25.5px;
  width: 100%;
  margin: 26.5px 0 20px;
}

.feature p {
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 17px;
  line-height: 25.5px;
  width: 100%;
  margin: 0 0 20px;
}

.feature .btn {
  font-size: 20px;
  line-height: 20px;
  padding: 12px 24px;
}

.why-detail {
  height: 400px;
  display: grid;
  align-items: center;
}

.why-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 36px;
  align-items: center;
}

.why-check {
  display: grid;
  place-items: center;
}

.why-check svg {
  width: 75px;
  height: 75px;
  fill: var(--navy);
}

.why-detail h2 {
  margin-bottom: 18px;
}

.why-detail p {
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 17px;
  line-height: 25.5px;
  margin-bottom: 20px;
}

.cta {
  background: var(--light-gray);
  text-align: center;
  height: 400px;
  display: grid;
  align-items: center;
}

.cta .content {
  width: min(var(--container), calc(100% - 40px));
  padding: 0 10px;
  margin: 0 auto;
}

.cta p {
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 17px;
  line-height: 25.5px;
  margin-bottom: 20px;
}

/* ===== FOOTER ===== */
footer {
  color: var(--white);
  background: var(--navy);
  border-top: 5px solid var(--red);
  position: relative;
  overflow: visible;
  margin-top: -34px;
  padding-top: 56px;
}

.footer-top {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  z-index: 6;
  text-align: center;
  width: max-content;
  max-width: calc(100% - 40px);
}

.footer-pill {
  position: relative;
  display: inline-block;
  text-decoration: none;
  background: var(--red);
  color: var(--white);
  text-transform: uppercase;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 10px 30px;
  margin-bottom: 0;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--red);
  z-index: 1;
}

.footer-pill::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  border: 2px solid var(--red);
  pointer-events: none;
  z-index: -1;
}

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

.footer-columns h3 {
  font-family: "Playfair", sans-serif;
  font-size: 30px;
  margin-bottom: 8px;
  font-weight: 700;
}

.footer-columns p {
  font-size: 19px;
  line-height: 1.8;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-links a i {
  color: var(--red);
  width: 18px;
  text-align: center;
  font-size: 15px;
}

.footer-columns a,
.footer-columns a:visited {
  color: var(--white);
  text-decoration: none;
}

.footer-columns a:hover,
.footer-columns a:focus {
  color: var(--red);
  text-decoration: none;
}

.copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding: 15px 0 20px;
  font-size: 16px;
  color: var(--white);
}

.copyright a {
  color: var(--red);
  text-decoration: none;
}

.copyright a:hover { text-decoration: none; }

.copyright .designed-by {
  display: inline;
}

/* [ENHANCEMENT] Back-to-top button */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
  z-index: 30;
}

.back-to-top:hover { background: #a01020; }

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ===== HOMEPAGE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .why-wrap { grid-template-columns: 1fr; text-align: center; }
  .why-detail .btn { margin: 0 auto; display: inline-block; }
  .menu-toggle { display: inline-flex; }
  .header-logo {
    display: inline-flex;
    position: static;
    transform: none;
    background: var(--white);
    padding: 0;
    border-radius: 0;
    text-align: center;
  }
  .header-logo-img {
    width: auto;
    height: 62px;
  }
  nav#mainNav {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid #ececec;
    display: none;
    z-index: 30;
  }
  nav#mainNav.open { display: block; }
  .menu {
    flex-direction: column;
    align-items: stretch;
    padding: 8px 20px 16px;
  }
  .menu a { padding: 10px 0; }
  .menu a.nav-cta {
    display: inline-block;
    width: auto;
    align-self: flex-start;
    margin-top: 4px;
  }
}

@media (max-width: 767px) {
  .container { width: min(var(--container), calc(100% - 28px)); }
  .nav-wrap { min-height: 82px; }
  .brand h2 { font-size: 24px; }
  .section { padding: 62px 0; }
  .hero, .about, .features, .why-detail, .cta { min-height: auto; }
  .about p,
  .feature p,
  .why-detail p,
  .cta p,
  .footer-columns p { font-size: 17px; }
  .feature h3 { font-size: 22px; }
  .feature-grid,
  .footer-columns { grid-template-columns: 1fr; }
  .footer-columns { text-align: center; }
  .btn,
  .footer-pill { font-size: 18px; }
}

/* ===== SHARED PAGE TEMPLATES ===== */
.page-hero {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 100px 0;
}

.page-hero h2 {
  text-transform: uppercase;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  margin-bottom: 16px;
}

.page-hero h4 {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: clamp(18px, 2vw, 26px);
}

.page-section {
  padding: 76px 0;
}

.page-section.alt {
  background: var(--light-gray);
}

/* Blue heading color for section titles on light backgrounds */
.section-title {
  text-transform: uppercase;
  font-size: clamp(28px, 3.4vw, 42px);
  margin-bottom: 18px;
  color: var(--blue);
}

.section-text {
  font-size: 20px;
  margin-bottom: 22px;
}

/* About page - full-width centered text blocks */
.about-block {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* About page - two-column layout with images */
.about-section-title {
  text-align: center;
  margin-bottom: 28px;
}

.about-split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 36px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.about-split.reverse {
  grid-template-columns: 1fr 2fr;
}

.about-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: center;
}

.image-placeholder {
  width: 100%;
  min-height: 240px;
  border: 2px dashed var(--red);
  border-radius: 16px;
  display: grid;
  place-items: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--red);
  font-weight: 700;
  background: #fff;
}

.image-placeholder.tall { min-height: 340px; }
.image-placeholder.square { min-height: 280px; }

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

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

.card {
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 24px;
  background: #fff;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 28px;
  font-family: "Playfair", sans-serif;
}

.card p {
  margin: 0;
  font-size: 18px;
}

/* Training page image */
.training-img {
  width: 100%;
  border-radius: 16px;
  margin-top: 16px;
}

/* Steps with "Step N:" labels */
.steps {
  counter-reset: step;
  display: grid;
  gap: 16px;
}

.step {
  border-left: 4px solid var(--red);
  background: #fff;
  border-radius: 0 12px 12px 0;
  padding: 14px 18px;
  font-size: 18px;
}

.step::before {
  counter-increment: step;
  content: "Step " counter(step) ": ";
  font-weight: 700;
}

/* Testimonial */
.testimonial {
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  padding: 24px;
  background: #fff;
}

.testimonial p {
  font-size: 19px;
}

.testimonial .author {
  margin-top: 14px;
  color: #555;
  font-weight: 500;
}

.star-rating {
  margin-top: 10px;
  color: #f5a623;
  font-size: 22px;
  letter-spacing: 2px;
}

/* Coaching details list */
.coaching-details {
  list-style: disc;
  padding-left: 20px;
  font-size: 20px;
  margin: 16px 0;
}

.coaching-details li {
  margin-bottom: 6px;
}

/* Contact form - full-width centered */
.contact-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  font: inherit;
  background: #fff;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-submit {
  width: 100%;
  cursor: pointer;
}

.contact-form .form-group {
  position: relative;
}

.contact-form .input-error {
  border-color: #dc3545;
}

.contact-form .error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
}

.success-message {
  background-color: rgba(46, 204, 113, 0.15);
  color: #27ae60;
  padding: 1.25rem;
  border-radius: 10px;
  border: 1px solid rgba(46, 204, 113, 0.3);
  display: none;
  text-align: center;
  font-size: 17px;
  line-height: 1.6;
}

/* News list - single-column layout */
.news-list {
  display: grid;
  gap: 22px;
}

.news-card {
  border: 1px solid #e2e2e2;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
}

.news-card .image-placeholder {
  min-height: 160px;
  border: none;
  border-radius: 16px 0 0 16px;
  height: 100%;
}

.news-card .news-body {
  padding: 20px;
}

.news-card h3 {
  margin: 0 0 8px;
  font-size: 28px;
}

.news-date {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 500;
}

.news-empty {
  padding: 20px;
  border: 1px dashed #ccc;
  border-radius: 12px;
}

/* Post page */
.post-wrap {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
}

.post-meta {
  color: #666;
  margin-bottom: 18px;
}

.post-content p,
.post-content li {
  font-size: 19px;
}

.post-content h4 {
  margin: 20px 0 10px;
  font-size: 30px;
  text-transform: uppercase;
}

.post-content ol {
  margin: 8px 0 8px 22px;
}

.page-cta {
  text-align: center;
}

/* ===== ABOUT PAGE DESKTOP PARITY ===== */
.about-page .about-hero {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  height: 350px;
  padding: 0;
  display: grid;
  align-items: center;
}

.about-page .about-hero .container {
  width: calc(100% - 200px);
  max-width: none;
  margin: 0 auto;
}

.about-page .about-hero h2 {
  font-size: 35px;
  font-weight: 400;
  line-height: 35px;
  margin: 0 0 20px;
}

.about-page .about-hero h4 {
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

.about-page .about-two-col {
  padding: 30px 0;
  min-height: 508px;
  display: grid;
  align-items: center;
}

.about-page .about-two-col.dark {
  background: var(--navy);
  color: var(--white);
}

.about-page .about-section-title {
  text-align: center;
  margin: 0 0 30px;
  font-size: 35px;
  font-weight: 400;
  line-height: 35px;
  color: var(--text-dark);
  text-transform: uppercase;
}

.about-page .about-two-col.dark .about-section-title,
.about-page .about-two-col.dark .section-text {
  color: var(--white);
}

.about-page .about-split {
  display: grid;
  grid-template-columns: 739px 353px;
  gap: 28px;
  align-items: center;
  width: 1120px;
  max-width: 1120px;
  margin: 0 auto;
}

.about-page .about-split.reverse {
  grid-template-columns: 353px 739px;
}

.about-page .section-text {
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 17px;
  line-height: 25.5px;
  margin: 0 0 20px;
  text-align: left;
}

.about-page .about-img {
  width: 353.328px;
  height: 353.328px;
  object-fit: cover;
  border-radius: 0;
}

.about-page .about-founder {
  background: var(--white);
  padding: 10px 0;
  min-height: 490px;
  display: grid;
  align-items: center;
}

.about-page .about-founder .section-title {
  text-transform: uppercase;
  font-size: 35px;
  font-weight: 400;
  line-height: 35px;
  color: var(--text-dark);
  margin: 0 0 30px;
  text-align: center;
}

.about-page .about-founder-wrap {
  width: 1120px;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 88px;
  align-items: start;
}

.about-page .founder-img {
  width: 210px;
  height: 375px;
  object-fit: cover;
  border-radius: 0;
}

.about-page .about-cta {
  background: var(--light-gray);
  height: 400px;
  padding: 0;
  display: grid;
  align-items: center;
  text-align: center;
}

.about-page .about-cta .section-title {
  text-transform: uppercase;
  font-size: 35px;
  font-weight: 400;
  line-height: 35px;
  color: var(--text-dark);
  margin: 0 0 20px;
}

.about-page .about-cta .section-text {
  text-align: center;
}

.about-page .about-cta .btn {
  border: 0;
  border-radius: 50px;
  font-size: 20px;
  line-height: 20px;
  padding: 12px 24px;
}

/* ===== TRAINING PAGE DESKTOP PARITY ===== */
.training-page .training-hero {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  height: 350px;
  padding: 0;
  display: grid;
  align-items: center;
}

.training-page .training-hero .container {
  width: calc(100% - 200px);
  max-width: none;
  margin: 0 auto;
}

.training-page .training-hero h2 {
  font-size: 35px;
  font-weight: 400;
  line-height: 35px;
  margin: 0 0 20px;
}

.training-page .training-hero h4 {
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

.training-page .training-offer {
  height: 1228px;
  padding: 30px 0;
}

.training-page .training-offer .section-title,
.training-page .training-steps .section-title,
.training-page .training-testimonial .section-title,
.training-page .training-cta .section-title {
  font-size: 35px;
  font-weight: 400;
  line-height: 35px;
  text-transform: uppercase;
  margin: 0;
}

.training-page .training-offer .section-title,
.training-page .training-testimonial .section-title,
.training-page .training-cta .section-title {
  color: var(--text-dark);
  text-align: center;
}

.training-page .training-offer .card {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  margin-top: 30px;
}

.training-page .training-offer .card h3 {
  font-family: "Playfair", sans-serif;
  font-size: 29px;
  font-weight: 700;
  line-height: 29px;
  text-align: center;
  margin: 0 0 20px;
}

.training-page .training-img {
  width: 1024px;
  height: 1024px;
  object-fit: cover;
  margin: 0 auto;
  border-radius: 0;
  display: block;
}

.training-page .training-steps {
  background: var(--navy);
  color: var(--white);
  height: 555px;
  padding: 30px 0 0;
}

.training-page .training-steps .section-title {
  color: var(--white);
  text-align: center;
}

.training-page .training-steps-list {
  margin-top: 50px;
}

.training-page .training-step {
  min-height: 150px;
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 69px;
}

.training-page .training-step:last-child {
  margin-bottom: 0;
}

.training-page .step-icon {
  width: 90px;
  height: 90px;
  border-radius: 999px;
  background: var(--white);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .3s ease-in-out;
}

.training-page .step-icon::after {
  content: "";
  position: absolute;
  top: 90px;
  left: 42px;
  width: 6px;
  height: 150px;
  border-left: 3px solid var(--white);
}

.training-page .training-step:last-child .step-icon::after {
  display: none;
}

.training-page .step-icon svg {
  width: 80px;
  height: 80px;
  fill: var(--navy);
  color: rgba(0, 0, 0, 0.69);
}

.training-page .training-step-active .step-icon {
  background: var(--red);
}

.training-page .training-step-active .step-icon svg {
  color: var(--white);
}

.training-page .training-step:hover .step-icon {
  background: var(--red);
}

.training-page .training-step:hover .step-icon svg {
  color: var(--white);
}

.training-page .step-content h6 {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  color: var(--white);
}

.training-page .step-content p {
  margin: 15px 0 0;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  color: var(--white);
}

.training-page .training-testimonial {
  height: 400px;
  padding: 0;
  display: grid;
  align-items: center;
}

.training-page .training-testimonial .testimonial {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  margin-top: 30px;
}

.training-page .training-testimonial .testimonial h3 {
  font-family: "Playfair", sans-serif;
  font-size: 29px;
  font-weight: 700;
  line-height: 29px;
  text-align: left;
  margin: 0 0 20px;
}

.training-page .training-testimonial .testimonial p {
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  line-height: 25.5px;
  margin: 0;
}

.training-page .training-testimonial .author {
  margin-top: 20px;
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  line-height: 25.5px;
  font-weight: 400;
  color: var(--text-dark);
}

.training-page .training-testimonial .star-rating {
  margin-top: 10px;
  color: #f5a623;
  font-size: 22px;
  letter-spacing: 2px;
}

.training-page .training-cta {
  background: var(--light-gray);
  height: 400px;
  padding: 0;
  display: grid;
  align-items: center;
  text-align: center;
}

.training-page .training-cta .section-text {
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 17px;
  line-height: 25.5px;
  margin: 20px 0;
  text-align: center;
}

.training-page .training-cta .btn {
  border: 0;
  border-radius: 50px;
  font-size: 20px;
  line-height: 20px;
  padding: 12px 24px;
}

/* ===== TRAINING PAGE — AGENDA SECTION ===== */
.training-page .training-agenda {
  background: var(--white);
  padding: 60px 0 80px;
}

.training-page .agenda-section-title {
  font-size: 35px;
  font-weight: 400;
  line-height: 35px;
  text-transform: uppercase;
  text-align: center;
  color: var(--text-dark);
  margin: 0;
}

.training-page .agenda-subtitle {
  text-align: center;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 10px 0 50px;
}

/* Two-column grid */
.training-page .agenda-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.training-page .agenda-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.training-page .agenda-card-top {
  padding: 0 0 24px;
}

/* Badge: flat outlined tag — a label, not a button */
.training-page .agenda-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 16px;
}

.training-page .agenda-badge--workshop {
  color: var(--red);
  border: 1.5px solid var(--red);
  background: transparent;
}

.training-page .agenda-badge--training {
  color: var(--navy);
  border: 1.5px solid var(--navy);
  background: transparent;
}

/* Large bold red Playfair title */
.training-page .agenda-card-top h3 {
  font-family: "Playfair", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  text-transform: uppercase;
  margin: 0;
}

/* Description: navy block with white text — untouched */
.training-page .agenda-desc {
  background: var(--navy);
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
  margin: 0;
  padding: 20px 24px;
}

/* Bordered wrapper: desc + body + footer */
.training-page .agenda-card-inner {
  border: 2px solid var(--navy);
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.training-page .agenda-card-inner::after {
  content: "";
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 170px;
  height: 170px;
  background: url("images/logo.png") center / contain no-repeat;
  opacity: 0.15;
  pointer-events: none;
}

/* Dates block: white background */
.training-page .agenda-card-body {
  background: var(--white);
  padding: 24px 24px 0;
  flex: 1;
}

.training-page .agenda-sessions-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--navy);
  margin: 0 0 12px;
}

.training-page .agenda-sessions-label .fas {
  color: var(--red);
  margin-right: 6px;
}

.training-page .agenda-dates {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Date chips: simple flat tags */
.training-page .agenda-date-chip {
  display: inline-block;
  background: var(--light-gray);
  border: 1px solid #ccc;
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 3px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.training-page .agenda-date-chip:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.training-page .agenda-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.training-page .agenda-meta li {
  font-size: 14px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 9px;
}

.training-page .agenda-meta .fas {
  color: var(--red);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

/* CTA: matches the standard site .btn exactly */
.training-page .agenda-card-footer {
  padding: 24px 24px 28px;
  text-align: center;
}

.training-page .agenda-btn {
  display: inline-block;
  text-decoration: none;
  color: var(--white);
  background: var(--red);
  border: 0;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 14px;
  padding: 10px 22px;
  transition: all .2s ease;
}

.training-page .agenda-btn:hover {
  background: var(--navy);
  color: var(--white);
}

/* ===== AGENDA CARDS RESPONSIVE ===== */
@media (max-width: 900px) {
  .training-page .agenda-grid {
    gap: 28px;
  }
  .training-page .agenda-card-top h3 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .training-page .agenda-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .training-page .agenda-card-top h3 {
    font-size: 26px;
  }
}

/* ===== COACHING PAGE DESKTOP PARITY ===== */
.coaching-page .coaching-hero {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  height: 350px;
  padding: 0;
  display: grid;
  align-items: center;
}

.coaching-page .coaching-hero .container {
  width: calc(100% - 200px);
  max-width: none;
  margin: 0 auto;
}

.coaching-page .coaching-hero h2 {
  font-size: 35px;
  font-weight: 400;
  line-height: 35px;
  margin: 0 0 20px;
}

.coaching-page .coaching-hero h4 {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
}

.coaching-page .coaching-services {
  height: 460px;
  padding: 30px 0;
}

.coaching-page .coaching-services .section-title,
.coaching-page .coaching-steps .section-title,
.coaching-page .coaching-cta .section-title {
  font-size: 35px;
  font-weight: 400;
  line-height: 35px;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
}

.coaching-page .coaching-services .section-title,
.coaching-page .coaching-cta .section-title {
  color: var(--text-dark);
}

.coaching-page .coaching-service-card {
  margin: 30px auto 0;
  max-width: 820px;
  border-left: 4px solid var(--red);
  background: var(--white);
  border-radius: 0 12px 12px 0;
  padding: 32px 36px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.coaching-page .coaching-service-card h3 {
  margin: 0 0 16px;
  font-family: "Playfair", sans-serif;
  font-size: 29px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

.coaching-page .coaching-description {
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-dark);
  margin: 0 0 24px;
}

.coaching-page .coaching-info-list {
  list-style: none;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid #e8e8e8;
  display: grid;
  gap: 14px;
}

.coaching-page .coaching-info-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text-dark);
}

.coaching-page .coaching-info-list li i {
  color: var(--red);
  font-size: 16px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.coaching-page .coaching-info-list li strong {
  font-weight: 600;
  color: var(--navy);
}

.coaching-page .coaching-steps {
  background: var(--navy);
  color: var(--white);
  height: 601px;
  padding: 30px 0 0;
}

.coaching-page .coaching-steps .section-title {
  color: var(--white);
}

.coaching-page .coaching-steps-stray {
  display: inline;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 17px;
  font-weight: 400;
  line-height: 17px;
  color: var(--white);
}

.coaching-page .coaching-steps-list {
  margin-top: 18px;
}

.coaching-page .coaching-step {
  min-height: 150px;
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 20px;
}

.coaching-page .coaching-step-icon {
  width: 90px;
  height: 90px;
  border-radius: 999px;
  background: var(--white);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .3s ease-in-out;
}

.coaching-page .coaching-step-icon::after {
  content: "";
  position: absolute;
  top: 90px;
  left: 45px;
  width: 0;
  height: 150px;
  border-left: 5px solid var(--white);
}

.coaching-page .coaching-step:last-child .coaching-step-icon::after {
  display: none;
}

.coaching-page .coaching-step:hover .coaching-step-icon {
  background: var(--red);
}

.coaching-page .coaching-step:hover .coaching-step-icon svg {
  color: var(--white);
}

.coaching-page .coaching-step-active .coaching-step-icon {
  background: var(--red);
}

.coaching-page .coaching-step-icon svg {
  width: 80px;
  height: 80px;
  fill: var(--navy);
  color: rgba(0, 0, 0, 0.69);
}

.coaching-page .coaching-step-active .coaching-step-icon svg {
  color: var(--white);
}

.coaching-page .coaching-step-content h6 {
  margin: 0;
  font-family: "Playfair", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: var(--white);
}

.coaching-page .coaching-step-content p {
  margin: 15px 0 0;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  color: var(--white);
}

.coaching-page .coaching-cta {
  background: var(--light-gray);
  height: 400px;
  padding: 0;
  display: grid;
  align-items: center;
  text-align: center;
}

.coaching-page .coaching-cta .section-text {
  display: inline;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 17px;
  font-weight: 400;
  line-height: 17px;
  color: var(--text-dark);
}

.coaching-page .coaching-cta .btn {
  border: 0;
  border-radius: 50px;
  margin-top: 20px;
  font-size: 20px;
  line-height: 20px;
  padding: 12px 24px;
}

/* ===== CONTACT PAGE DESKTOP PARITY ===== */
.contact-page .contact-hero {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  height: 350px;
  padding: 0;
  display: grid;
  align-items: center;
}

.contact-page .contact-hero .container {
  width: calc(100% - 200px);
  max-width: none;
  margin: 0 auto;
}

.contact-page .contact-hero h2 {
  margin: 0 0 20px;
  font-size: 35px;
  font-weight: 400;
  line-height: 35px;
  text-transform: uppercase;
}

.contact-page .contact-hero h4 {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
}

.contact-page .contact-form-section {
  height: 454px;
  padding: 30px 0;
}

.contact-page .contact-form-section .contact-wrap {
  max-width: 1140px;
}

.contact-page .contact-form-section .section-title {
  margin: 10px 0 0;
  font-size: 35px;
  font-weight: 400;
  line-height: 35px;
  color: var(--text-dark);
  text-align: center;
  text-transform: uppercase;
}

.contact-page .contact-form {
  width: calc(100% - 20px);
  margin: 20px auto 0;
  display: block;
  padding-bottom: 30px;
}

.contact-page .contact-form .form-row-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 45.5px;
  margin-bottom: 45px;
}

.contact-page .contact-form input,
.contact-page .contact-form textarea {
  border: 1px solid #f0f0f0;
  border-radius: 0;
  background: #fff;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 17px;
  font-weight: 400;
  line-height: 25.5px;
  color: var(--text-dark);
  padding: 5px 10px;
}

.contact-page .contact-form input {
  height: 37.5px;
}

.contact-page .contact-form textarea {
  min-height: 100px;
  height: 100px;
  margin-bottom: 25px;
  resize: none;
}

.contact-page .contact-form input::placeholder,
.contact-page .contact-form textarea::placeholder {
  color: #666;
}

.contact-page .contact-submit {
  display: block;
  width: 100%;
  margin: 0;
  height: 47.5px;
  border: 1px solid transparent;
  border-radius: 50px;
  background: var(--red);
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 25.5px;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 10px;
}

.contact-page-body footer,
.contact-page-body .site-footer {
  margin-top: -20px;
}

.news-page-body footer,
.news-page-body .site-footer {
  margin-top: -20px;
}

/* ===== POST PAGE DESKTOP PARITY ===== */
.post-page .post-hero {
  background: var(--navy);
  color: var(--white);
  height: 350px;
  padding: 0;
  display: grid;
  align-items: center;
}

.post-page .post-hero .container {
  width: calc(100% - 200px);
  max-width: none;
  margin: 0 auto;
  text-align: center;
}

.post-page .post-hero h1 {
  margin: 0 0 20px;
  font-family: "Playfair", sans-serif;
  font-size: 42px;
  line-height: 50.4px;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
}

.post-page .post-article {
  padding: 48px 0 0;
}

.post-page {
  padding-bottom: 26px;
}

.post-page .post-article .container {
  width: min(720px, calc(100% - 40px));
  max-width: none;
  margin: 0 auto;
}

/* --- Meta bar --- */
.post-page .post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  margin: 0 0 32px;
  padding: 0 0 24px;
  border-bottom: 1px solid #e0e0e0;
  color: #555;
}

.post-page .post-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 26px;
}

.post-page .post-info-item i {
  color: var(--red);
  font-size: 15px;
  width: 18px;
  text-align: center;
}

.post-page .post-info-item .info-text,
.post-page .post-info-item .info-text a {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  color: #555;
  text-decoration: none;
}

.post-page .post-info-item .info-text a:hover {
  color: var(--red);
}

/* --- Article body --- */
.post-page .post-content {
  margin: 0;
}

.post-page .post-content p,
.post-page .post-content li {
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-dark);
}

.post-page .post-content p {
  margin: 0 0 28px;
}

/* Intro paragraph & pull-quote styling for italic paragraphs */
.post-page .post-content p:first-child {
  font-size: 19px;
  line-height: 1.7;
  color: #333;
}

/* --- Subheadings --- */
.post-page .post-content h4 {
  margin: 48px 0 16px;
  padding: 0 0 0 16px;
  font-family: "Playfair", sans-serif;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 700;
  text-transform: none;
  color: var(--navy);
  border-left: 3px solid var(--red);
}

/* --- Ordered & unordered lists --- */
.post-page .post-content ol,
.post-page .post-content ul {
  margin: 0 0 28px 28px;
  padding: 0;
}

.post-page .post-content li {
  margin: 0 0 14px;
  padding-left: 4px;
}

.post-page .post-content li:last-child {
  margin-bottom: 0;
}

.post-page .post-content li strong {
  font-weight: 700;
  color: var(--navy);
}

/* --- Author attribution box --- */
.post-page .post-content p:last-child:has(em strong),
.post-page .post-content p:last-child:has(strong em) {
  margin-top: 48px;
  padding: 20px 24px;
  background: var(--light-gray);
  border-left: 3px solid var(--red);
  border-radius: 0 6px 6px 0;
  font-style: normal;
  color: var(--navy);
}

.post-page-body footer,
.post-page-body .site-footer {
  margin-top: 0;
}

/* ===== NEWS PAGE DESKTOP PARITY ===== */
.news-page .news-hero {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  height: 350px;
  padding: 0;
  display: grid;
  align-items: center;
}

.news-page .news-hero .container {
  width: calc(100% - 200px);
  max-width: none;
  margin: 0 auto;
}

.news-page .news-hero h2 {
  margin: 0 0 20px;
  font-size: 35px;
  font-weight: 400;
  line-height: 35px;
  text-transform: uppercase;
}

.news-page .news-hero h4 {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
}

.news-page .news-feed {
  height: auto;
  padding: 56px 0;
}

.news-page .news-feed .container {
  max-width: 1140px;
  padding-top: 0;
}

.news-page .news-list {
  width: 100%;
  margin: 0 auto;
  display: block;
}

.news-page .pafe-posts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.news-page .single-post {
  width: auto;
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.news-page .single-post:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.news-page .featured-image-outer {
  display: none;
}

.news-page .post-content-outer {
  padding: 28px 28px 24px;
}

.news-page .post-title {
  margin: 0 0 14px;
}

.news-page .post-title a {
  font-family: "Playfair", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-page .post-title a:hover {
  color: var(--red);
}

.news-page .post-date {
  margin-bottom: 16px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #888;
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-page .post-date::before {
  content: "\f073";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  color: var(--red);
}

.news-page .post-excerpt {
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #555;
}

.news-page .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--red);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.news-page .read-more::after {
  content: "\2192";
  transition: transform 0.2s ease;
}

.news-page .read-more:hover {
  gap: 10px;
}

.news-page .read-more:hover::after {
  transform: translateX(2px);
}

.news-page .news-cta {
  background: var(--light-gray);
  height: 400px;
  padding: 0;
  display: block;
  text-align: center;
}

.news-page .news-cta .container {
  padding-top: 111px;
}

.news-page .news-cta .section-title {
  margin: 0;
  font-size: 35px;
  font-weight: 400;
  line-height: 35px;
  text-transform: uppercase;
  color: var(--text-dark);
}

.news-page .news-cta .section-text {
  display: block;
  margin-top: 21px;
  margin-bottom: 0;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 17px;
  font-weight: 400;
  line-height: 17px;
  color: var(--text-dark);
}

.news-page .news-cta .btn {
  margin-top: 27px;
  border: 0;
  border-radius: 50px;
  font-size: 20px;
  line-height: 20px;
  padding: 12px 24px;
}

/* ===== PAGE TEMPLATES RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  .split,
  .grid-3,
  .about-split,
  .about-split.reverse {
    grid-template-columns: 1fr;
  }

  .form-row-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .page-section { padding: 58px 0; }

  .section-text,
  .card p,
  .post-content p,
  .post-content li {
    font-size: 17px;
  }

  .grid-2,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .news-card {
    grid-template-columns: 1fr;
  }

  .news-card .image-placeholder {
    border-radius: 16px 16px 0 0;
    min-height: 120px;
  }

  .coaching-details {
    font-size: 17px;
  }
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children inside feature grids and footer columns */
.reveal-group > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal-group.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-group.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-group.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-group.is-visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-group.is-visible > *:nth-child(4) { transition-delay: 0.3s; }

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-group > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== MOBILE/TABLET ADAPTATION (DESKTOP-SAFE) ===== */
@media (max-width: 1024px) {
  #siteHeader {
    position: relative;
    z-index: 40;
    min-height: 48px; /* Match mobile nav-wrap height */
  }

  .site-header {
    height: auto;
  }

  .nav-wrap {
    min-height: 48px;
    padding: 10px 0;
    gap: 12px;
    z-index: 41;
  }

  .header-logo {
    order: 1;
  }

  .brand {
    order: 2;
  }

  .menu-toggle {
    order: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .menu-toggle-icon {
    display: none;
  }

  .menu-toggle::before {
    content: "\f0c9";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 22px;
    line-height: 1;
    color: var(--navy);
  }

  .menu-toggle[aria-expanded="true"]::before {
    content: "\f00d";
  }

  .brand h2 {
    font-size: 30px;
    line-height: 30px;
  }

  nav#mainNav {
    top: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    z-index: 42;
  }

  .menu {
    padding: 0 10px 10px;
    gap: 0;
  }

  .menu li + li {
    border-top: 1px solid #f0f0f0;
  }

  .menu a {
    padding: 15px 10px;
  }

  .menu a[aria-current="page"] {
    border-bottom: 2px solid rgba(229, 9, 19, 0.6);
  }

  .menu a.nav-cta {
    display: flex;
    width: 100%;
    margin-top: 0;
    padding: 15px 10px;
    border-radius: 0;
    background: transparent;
    color: var(--navy);
    font-size: 16px;
    line-height: 16px;
  }

  .menu a.nav-cta:hover,
  .menu a.nav-cta:focus {
    background: transparent;
    color: var(--red);
  }

  .about-page .about-split,
  .about-page .about-split.reverse,
  .about-page .about-founder-wrap {
    width: 100%;
    max-width: none;
  }

  .about-page .about-split,
  .about-page .about-split.reverse {
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
    gap: 20px;
  }

  .about-page .about-founder-wrap {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 28px;
  }

  .about-page .about-img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .about-page .founder-img {
    width: 100%;
    max-width: 180px;
    height: auto;
  }

  .training-page .training-img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .post-page .post-article .container {
    width: min(720px, calc(100% - 28px));
    max-width: none;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .nav-wrap {
    min-height: 72px;
    padding: 12px 0;
    align-items: center;
    gap: 8px;
  }

  .brand h2 {
    font-size: 22px;
    line-height: 22px;
    letter-spacing: -0.5px;
    word-spacing: 1px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .menu-toggle-icon {
    display: none;
  }

  .menu-toggle::before {
    content: "\f0c9";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 22px;
    line-height: 1;
    color: var(--navy);
  }

  .menu-toggle[aria-expanded="true"]::before {
    content: "\f00d";
  }

  .header-logo {
    display: inline-flex;
    align-self: center;
    align-items: center;
    padding: 5px 9px 8px;
    border-radius: 0 0 14px 14px;
    box-shadow: none;
    margin-top: -8px;
    margin-bottom: 0;
  }

  .header-logo-img {
    width: auto;
    height: 52px;
  }

  nav#mainNav {
    left: 0;
    right: 0;
    top: 100%;
  }

  .menu a {
    font-size: 16px;
    line-height: 16px;
  }

  .menu a .fa-home {
    font-size: 16px;
  }

  .hero,
  .about,
  .why-head,
  .features,
  .why-detail,
  .cta {
    height: auto;
    min-height: 0;
  }

  .hero,
  .about,
  .features,
  .why-detail,
  .cta {
    padding: 56px 0;
  }

  .why-head {
    padding: 36px 0 8px;
  }

  .hero .content {
    width: min(var(--container), calc(100% - 28px));
  }

  .hero h2,
  .about h2,
  .why-head h2,
  .why-detail h2,
  .cta h2 {
    font-size: 30px;
    line-height: 1.12;
    margin-bottom: 16px;
  }

  .hero h4 {
    font-size: 19px;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .feature {
    height: auto;
    min-height: 0;
    padding: 8px 0 24px;
  }

  .feature h3 {
    margin: 18px 0 14px;
  }

  .feature .btn {
    margin-top: 4px;
  }

  .page-hero,
  .about-page .about-hero,
  .training-page .training-hero,
  .coaching-page .coaching-hero,
  .contact-page .contact-hero,
  .news-page .news-hero,
  .post-page .post-hero {
    height: auto;
    padding: 72px 0 44px;
  }

  .about-page .about-hero .container,
  .training-page .training-hero .container,
  .coaching-page .coaching-hero .container,
  .contact-page .contact-hero .container,
  .news-page .news-hero .container,
  .post-page .post-hero .container {
    width: min(var(--container), calc(100% - 28px));
    max-width: none;
  }

  .page-hero h2,
  .about-page .about-hero h2,
  .training-page .training-hero h2,
  .coaching-page .coaching-hero h2,
  .contact-page .contact-hero h2,
  .news-page .news-hero h2 {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 14px;
  }

  .page-hero h4,
  .about-page .about-hero h4,
  .training-page .training-hero h4,
  .coaching-page .coaching-hero h4,
  .contact-page .contact-hero h4,
  .news-page .news-hero h4 {
    font-size: 19px;
    line-height: 1.4;
  }

  .about-page .about-two-col,
  .about-page .about-founder,
  .about-page .about-cta,
  .training-page .training-offer,
  .training-page .training-steps,
  .training-page .training-testimonial,
  .training-page .training-cta,
  .coaching-page .coaching-services,
  .coaching-page .coaching-steps,
  .coaching-page .coaching-cta,
  .contact-page .contact-form-section,
  .news-page .news-feed,
  .news-page .news-cta {
    height: auto;
    min-height: 0;
    padding: 56px 0;
  }

  .about-page .about-section-title,
  .about-page .about-founder .section-title,
  .about-page .about-cta .section-title,
  .training-page .training-offer .section-title,
  .training-page .training-steps .section-title,
  .training-page .training-testimonial .section-title,
  .training-page .training-cta .section-title,
  .coaching-page .coaching-services .section-title,
  .coaching-page .coaching-steps .section-title,
  .coaching-page .coaching-cta .section-title,
  .news-page .news-cta .section-title {
    font-size: 30px;
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .about-page .about-split,
  .about-page .about-split.reverse,
  .about-page .about-founder-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-page .section-text {
    font-size: 17px;
    line-height: 1.5;
    text-align: left;
  }

  .about-page .about-img {
    width: 100%;
    height: auto;
    max-width: 353px;
    margin: 0 auto;
  }

  .about-page .founder-img {
    width: 100%;
    max-width: 260px;
    height: auto;
    margin: 0 auto;
  }

  .about-page .about-cta .section-text {
    text-align: center;
  }

  .training-page .training-offer .card h3,
  .training-page .training-testimonial .testimonial h3,
  .coaching-page .coaching-service-card h3,
  .news-page .post-title a {
    font-size: 25px;
    line-height: 1.2;
  }

  .training-page .training-steps-list {
    margin-top: 24px;
  }

  .training-page .training-step,
  .coaching-page .coaching-step {
    min-height: 0;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: flex-start;
    padding-bottom: 16px;
  }

  .training-page .training-step:last-child,
  .coaching-page .coaching-step:last-child {
    padding-bottom: 0;
  }

  .training-page .step-icon,
  .coaching-page .coaching-step-icon {
    width: 56px;
    height: 56px;
  }

  .training-page .step-icon svg,
  .coaching-page .coaching-step-icon svg {
    width: 46px;
    height: 46px;
  }

  .training-page .step-icon::after,
  .coaching-page .coaching-step-icon::after {
    top: 56px;
    left: 27px;
    height: 72px;
    border-left-width: 3px;
  }

  .coaching-page .coaching-step {
    position: relative;
  }

  .coaching-page .coaching-step::after {
    content: "";
    position: absolute;
    left: 27px;
    top: 56px;
    bottom: 0;
    border-left: 3px solid var(--white);
  }

  .coaching-page .coaching-step:last-child::after {
    display: none;
  }

  .coaching-page .coaching-step-icon::after {
    display: none;
  }

  .training-page .step-content h6,
  .coaching-page .coaching-step-content h6 {
    font-size: 17px;
    line-height: 1.35;
  }

  .training-page .step-content p,
  .coaching-page .coaching-step-content p {
    margin-top: 8px;
    font-size: 17px;
    line-height: 1.5;
  }

  .training-page .training-agenda {
    padding: 40px 0 50px;
  }

  .training-page .agenda-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .coaching-page .coaching-description,
  .coaching-page .coaching-info-list li,
  .coaching-page .coaching-steps-stray,
  .coaching-page .coaching-cta .section-text,
  .news-page .news-cta .section-text {
    display: block;
    font-size: 17px;
    line-height: 1.5;
  }

  .coaching-page .coaching-steps-list {
    margin-top: 24px;
  }

  .coaching-page .coaching-service-card {
    padding: 24px 22px;
    margin-top: 20px;
  }

  .contact-page .contact-form-section .contact-wrap {
    max-width: none;
  }

  .contact-page .contact-form {
    width: 100%;
    margin-top: 18px;
    padding-bottom: 0;
  }

  .contact-page .contact-form .form-row-3 {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 14px;
  }

  .contact-page .contact-form input {
    height: auto;
  }

  .contact-page .contact-form textarea {
    min-height: 140px;
    height: 140px;
    margin-bottom: 14px;
    resize: vertical;
  }

  .contact-page .contact-submit {
    height: auto;
  }

  .post-page {
    padding-bottom: 0;
  }

  .post-page .post-hero h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .post-page .post-article {
    padding: 30px 0 96px;
  }

  .post-page .post-meta {
    flex-direction: column;
    gap: 12px;
  }

  .post-page .post-content h4 {
    font-size: 20px;
    line-height: 1.3;
    margin-top: 36px;
    padding-left: 12px;
  }

  .post-page .post-content ol,
  .post-page .post-content ul {
    margin-left: 22px;
  }

  .post-page .post-content p:last-child:has(em strong),
  .post-page .post-content p:last-child:has(strong em) {
    padding: 16px 18px;
  }

  .news-page .news-feed .container,
  .news-page .news-cta .container {
    padding-top: 0;
  }

  .news-page .news-list {
    width: 100%;
  }

  .news-page .pafe-posts {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news-page .post-content-outer {
    padding: 20px 20px 18px;
  }

  .news-page .post-title a {
    font-size: 21px;
  }

  .news-page .post-date,
  .news-page .post-excerpt {
    margin-bottom: 14px;
  }

  .news-page .read-more {
    margin-bottom: 0;
  }

  .post-page-body footer,
  .post-page-body .site-footer {
    margin-top: 0;
  }

  .copyright {
    line-height: 1.7;
  }

  .copyright .designed-by {
    display: block;
    margin-top: 2px;
  }
}
