:root {
  --ink: #111111;
  --ink-soft: #4a4a4a;
  --muted: #7a7a7a;
  --line: #e6e6e3;
  --bg: #ffffff;
  --bg-alt: #f7f7f5;
  --accent: #4f5bd5;
  --accent-dark: #3c46b0;
  --blue: #3b82f6;
  --magenta: #c026d3;
  --teal: #14b8a6;
  --gold: #d97706;
  --orange: #ee4a24;
  --radius: 14px;
  --serif: "Lora", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); opacity: 0.92; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-accent { background: var(--accent); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  height: 68px;
  position: relative;
}
.nav-side {
  display: flex;
  gap: 28px;
  flex: 1;
}
.nav-left { justify-content: flex-end; }
.nav-right { justify-content: flex-start; }
.nav-side a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav-side a:hover { color: var(--ink); }

.logo {
  font-family: var(--sans);
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.02em;
  font-size: 1.15rem;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}

.nav-actions {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-member-link {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}
.nav-member-link:hover { color: var(--ink); }

.nav-cta {
  padding: 9px 20px;
  font-size: 0.88rem;
}
.nav-cta:hover { box-shadow: 0 0 0 3px rgba(238, 74, 36, 0.22); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.nav-toggle span {
  width: 100%;
  height: 2px;
  background: var(--ink);
  display: block;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--line);
}
.nav-mobile a {
  padding: 12px 0;
  text-decoration: none;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.nav-mobile .btn { margin-top: 14px; align-self: flex-start; }
.nav-mobile.open { display: flex; }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 48px; text-align: center; }
.hero-inner { display: flex; flex-direction: column; align-items: center; }
.eyebrow {
  display: inline-block;
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.15;
  margin: 0 0 20px;
  max-width: 820px;
}
.hero-sub {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 0 28px;
}
.hero-media {
  width: 100%;
  max-width: 900px;
  margin-top: 48px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.35);
}
.ocean {
  width: 100%;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(255, 255, 255, 0.35), transparent 55%),
    linear-gradient(180deg, #bfe3f0 0%, #6fb7cf 22%, #2f7fa3 48%, #1c5f82 70%, #123f57 100%);
  position: relative;
}
.ocean::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(100deg, rgba(255,255,255,0.06) 0 2px, transparent 2px 40px),
    repeating-linear-gradient(95deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 26px);
  mix-blend-mode: overlay;
}

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section.alt { background: var(--bg-alt); }
.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 14px;
  font-weight: 700;
}
.section-head p { color: var(--muted); font-size: 1.02rem; margin: 0; }

.bordered-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 56px 40px;
}

/* ---------- Features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.feature-card {
  background: #fff;
  padding: 40px 36px;
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.feature-icon svg { width: 26px; height: 26px; }
.icon-blue { background: #e8f0fe; color: var(--blue); }
.icon-magenta { background: #fbe8fb; color: var(--magenta); }
.icon-teal { background: #e3faf6; color: var(--teal); }
.icon-gold { background: #ffe3d9; color: var(--orange); }
.feature-card h3 { margin: 0 0 10px; font-size: 1.1rem; }
.feature-card p { margin: 0; color: var(--muted); font-size: 0.96rem; }

/* ---------- Pricing ---------- */
.pricing-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  max-width: 900px;
  margin: 0 auto;
  padding: 32px;
}
.pricing-toggle {
  display: inline-flex;
  background: var(--bg-alt);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 28px;
}
.toggle-btn {
  border: none;
  background: transparent;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  color: var(--muted);
}
.toggle-btn.active { background: var(--ink); color: #fff; }

.pricing-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.pricing-info h3 { margin: 0 0 10px; font-size: 1.3rem; }
.pricing-info > p { margin: 0 0 22px; color: var(--muted); }
.price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 22px; flex-wrap: wrap; }
.price { font-size: 2.2rem; font-weight: 800; }
.price-note { color: var(--muted); font-size: 0.9rem; }

.pricing-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 18px;
  background: var(--bg-alt);
  font-size: 0.95rem;
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  padding-top: 46px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  left: 22px;
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--orange);
  opacity: 0.85;
}
.testimonial-card p {
  margin: 0 0 24px;
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.92rem; }
.author-role { font-size: 0.82rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 48px;
}
.faq-head h2 { font-size: clamp(1.8rem, 3vw, 2.2rem); margin: 0 0 16px; }
.faq-head p { color: var(--muted); margin: 0 0 28px; }
.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.88rem;
}
.mail-icon { font-size: 0.9rem; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-alt);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 22px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}
.faq-icon {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--muted);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--orange); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-answer p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 0.94rem;
}

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); color: #fff; border-top: 4px solid var(--orange); }
.cta-inner { text-align: center; }
.cta-inner h2 { margin: 0 0 12px; font-size: clamp(1.7rem, 3vw, 2.2rem); }
.cta-inner p { margin: 0 0 26px; color: rgba(255, 255, 255, 0.7); }
.cta-band .btn-dark { background: #fff; color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer { padding: 72px 0 28px; border-top: 1px solid var(--line); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.footer-brand p { color: var(--muted); font-size: 0.92rem; max-width: 280px; margin: 14px 0 20px; }
.social-row { display: flex; gap: 10px; }
.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--bg-alt);
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-icon svg { width: 16px; height: 16px; }
.social-icon:hover { background: var(--orange); color: #fff; }
.footer-col h4 { margin: 0 0 16px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.footer-col a {
  display: block;
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.94rem;
  margin-bottom: 12px;
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  color: var(--muted);
  font-size: 0.85rem;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .features-grid { grid-template-columns: 1fr; }
  .pricing-body { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-side, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { justify-content: center; }
  .bordered-box { padding: 40px 20px; }
  .section { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}


/* ---------- Mentored visual layer ----------
   The HTML, section order and layout rules above remain the repository-main baseline.
   This layer changes brand expression only.
*/
:root {
  --paper: #f3efe5;
  --paper-deep: #e9e1d3;
  --white: #fffdfa;
  --ink: #11110f;
  --ink-soft: #393733;
  --muted: #69645d;
  --line: rgba(17, 17, 15, 0.22);
  --bg: var(--paper);
  --bg-alt: var(--paper-deep);
  --accent: #e64a28;
  --accent-dark: #b8331a;
  --blue: #1687e6;
  --magenta: #173b5b;
  --teal: #2a8a72;
  --gold: #e3a528;
  --orange: #e64a28;
  --yellow: #e3a528;
  --navy: #173b5b;
  --radius: 0;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --display: var(--serif);
  --mono: "Courier New", Courier, monospace;
  --max: 1160px;
}

body {
  background:
    radial-gradient(circle at 20% 30%, rgba(17, 17, 15, 0.024) 0 0.8px, transparent 1px),
    var(--paper);
  background-size: 7px 7px;
}

::selection {
  color: var(--white);
  background: var(--orange);
}

.logo {
  display: block;
  width: 172px;
  height: 28px;
  overflow: hidden;
  background: url("../images/mentored-logo.png") center / contain no-repeat;
  filter: brightness(0);
  text-indent: -9999px;
}

.btn {
  min-height: 44px;
  border: 1px solid var(--ink);
  border-radius: 0;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 rgba(17, 17, 15, 0.2);
}

.btn:hover {
  opacity: 1;
  box-shadow: 1px 1px 0 rgba(17, 17, 15, 0.28);
  transform: translate(3px, 3px);
}

.btn-accent {
  border-color: #b8331a;
  background: var(--orange);
}

.site-header {
  background: rgba(243, 239, 229, 0.94);
  backdrop-filter: blur(14px);
}

.nav-side a,
.nav-member-link,
.nav-mobile a {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.nav-toggle span {
  height: 1px;
}

.eyebrow {
  padding: 6px 9px 5px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--yellow);
  font-family: var(--mono);
  font-size: 0.66rem;
  transform: rotate(-1deg);
}

.hero h1,
.section-head h2,
.faq-head h2,
.cta-inner h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.hero-media {
  position: relative;
  border: 1px solid var(--ink);
  border-radius: 0;
  box-shadow: 12px 12px 0 rgba(17, 17, 15, 0.12);
  transform: rotate(-0.45deg);
}

.ocean {
  background:
    linear-gradient(180deg, rgba(23, 59, 91, 0.05), rgba(17, 17, 15, 0.18)),
    url("../images/mark-bouris-banner.jpg") 50% 42% / cover no-repeat;
}

.ocean::before {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 16px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: var(--white);
  background: rgba(17, 17, 15, 0.78);
  content: "MARK BOURIS · MENTORED";
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
}

.bordered-box,
.pricing-card {
  border-color: var(--ink);
  background: rgba(255, 253, 250, 0.52);
}

.features-grid {
  border-color: var(--ink);
  border-radius: 0;
  background: var(--ink);
}

.feature-card {
  background: var(--white);
}

.feature-icon {
  border: 1px solid var(--ink);
  border-radius: 0;
}

.icon-blue { color: var(--navy); background: rgba(23, 59, 91, 0.13); }
.icon-magenta { color: var(--orange); background: rgba(230, 74, 40, 0.13); }
.icon-teal { color: var(--teal); background: rgba(42, 138, 114, 0.13); }
.icon-gold { color: #94630a; background: rgba(227, 165, 40, 0.2); }

.feature-card h3,
.pricing-info h3 {
  font-family: var(--display);
  font-size: 1.25rem;
}

.pricing-toggle {
  border: 1px solid var(--ink);
  border-radius: 0;
}

.toggle-btn {
  border-radius: 0;
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.pricing-features li {
  border-radius: 0;
  background: rgba(227, 165, 40, 0.1);
}

.price {
  font-family: var(--display);
  font-weight: 500;
}

.testimonial-card {
  border-color: var(--ink);
  border-radius: 0;
}

.testimonial-card:nth-child(1) { background: rgba(22, 135, 230, 0.1); }
.testimonial-card:nth-child(2) { background: rgba(23, 59, 91, 0.1); }
.testimonial-card:nth-child(3) { background: rgba(227, 165, 40, 0.12); }

.avatar {
  border: 1px solid var(--ink);
  background: var(--orange);
  font-family: var(--mono);
}

.contact-pill,
.faq-item {
  border-radius: 0;
}

.contact-pill {
  font-family: var(--mono);
  font-size: 0.7rem;
}

.faq-item {
  border-color: var(--ink);
  background: rgba(255, 253, 250, 0.5);
}

.faq-question {
  font-family: var(--display);
  font-size: 1.05rem;
}

.cta-band {
  border-top: 5px solid var(--orange);
  background: var(--ink);
}

.site-footer {
  color: var(--white);
  background: var(--ink);
}

.site-footer .logo {
  filter: none;
}

.site-footer .footer-brand p,
.site-footer .footer-col a,
.site-footer .footer-bottom {
  color: rgba(255, 255, 255, 0.64);
}

.site-footer .footer-col h4 {
  color: var(--orange);
  font-family: var(--mono);
}

.site-footer .social-icon {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 0;
  color: var(--white);
  background: transparent;
}

.site-footer .footer-bottom {
  border-color: rgba(255, 255, 255, 0.24);
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

@media (max-width: 720px) {
  .logo {
    width: 154px;
    height: 25px;
  }

  .hero-media {
    box-shadow: 7px 7px 0 rgba(17, 17, 15, 0.12);
  }
}

/* ---------- Migrated Mentored+ membership page ---------- */
.membership-page {
  min-height: 70vh;
}

.membership-hero {
  padding: 104px 0 72px;
  text-align: center;
}

.membership-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.membership-hero h1 {
  max-width: 940px;
  margin: 18px 0 24px;
  font-family: var(--display);
  font-size: clamp(3.4rem, 7vw, 5.8rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.membership-hero p {
  max-width: 660px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.membership-offer {
  padding-top: 20px;
}

.membership-panel {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr;
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(17, 17, 15, 0.11);
}

.membership-inclusions,
.membership-pricing {
  padding: 52px;
}

.membership-kicker {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.membership-inclusions h2,
.membership-pricing h2 {
  margin: 0;
  font-family: var(--sans);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.membership-inclusions h2 {
  max-width: 580px;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.membership-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.membership-feature-list li {
  display: flex;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.membership-feature-list li span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  font-size: 0.8rem;
  font-weight: 800;
}

.membership-pricing {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  background: var(--ink);
}

.membership-pricing .pricing-toggle {
  align-self: flex-start;
  margin-bottom: 34px;
  background: rgba(255, 255, 255, 0.12);
}

.membership-pricing .toggle-btn.active {
  color: var(--ink);
  background: var(--white);
}

.membership-pricing h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.membership-price-row {
  display: flex;
  flex-direction: column;
  margin: 34px 0;
}

.membership-price-row .price {
  color: var(--orange);
  font-size: clamp(3.4rem, 6vw, 5.3rem);
  line-height: 0.9;
}

.membership-price-row .price-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
}

.membership-pricing .btn {
  align-self: flex-start;
  color: var(--ink);
  background: var(--orange);
}

@media (max-width: 900px) {
  .membership-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .membership-hero {
    padding: 76px 0 48px;
  }

  .membership-hero h1 {
    font-size: clamp(3.1rem, 15vw, 4.8rem);
  }

  .membership-inclusions,
  .membership-pricing {
    padding: 34px 24px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}


/* ---------- Google Doc design refinements · August 2026 ----------
   Styling only: the original page structure and interactions stay in place.
*/
:root {
  --radius: 18px;
  --serif: "EB Garamond", Garamond, Georgia, serif;
  --sans: "Neue Montreal", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --display: var(--serif);
  --mono: var(--sans);
}

.btn {
  border: 0;
  border-radius: 999px;
  font-family: var(--sans);
  box-shadow: 0 5px 14px rgba(17, 17, 15, 0.13);
}

.btn:hover {
  box-shadow: 0 7px 18px rgba(17, 17, 15, 0.18);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--orange);
}

.nav-side a,
.nav-member-link,
.nav-mobile a,
.eyebrow,
.contact-pill,
.site-footer .footer-col h4 {
  font-family: var(--sans);
}

.eyebrow {
  border: 0;
  border-radius: 999px;
  transform: none;
}

.hero-media {
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(17, 17, 15, 0.17);
  transform: none;
}

.ocean::before {
  border: 0;
  border-radius: 999px;
  font-family: var(--sans);
}

.bordered-box {
  border: 0;
  background: transparent;
}

.features-grid {
  gap: 24px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.feature-card {
  overflow: hidden;
  padding: 0 0 30px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(17, 17, 15, 0.09);
}

.feature-card::before {
  display: block;
  height: 230px;
  background-color: var(--paper-deep);
  background-position: center;
  background-size: cover;
  content: "";
}

.feature-card:nth-child(1)::before {
  background-image: url("../images/whatsapp-community-wood.png");
  background-position: center 48%;
}

.feature-card:nth-child(2)::before {
  background-image: url("../images/mark-bouris-banner.jpg");
  background-position: center 43%;
}

.feature-card:nth-child(3)::before {
  background-image: url("../images/mark-bouris-headshot.jpg");
  background-position: center 25%;
}

.feature-card:nth-child(4)::before {
  background-color: var(--white);
  background-image: url("../images/discounted-offerings-card.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.feature-icon {
  display: none;
}

.feature-card h3,
.feature-card p {
  margin-right: 26px;
  margin-left: 26px;
}

.feature-card h3 {
  margin-top: 24px;
  font-size: 1.45rem;
}

.pricing-card {
  border: 0;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(17, 17, 15, 0.1);
}

.pricing-toggle {
  gap: 0;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
}

.toggle-btn {
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--sans);
}

.toggle-btn.active {
  color: var(--ink);
  background: var(--white);
}

.pricing-features li,
.testimonial-card,
.faq-item {
  border: 0;
  border-radius: 16px;
}

.contact-pill,
.site-footer .social-icon {
  border-radius: 999px;
}

.cta-band {
  position: relative;
  min-height: 660px;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: var(--ink);
  background: var(--orange);
}

.cta-band::after {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 43%;
  border-left: 1px solid rgba(17, 17, 15, 0.35);
  background: var(--paper) url("../images/mark-bouris-headshot.jpg") center 18% / cover no-repeat;
  content: "";
  filter: grayscale(1) contrast(1.12);
}

.cta-band::before {
  position: absolute;
  z-index: 3;
  right: max(20px, calc((100vw - 1160px) / 2 + 12px));
  bottom: 68px;
  width: 220px;
  padding: 14px 16px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 6px 6px 0 rgba(17, 17, 15, 0.24);
  content: "MARK BOURIS\A FOUNDER / AUSTRALIAN BUSINESSMAN";
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.04em;
  white-space: pre-line;
  transform: rotate(-3deg);
}

.cta-inner {
  position: relative;
  z-index: 1;
  min-height: 660px;
  padding: 88px 28px 82px;
  text-align: left;
}

.cta-inner > h2,
.cta-inner > p {
  width: calc(57% - 48px);
}

.cta-inner::before {
  display: block;
  margin-bottom: 28px;
  content: "YOUR NEXT MOVE";
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.cta-inner::after {
  position: absolute;
  right: 40%;
  bottom: -28px;
  display: grid;
  place-items: center;
  width: 176px;
  height: 176px;
  border: 4px double rgba(17, 17, 15, 0.72);
  border-radius: 50%;
  content: "M";
  font-family: var(--sans);
  font-size: 4.2rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  opacity: 0.62;
  transform: rotate(9deg);
}

.cta-inner h2 {
  max-width: 650px;
  margin: 0 0 30px;
  font-size: clamp(4.4rem, 7vw, 7rem);
  font-weight: 500;
  line-height: 0.84;
  letter-spacing: -0.06em;
}

.cta-inner p {
  max-width: 560px;
  margin-bottom: 34px;
  color: rgba(17, 17, 15, 0.72);
  font-size: 1.08rem;
}

.cta-band .btn-dark {
  color: var(--white);
  background: var(--ink);
}

.cta-band .btn-dark::after {
  margin-left: 10px;
  content: "↗";
}

@media (max-width: 720px) {
  .bordered-box {
    padding-right: 20px;
    padding-left: 20px;
  }

  .feature-card::before {
    height: 200px;
  }

  .cta-band::after {
    top: auto;
    width: 100%;
    height: 430px;
    border-top: 1px solid rgba(17, 17, 15, 0.35);
    border-left: 0;
    background-position: center 17%;
  }

  .cta-inner {
    min-height: 970px;
    padding: 70px 20px 500px;
  }

  .cta-inner > h2,
  .cta-inner > p {
    width: 100%;
  }

  .cta-inner h2 {
    max-width: 520px;
    font-size: clamp(3.7rem, 16vw, 5.2rem);
  }

  .cta-inner::after {
    right: auto;
    bottom: 330px;
    left: 18px;
    width: 132px;
    height: 132px;
    font-size: 3.2rem;
  }

  .cta-band::before {
    right: 20px;
    bottom: 48px;
    width: 190px;
    font-size: 0.56rem;
  }
}

/* ---------- Mentored team refinements V2 · August 2026 ---------- */
:root {
  --paper: #f7f5f0;
  --paper-deep: #eee9df;
  --bg: var(--paper);
  --bg-alt: var(--paper);
  --accent: #ee4a24;
  --accent-dark: #c83a1b;
  --orange: #ee4a24;
  --sans: "Helvetica Now Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --display: "EB Garamond", Garamond, Georgia, serif;
  --serif: var(--display);
  --mono: var(--sans);
}

body {
  background: var(--paper);
  background-image: none;
}

.section.alt {
  background: var(--paper);
}

.site-header {
  background: rgba(247, 245, 240, 0.96);
}

.nav-inner {
  justify-content: center;
}

.nav-left {
  position: static;
  justify-content: flex-end;
  transform: none;
}

.nav-actions {
  gap: 22px;
}

.eyebrow {
  color: var(--ink);
  background: var(--orange);
}

.hero h1,
.section-head h2,
.faq-head h2,
.cta-inner h2 {
  font-family: var(--display);
  font-weight: 400;
}

.hero h1 {
  max-width: 1020px;
  font-size: clamp(3.2rem, 7vw, 5.4rem);
  line-height: 0.98;
}

.section-head h2,
.faq-head h2 {
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1;
}

.feature-card h3,
.pricing-info h3,
.faq-question {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.feature-card h3 {
  font-size: 1.35rem;
}

.price {
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.ocean::before {
  display: none;
}

.nav-cta:hover,
.cta-band .btn-dark:hover {
  color: var(--white);
  background: var(--orange);
}

.cta-band .btn-dark::after {
  display: none;
  content: none;
}

.cta-inner::after {
  display: none;
  content: none;
}

.cta-band::before {
  right: max(22px, calc((100vw - 1160px) / 2 + 22px));
  bottom: 54px;
  width: auto;
  max-width: 260px;
  padding: 0;
  border: 0;
  color: var(--white);
  background: transparent;
  box-shadow: none;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.78);
  transform: none;
}

@media (max-width: 1080px) {
  .nav-left {
    gap: 18px;
  }

  .nav-side a,
  .nav-member-link {
    font-size: 0.64rem;
  }

  .nav-actions {
    gap: 12px;
  }
}

@media (max-width: 720px) {
  .nav-left {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .cta-band::before {
    right: 20px;
    bottom: 40px;
    width: auto;
  }
}
