/* ==========================================================================
   Malcolm Sirisena Coaching — palette + type pulled from intent91.co.uk
   Font stand-in: Plus Jakarta Sans (closest free match to their Mona Sans)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* teal accent scale, lifted from intent91's stylesheet */
  --teal-900: #16484B;
  --teal-800: #15565A;
  --teal-700: #146E71;
  --teal-600: #138B8E;
  --teal-500: #1BADAD;
  --teal-400: #35CCCA;
  --teal-300: #64E4DE;
  --teal-200: #9DF2EA;
  --teal-100: #CEF9F5;
  --teal-50:  #F1FCFB;

  /* slate neutrals */
  --ink-900: #0F172A;
  --ink-800: #1E293B;
  --ink-700: #334155;
  --ink-600: #475569;
  --ink-500: #64748B;
  --ink-300: #CBD5E1;
  --ink-100: #F1F5F9;
  --ink-50:  #F8FAFC;

  --gold: #F0C965;
  --white: #FFFFFF;

  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --container: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.wrap--narrow { max-width: 780px; }

h1, h2, h3 { font-weight: 800; line-height: 1.12; color: var(--ink-900); letter-spacing: -0.02em; }

h1 { font-size: clamp(2.4rem, 5vw, 3.7rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.25rem; }

h1 em, h2 em {
  font-style: normal;
  color: var(--teal-500);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 14px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-400);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(53, 204, 202, 0.5); }
  50% { box-shadow: 0 0 0 7px rgba(53, 204, 202, 0); }
}

.section { padding: 104px 0; }
.section--tight { padding: 64px 0; }
.section--dark { background: var(--ink-900); color: var(--ink-300); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark .section-head p { color: var(--ink-300); }
.section--tint { background: var(--teal-50); }

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
}
.section-head p { color: var(--ink-600); margin-top: 14px; font-size: 1.05rem; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100vw;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn--sm { padding: 10px 20px; font-size: 0.88rem; }
.btn--lg { padding: 17px 34px; font-size: 1.02rem; }
.btn--primary {
  background: var(--teal-600);
  color: var(--white);
  box-shadow: 0 8px 20px -6px rgba(19, 139, 142, 0.55);
}
.btn--primary:hover { background: var(--teal-700); transform: translateY(-2px); box-shadow: 0 12px 26px -6px rgba(19, 139, 142, 0.6); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--ghost:hover { border-color: var(--white); transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  color: var(--teal-700);
  border: 1.5px solid var(--teal-600);
}
.btn--outline:hover { background: var(--teal-50); transform: translateY(-2px); }
.btn--white {
  background: var(--white);
  color: var(--teal-700);
  box-shadow: 0 8px 20px -6px rgba(15, 23, 42, 0.35);
}
.btn--white:hover { transform: translateY(-2px); }
.btn--block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--ink-100);
  box-shadow: 0 4px 20px -12px rgba(15,23,42,0.25);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}
.logo span { color: var(--teal-600); }
.nav-links {
  display: flex;
  gap: 32px;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a { color: var(--ink-700); transition: color 0.15s ease; }
.nav-links a:hover { color: var(--teal-600); }
.header-actions { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--ink-800);
  cursor: pointer;
  padding: 4px 8px;
}
.nav-links-mobile {
  display: none;
  flex-direction: column;
  padding: 8px 24px 20px;
  background: var(--white);
  border-bottom: 1px solid var(--ink-100);
}
.nav-links-mobile a {
  padding: 12px 0;
  font-weight: 600;
  color: var(--ink-700);
  border-bottom: 1px solid var(--ink-100);
}
.nav-links-mobile a:last-child { border-bottom: none; }
.nav-links-mobile.is-open { display: flex; }

/* Hero */
.hero {
  background:
    radial-gradient(900px 500px at 85% 10%, rgba(27, 173, 173, 0.18), transparent 60%),
    linear-gradient(160deg, var(--ink-900) 0%, var(--teal-900) 100%);
  color: var(--white);
  padding: 96px 0 110px;
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero h1 { color: var(--white); }
.hero .eyebrow { color: var(--teal-300); }
.hero p.lede {
  font-size: 1.15rem;
  color: var(--ink-300);
  margin: 22px 0 32px;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--ink-500);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 44px;
}
.hero-stats div strong {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--teal-300);
  line-height: 1.2;
}
.hero-stats div span { font-size: 0.83rem; color: var(--ink-300); }
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

.hero-photo, .about-photo, .card-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-photo {
  aspect-ratio: 4 / 5;
  background: var(--teal-800);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--teal-100);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 24px;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 10px, transparent 10px 20px),
    var(--teal-800);
  border: 1.5px dashed rgba(255,255,255,0.25);
  border-radius: var(--radius-lg);
}
.about-photo .photo-placeholder, .card-photo .photo-placeholder {
  color: var(--ink-500);
  background:
    repeating-linear-gradient(45deg, rgba(15,23,42,0.03) 0 10px, transparent 10px 20px),
    var(--ink-100);
  border: 1.5px dashed var(--ink-300);
}
.hero-photo img, .about-photo img, .card-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.hero-card {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--ink-800);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 10px 30px -10px rgba(15,23,42,0.4);
}
.hero-card-stars { color: var(--gold); letter-spacing: 2px; font-size: 0.95rem; }

/* Pain section */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.pain-lede { color: var(--ink-600); margin: 18px 0 28px; font-size: 1.05rem; }
.pain-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.pain-list li {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-left: 4px solid var(--teal-500);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: var(--ink-700);
  font-weight: 500;
  font-size: 0.97rem;
  box-shadow: 0 4px 14px -8px rgba(15,23,42,0.12);
}

/* How I help / steps */
.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.trio-card {
  padding: 36px 32px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--ink-100);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.trio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(15,23,42,0.2);
}
.trio-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 22px;
  box-shadow: 0 8px 18px -6px rgba(19,139,142,0.5);
}
.trio-card p { color: var(--ink-600); margin-top: 10px; font-size: 0.96rem; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-800);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -20px rgba(0,0,0,0.5); }
.card-photo {
  aspect-ratio: 16 / 10;
  background: var(--ink-700);
  border-radius: 0;
}
.card-photo .photo-placeholder { border-radius: 0; }
.service-card .body { padding: 34px; }
.service-card h3 { color: var(--white); font-size: 1.4rem; }
.service-card .tag {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--teal-300);
  background: rgba(27,173,173,0.15);
  padding: 5px 12px;
  border-radius: 100vw;
  margin-bottom: 16px;
}
.service-card p { color: var(--ink-300); margin: 14px 0 18px; font-size: 0.97rem; }
.service-points { list-style: none; margin: 0 0 26px; }
.service-points li {
  padding: 8px 0;
  color: var(--ink-300);
  font-size: 0.93rem;
  display: flex;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.service-points li::before { content: "✓"; color: var(--teal-400); font-weight: 800; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  text-align: center;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px -22px rgba(15,23,42,0.25); }
.price-card--featured {
  border: 2px solid var(--teal-600);
  box-shadow: 0 24px 50px -22px rgba(19,139,142,0.4);
}
.price-card .badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink-900);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 100vw;
  letter-spacing: 0.02em;
}
.price-card h3 { margin-bottom: 4px; }
.price-sub { font-size: 0.85rem; color: var(--ink-500); font-weight: 600; }
.price-card .price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--ink-900);
  margin: 20px 0 6px;
  letter-spacing: -0.02em;
}
.price-card .price span { font-size: 0.95rem; font-weight: 600; color: var(--ink-500); letter-spacing: 0; }
.price-card ul { list-style: none; text-align: left; margin: 22px 0 28px; }
.price-card li {
  padding: 9px 0;
  color: var(--ink-600);
  font-size: 0.92rem;
  display: flex;
  gap: 10px;
  border-top: 1px solid var(--ink-100);
}
.price-card li:first-child { border-top: none; }
.price-card li::before { content: "✓"; color: var(--teal-600); font-weight: 800; }
.pricing-footnote {
  text-align: center;
  margin-top: 40px;
  color: var(--ink-600);
  font-size: 0.95rem;
}
.pricing-footnote a { color: var(--teal-700); font-weight: 700; text-decoration: underline; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.about-photo {
  aspect-ratio: 3 / 4;
  background: var(--ink-100);
  box-shadow: 0 24px 50px -24px rgba(15,23,42,0.3);
}
.about-copy p { color: var(--ink-600); margin-bottom: 16px; font-size: 1.02rem; }
.about-copy h2 { margin-bottom: 20px; }
.about-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.credential {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--teal-200);
  color: var(--teal-800);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 18px;
  border-radius: 100vw;
}

/* Transformations */
.transformation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.transformation-grid img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 14px 34px -18px rgba(15,23,42,0.35);
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  padding: 30px 28px 28px;
  color: var(--ink-600);
  font-size: 0.95rem;
  position: relative;
  box-shadow: 0 10px 30px -18px rgba(15,23,42,0.18);
  display: flex;
  flex-direction: column;
}
.testimonial-stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 1rem;
  margin-bottom: 14px;
}
.testimonial-card p { flex: 1; }
.testimonial-card strong { display: block; color: var(--ink-800); margin-top: 18px; font-size: 0.95rem; }
.testimonial-source {
  font-size: 0.8rem;
  color: var(--ink-500);
  margin-top: 2px;
  align-self: flex-start;
}
a.testimonial-source:hover { color: var(--teal-600); text-decoration: underline; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item summary {
  padding: 20px 52px 20px 24px;
  font-weight: 700;
  color: var(--ink-800);
  cursor: pointer;
  list-style: none;
  position: relative;
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--teal-600);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p {
  padding: 0 24px 22px;
  color: var(--ink-600);
  font-size: 0.96rem;
}

/* CTA band */
.cta-band {
  background:
    radial-gradient(600px 300px at 90% 0%, rgba(53,204,202,0.25), transparent 60%),
    linear-gradient(150deg, var(--teal-700), var(--teal-900));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  box-shadow: 0 30px 60px -30px rgba(19,139,142,0.5);
}
.cta-band h2 { color: var(--white); margin-bottom: 10px; }
.cta-band p { color: var(--teal-100); max-width: 440px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: center;
}
.contact-card {
  padding: 30px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--ink-100);
  background: var(--white);
}
.contact-card .label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--teal-600);
  margin-bottom: 10px;
}
.contact-card a, .contact-card span { font-weight: 600; color: var(--ink-800); }
.contact-card a:hover { color: var(--teal-600); }

/* Footer */
.site-footer {
  background: var(--ink-900);
  color: var(--ink-300);
  padding: 48px 0;
  font-size: 0.92rem;
}
.site-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-socials { display: flex; gap: 22px; }
.footer-socials a { color: var(--ink-300); font-weight: 600; }
.footer-socials a:hover { color: var(--teal-300); }

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--ink-100);
  transform: translateY(110%);
  transition: transform 0.3s ease;
}
.sticky-cta.is-shown { transform: none; }

/* Responsive */
@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .hero { padding: 56px 0 72px; }
  .hero .wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo { order: -1; aspect-ratio: 16 / 11; }
  .hero-photo img { object-position: center 18%; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }
  .pain-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .trio, .services-grid, .pricing-grid, .testimonial-grid, .contact-grid { grid-template-columns: 1fr; }
  .transformation-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .about-photo { max-width: 340px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .header-actions .btn { display: none; }
  .cta-band { flex-direction: column; text-align: center; padding: 48px 28px; }
  .sticky-cta { display: block; }
  body { padding-bottom: 0; }
}
