/* Global reset & base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: #f5f3f2;
  color: #1f1f23;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Utility wrapper */
.wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(245, 243, 242, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #ddd3cf;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo a {
  color: inherit;              /* use the header text colour */
  text-decoration: none;       /* remove underline */
  font-weight: 900;            /* Inter Black */
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  text-transform: uppercase;
}

.logo a:hover {
  opacity: 0.85;               /* optional small interaction effect */
}

.logo {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-weight: 900; /* Inter Black */
  letter-spacing: 0.03em;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: default;
  margin-right: auto;
}

.main-nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.main-nav a {
  text-decoration: none;
  color: #303036;
  position: relative;
  padding-bottom: 2px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: #7b2236;
  transition: width 0.2s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #303036;
  margin: 4px 0;
}

/* Hero */
.hero {
  padding: 6rem 0 4rem;
  background: #2B1B22; /* charcoal-plum */
  color: #FFFFFF;
}

/* Hero inner block */
.hero-inner {
  max-width: 46rem;
  text-align: left;
}

.hero-title {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: clamp(2.5rem, 3.6vw, 3.2rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
}

.hero-subtitle {
  font-size: 1.15rem;
  max-width: 40rem;
  margin-bottom: 1.1rem; /* tightened spacing to CTA */
  color: rgba(255, 255, 255, 0.78);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}

.hero-cta-note {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  background: #7b2236; /* muted burgundy */
  color: #f5f3f2;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

.btn-primary:hover {
  background: #641a2b;
}

/* Dividers */
.divider-horizontal {
  width: 100%;
  height: 1px;
  background: #d6ccc8;
  margin-top: 2.5rem;
}

.hero .divider-horizontal {
  background: rgba(255, 255, 255, 0.14);
  margin-top: 3rem;
}

.divider-horizontal.subtle {
  background: #e1d7d3;
}

/* Sections */
.section {
  padding: 4.2rem 0;
  border-top: 1px solid #e1d7d3;   /* subtle divider between sections */
}

/* No divider on the very first section */
.section:first-of-type {
  border-top: none;
}

/* No extra line on dark sections – the background change is enough */
#process,
.closing-cta {
  border-top: none;
}

.section-title {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 1.8rem;
}

.section-title.with-underline {
  display: inline-block;
  position: relative;
  padding-bottom: 0.25rem;
}

.section-title.with-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: #7b2236;
}

.section-intro {
  max-width: 40rem;
  margin-bottom: 1.9rem;
  color: #4b4b52;
  font-size: 1.02rem;
  line-height: 1.8;
}

/* Services grid (What I do & Training cards) */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.service-card {
  padding: 1.6rem 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #e0d6d1;
  background: rgba(255, 255, 255, 0.9);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease;
}

.service-card h3 {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 1rem;
  color: #4b4b52;
}

/* Hover depth only on devices that actually have hover (desktop / laptop) */
@media (hover: hover) and (pointer: fine) {
  .service-card:hover,
  .service-card:focus-within {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    border-color: #c6b7af;
    background: #ffffff;
  }
}

/* extra spacing under training cards */
#training .training-card-container {
  margin-bottom: 2.4rem;
}

/* Why list */
.why-list {
  list-style: none;
  margin-top: 1rem;
}

.why-list li {
  margin-bottom: 0.7rem;
  padding-left: 1.1rem;
  position: relative;
  font-size: 1rem;
}

.why-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #7b2236;
}

/* Proof / logo strip */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

/* Client logo grid under testimonials */
.client-logo-grid {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
  align-items: center;
}

.client-logo-grid li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo-grid img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 220px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid #e0d6d1;
  padding: 0.4rem;
}

.logo-pill {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #d6ccc8;
  font-size: 0.8rem;
  color: #4b4b52;
  background: rgba(255, 255, 255, 0.6);
}

.micro-testimonials {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.9rem;
  font-size: 1rem;
  color: #4b4b52;
}

.micro-source {
  display: inline-block;
  margin-left: 0.4rem;
  color: #817378;
  font-size: 0.85rem;
}

/* About */
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 0.9rem;
  font-size: 1rem;
}

.about-points {
  list-style: none;
  margin-top: 0.7rem;
}

.about-points li {
  margin-bottom: 0.55rem;
  font-size: 1rem;
  padding-left: 1.1rem;
  position: relative;
}

.about-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #7b2236;
}

.about-photo img {
  width: 100%;
  max-width: 320px;
  border-radius: 1.5rem;
  display: block;
  margin: 0 auto;
  object-fit: cover;
}

/* Process */
#process {
  background: #3A2831;
  color: #FFFFFF;
  padding: 5rem 0;
}

#process .section-title {
  color: #FFFFFF;
}

#process .section-title.with-underline::after {
  background: #E5CED5;
}

.process-list {
  display: grid;
  gap: 1.75rem;
  margin-top: 1.2rem;
}

.process-item {
  position: relative;
}

.process-number {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #E5CED5;
  margin-bottom: 0.25rem;
}

.process-item h3 {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  color: #FFFFFF;
}

.process-item p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
}

.process-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

/* Visual break */
.visual-break img {
  width: 100%;
  display: block;
  max-height: 420px;
  object-fit: cover;
}

/* Sample decks */
.sample-tiles {
  display: grid;
  gap: 2.4rem;
  margin-top: 1.5rem;
}

.sample-tile {
  border-radius: 1.1rem;
  overflow: hidden;
  background: #fdfbfa;
  border: 1px solid #e0d6d1;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.sample-image img {
  width: 100%;
  display: block;
  max-height: 280px;
  object-fit: cover;
}

.sample-tile h3 {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.9rem 1.1rem 0.3rem;
}

.sample-tile p {
  padding: 0 1.1rem 1.1rem;
  margin: 0.65rem 0 0.6rem;
  font-size: 1rem;
  line-height: 1.45;
  color: #3a3a3a;
}

.sample-tile:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
}

.sample-desc {
  font-size: 1rem;
  color: #4a4543;
  margin-top: 0.35rem;
  line-height: 1.45;
}

.more-link {
  margin-top: 1.2rem;
  font-size: 1rem;
}

.more-link a {
  color: #7b2236;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.18s ease;
}

.more-link a:hover {
  border-color: #7b2236;
}

/* Industries */
.industry-list {
  list-style: none;
  columns: 2;
  column-gap: 2rem;
  margin-top: 0.7rem;
  font-size: 1rem;
}

.industry-list li {
  margin-bottom: 0.25rem;
}

/* Training (old bullet list, if used anywhere) */
.training-list {
  list-style: none;
  margin-top: 0.7rem;
}

.training-list li {
  margin-bottom: 0.55rem;
  font-size: 1rem;
}

/* Testimonials */
.long-testimonial p {
  margin-bottom: 0.8rem;
  color: #3b3b42;
  font-size: 1.03rem;
}

.testimonial-source {
  font-size: 0.9rem;
  color: #7a6b71;
}

.pull-quote {
  margin-top: 0.9rem;
  font-style: italic;
  color: #3b3b42;
  font-size: 1.02rem;
}

.pull-source {
  display: inline-block;
  margin-left: 0.4rem;
  font-style: normal;
  font-size: 0.9rem;
  color: #7a6b71;
}

/* Closing CTA */
.closing-cta {
  background: #3A2831;
  color: #FFFFFF;
  padding: 5rem 0 5rem;
}

.closing-cta .section-title {
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 2.2rem;
}

.closing-cta .section-title.with-underline::after {
  background: #E5CED5;
}

.closing-cta .section-intro {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.14rem;
  line-height: 1.78;
  max-width: 40rem;
}

.cta-contact-block {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;   /* button on top, contact info below */
  align-items: flex-start;
  gap: 1rem;
}

/* Fix email link color in CTA */
.closing-cta a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.closing-cta a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Desktop / default CTA button */
.closing-cta .btn-primary {
  font-size: 1.05rem;
  padding: 0.95rem 2.35rem;
  margin: 1.6rem 0 0;
  width: auto;
  display: inline-flex;
}

/* Contact details under the button */
.cta-contact-details p {
  margin-top: 0.45rem;
  font-size: 1.04rem;
  color: rgba(255, 255, 255, 0.82);
}

/* Footer */
.site-footer {
  border-top: 1px solid #ddd3cf;
  padding: 1.8rem 0 2.3rem;
  font-size: 0.9rem;
  color: #6e6267;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-right a {
  color: #7b2236;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color 0.18s ease;
}

.footer-right a:hover {
  border-color: #7b2236;
}

/* Extra space above the training quote line */
.training-quote {
  margin-top: 2.6rem;
}


/* Mobile-first tweaks */
@media (max-width: 767.98px) {
  .section {
    padding: 3.4rem 0;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 1.4rem;
  }

  .section-intro {
    font-size: 0.98rem;
  }

  .industry-list {
    columns: 1;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.25;
    margin-bottom: 1.25rem;
  }

  .header-inner {
    height: 56px;
  }

  .client-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 0.75rem;
    gap: 0.75rem;
  }

  .client-logo-grid img {
    max-width: 100%;
    padding: 0.35rem;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .main-nav {
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: rgba(245, 243, 242, 0.98);
    border-bottom: 1px solid #ddd3cf;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 1.5rem 0.75rem;
    z-index: 9;
  }

  .main-nav a {
    padding: 0.35rem 0;
  }

  /* When nav is open */
  body.nav-open .main-nav {
    display: flex;
  }

  /* Closing CTA – mobile layout */
  .closing-cta {
    padding: 3.5rem 0 3.8rem;
  }

  .closing-cta .section-title {
    margin-bottom: 1.3rem;
  }

  .closing-cta .section-intro {
    margin-bottom: 1.3rem;
    font-size: 1.02rem;
  }

  .cta-contact-block {
    margin-top: 1.3rem;
    gap: 0.75rem;
  }

  .closing-cta .btn-primary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .cta-contact-details p {
    margin-top: 0.3rem;
    font-size: 0.94rem;
  }
}

/* Responsive ≥ 768px */
@media (min-width: 768px) {
  .hero {
    padding: 6rem 0 4rem;
  }

  .hero-cta {
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
  }

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

  .about-grid {
    grid-template-columns: 3fr 2fr;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

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

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .main-nav {
    display: flex;
    flex-direction: row;
    position: static;
    padding: 0;
  }

  .nav-toggle {
    display: none;
  }
}

/* Responsive ≥ 992px */
@media (min-width: 992px) {
  .hero-inner {
    max-width: 46rem;
    margin-left: 4rem;   /* C2: medium inset from the left */
    margin-right: auto;  /* keep it anchored on the left side of the wrapper */
  }

  .process-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }

  .process-divider {
    display: none;
  }

  .industry-list {
    columns: 3;
  }
}
/* Offset anchor scroll so sticky header doesn't hide the section */
#proof,
#training,
#work,
#about,
#contact {
scroll-margin-top: 110px;  /* or 120px */

}