/* ============================================
   MATAOE NEVILS — BOOK-STYLE CONSULTANCY
   Professional, warm, liberation-centered
   ============================================ */

:root {
  /* Sidebar / Navigation — warm plum, grounding */
  --sidebar-bg: #3d2944;
  --sidebar-text: #e8dce6;
  --sidebar-accent: #f5c564;
  --sidebar-hover: rgba(245, 136, 107, 0.15);
  --sidebar-active-border: #f5886b;
  --sidebar-width: 240px;

  /* Page / Content Area — clean white, bright, open */
  --page-bg: #ffffff;
  --page-shadow: #e8e4de;
  --text-primary: #2c2335;
  --text-secondary: #5a4d63;
  --text-muted: #8a7f92;

  /* Accents — coral (warmth/welcome) + golden amber + sky blue + lavender */
  --accent-primary: #e86f55;
  --accent-primary-hover: #d45a40;
  --accent-warm: #f5a623;
  --accent-warm-light: #f5c564;
  --accent-soft: #5bb5d5;
  --accent-lavender: #a78ec4;

  /* UI */
  --border-light: #ede6da;
  --card-bg: #ffffff;
  --card-border: #f0e8dc;
  --transition-page: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-ui: 0.25s ease;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Instrument Serif', 'Georgia', serif;
  color: var(--text-primary);
  background: #f5f3f0;
  display: flex;
  min-height: 100vh;
  overflow: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- SIDEBAR ---- */
.sidebar {
  width: var(--sidebar-width);
  min-width: var(--sidebar-width);
  background: var(--sidebar-bg);
  color: var(--sidebar-text);
  display: flex;
  flex-direction: column;
  padding: 2rem 0;
  position: relative;
  z-index: 100;
  height: 100vh;
  overflow-y: auto;
}

.sidebar-header {
  text-align: center;
  padding: 0 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(245, 136, 107, 0.2);
  margin-bottom: 1rem;
}

.sidebar-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.sidebar-subtitle {
  font-family: 'Instrument Serif', serif;
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(212, 219, 215, 0.6);
  margin-top: 0.35rem;
  letter-spacing: 0.01em;
}

.nav-list {
  flex: 1;
  padding: 0.5rem 0;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sidebar-text);
  transition: all var(--transition-ui);
  border-left: 3px solid transparent;
  cursor: pointer;
}

.nav-link:hover {
  background: var(--sidebar-hover);
  color: #fff;
}

.nav-link.active {
  background: var(--sidebar-hover);
  color: #fff;
  border-left-color: var(--sidebar-active-border);
}

.nav-icon {
  width: 1.2rem;
  height: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  flex-shrink: 0;
}

.nav-icon svg {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sidebar-cta {
  display: block;
  margin: 1rem 1.25rem 0;
  padding: 0.7rem 1rem;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-warm) 100%);
  color: #fff;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 12px;
  transition: all var(--transition-ui);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(232, 111, 85, 0.3);
}

.sidebar-cta:hover {
  background: var(--accent-primary-hover);
}

/* ---- MOBILE HEADER ---- */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: var(--sidebar-bg);
  color: var(--sidebar-text);
  align-items: center;
  padding: 0 1rem;
  z-index: 200;
  gap: 1rem;
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--sidebar-text);
  border-radius: 2px;
  transition: var(--transition-ui);
}

.mobile-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 99;
}

/* ---- BOOK / MAIN AREA ---- */
.book-area {
  flex: 1;
  position: relative;
  padding: 2.5rem 3.5rem 2.5rem 2.5rem;
  overflow: hidden;
  height: 100vh;
  z-index: 1;
}

/* ---- DECORATIVE FLOATING DANDELION SEEDS ---- */
.wisp-layer {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.wisp {
  position: absolute;
  fill: none;
  stroke: var(--accent-lavender);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.wisp circle {
  fill: var(--accent-lavender);
  stroke: none;
}

/* 12 wisps: subtle overlay on page surface, lavender color, visible but delicate */
.w1  { width: 38px; top: 3%;  right: -45px; opacity: 0.25; animation: wdrift 35s linear infinite, wsway-a 5s ease-in-out infinite; }
.w2  { width: 44px; top: 12%; right: -50px; opacity: 0.2;  animation: wdrift 48s linear infinite, wsway-b 7s ease-in-out infinite; animation-delay: -8s, 0s; }
.w3  { width: 32px; top: 22%; right: -38px; opacity: 0.22; animation: wdrift 42s linear infinite, wsway-a 6s ease-in-out infinite; animation-delay: -20s, -2s; }
.w4  { width: 40px; top: 32%; right: -46px; opacity: 0.18; animation: wdrift 55s linear infinite, wsway-c 8s ease-in-out infinite; animation-delay: -5s, -1s; }
.w5  { width: 34px; top: 41%; right: -40px; opacity: 0.25; animation: wdrift 38s linear infinite, wsway-b 5.5s ease-in-out infinite; animation-delay: -15s, -3s; }
.w6  { width: 46px; top: 50%; right: -52px; opacity: 0.15; animation: wdrift 52s linear infinite, wsway-a 7.5s ease-in-out infinite; animation-delay: -30s, 0s; }
.w7  { width: 32px; top: 58%; right: -38px; opacity: 0.2;  animation: wdrift 40s linear infinite, wsway-c 6s ease-in-out infinite; animation-delay: -12s, -2s; }
.w8  { width: 42px; top: 66%; right: -48px; opacity: 0.18; animation: wdrift 58s linear infinite, wsway-b 8s ease-in-out infinite; animation-delay: -25s, -4s; }
.w9  { width: 34px; top: 74%; right: -40px; opacity: 0.22; animation: wdrift 44s linear infinite, wsway-a 5s ease-in-out infinite; animation-delay: -38s, -1s; }
.w10 { width: 38px; top: 82%; right: -44px; opacity: 0.15; animation: wdrift 50s linear infinite, wsway-c 7s ease-in-out infinite; animation-delay: -18s, -3s; }
.w11 { width: 36px; top: 90%; right: -42px; opacity: 0.2;  animation: wdrift 46s linear infinite, wsway-b 6s ease-in-out infinite; animation-delay: -32s, 0s; }
.w12 { width: 30px; top: 96%; right: -36px; opacity: 0.15; animation: wdrift 60s linear infinite, wsway-a 8s ease-in-out infinite; animation-delay: -42s, -2s; }

@keyframes wdrift {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-100vw - 60px)); }
}

@keyframes wsway-a {
  0%, 100% { margin-top: 0; }
  50% { margin-top: 10px; }
}

@keyframes wsway-b {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -8px; }
}

@keyframes wsway-c {
  0%, 100% { margin-top: 0; }
  30% { margin-top: 6px; }
  70% { margin-top: -6px; }
}

/* ---- PAGES ---- */
.page {
  position: absolute;
  inset: 0;
  background: var(--page-bg);
  border-radius: 20px;
  box-shadow:
    0 8px 40px rgba(61, 41, 68, 0.08),
    0 2px 8px rgba(61, 41, 68, 0.04);
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(80px);
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.page.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.page.exit-left {
  opacity: 0;
  transform: translateX(-80px);
}

.page.exit-right {
  opacity: 0;
  transform: translateX(80px);
}

/* Page inner padding */
.page-inner {
  padding: 3rem 3.5rem;
  max-width: 960px;
  margin: 0 auto;
}

/* ---- TYPOGRAPHY ---- */
.page-heading {
  font-family: 'Instrument Serif', serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.heading-rule {
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-warm));
  margin: 0.75rem 0 1.5rem;
  border-radius: 2px;
}

.page-intro {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 2rem;
  max-width: 680px;
}

/* ---- HOME PAGE ---- */
.page-inner--home {
  padding: 0;
  max-width: 100%;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: center;
  padding: 3rem 3.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.hero-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-warm));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

.home-heading {
  font-family: 'Instrument Serif', serif;
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.12;
  margin: 0 0 1.25rem;
  letter-spacing: -0.03em;
}

.home-tagline {
  font-family: 'Instrument Serif', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-secondary);
  margin: 0 0 1.5rem;
  line-height: 1.65;
}

.home-cta-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(61, 41, 68, 0.12);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Featured Bar */
.featured-bar {
  background: #f8f8f6;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 1.25rem 3.5rem;
  text-align: center;
}

.featured-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.featured-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.featured-item {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.featured-divider {
  width: 1px;
  height: 14px;
  background: var(--border-light);
}

/* Intro Section */
.home-intro-section {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  padding: 3rem 3.5rem;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}

.section-heading {
  font-family: 'Instrument Serif', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.section-heading--center {
  text-align: center;
}

.section-subheading {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 1.5rem;
  margin-top: -0.5rem;
}

.home-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.text-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent-primary);
  transition: color var(--transition-ui);
  cursor: pointer;
}

.text-link:hover {
  color: var(--accent-primary-hover);
}

.home-intro-image {
  border-radius: 18px;
  overflow: hidden;
}

.home-intro-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(61, 41, 68, 0.1);
}

.image-caption {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  text-align: center;
  font-style: italic;
}

/* Philosophy Section */
.home-philosophy-section {
  padding: 2.5rem 3.5rem;
  max-width: 960px;
  margin: 0 auto;
  border-top: 1px solid var(--border-light);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 12px;
  transition: all var(--transition-ui);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-warm) 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(232, 111, 85, 0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-primary-hover) 0%, var(--accent-primary) 100%);
  box-shadow: 0 8px 28px rgba(232, 111, 85, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-primary);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.btn-secondary:hover {
  border-color: rgba(91, 181, 213, 0.4);
  color: var(--accent-primary);
  box-shadow: 0 4px 16px rgba(91, 181, 213, 0.12);
  transform: translateY(-1px);
}

/* Philosophy items */
.home-philosophy {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
  text-align: left;
}

.philosophy-item {
  background: #ffffff;
  border: 1px solid #e8e4de;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(167, 142, 196, 0.08);
  transition: transform var(--transition-ui), box-shadow var(--transition-ui);
}

.philosophy-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(167, 142, 196, 0.14);
}

.philosophy-number {
  font-family: 'Instrument Serif', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--accent-lavender);
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
  opacity: 0.6;
}

.philosophy-item h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.philosophy-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Services Preview */
.home-services-preview {
  padding: 2.5rem 3.5rem;
  max-width: 960px;
  margin: 0 auto;
  border-top: 1px solid var(--border-light);
}

.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-preview-card {
  background: #ffffff;
  border: 1px solid #e8e4de;
  border-radius: 16px;
  padding: 1.25rem;
  text-align: center;
  transition: all var(--transition-ui);
  cursor: pointer;
  display: block;
  box-shadow: 0 4px 16px rgba(232, 111, 85, 0.06);
}

.service-preview-card:hover {
  border-color: rgba(232, 111, 85, 0.3);
  box-shadow: 0 8px 28px rgba(232, 111, 85, 0.12);
  transform: translateY(-3px);
}

.spc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
  color: var(--accent-primary);
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(232, 111, 85, 0.1), rgba(245, 166, 35, 0.1));
  border-radius: 14px;
  margin-left: auto;
  margin-right: auto;
}

.spc-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-preview-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.service-preview-card p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Bottom CTA */
.home-bottom-cta {
  background: linear-gradient(135deg, var(--sidebar-bg) 0%, #4a2d55 50%, #3a2840 100%);
  padding: 2.5rem 3.5rem;
  border-radius: 0 0 20px 20px;
}

.bottom-cta-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.bottom-cta-content h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.bottom-cta-content p {
  font-size: 1.02rem;
  font-weight: 500;
  color: rgba(212, 219, 215, 0.7);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.home-bottom-cta .btn-primary {
  background: var(--accent-soft);
}

.home-bottom-cta .btn-primary:hover {
  background: var(--accent-primary);
}

/* ---- ABOUT PAGE ---- */
.about-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.about-photo-frame {
  border: 3px solid var(--accent-soft);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(91, 181, 213, 0.12);
}

.about-photo {
  width: 100%;
  height: auto;
  display: block;
}

.about-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.about-roles {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.about-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about-card {
  background: #ffffff;
  border: 1px solid #e8e4de;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(91, 181, 213, 0.06);
}

.about-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-light);
}

.about-card ul {
  list-style: none;
}

.about-card li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  font-weight: 500;
  padding: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
}

.about-card li::before {
  content: '\2013';
  position: absolute;
  left: 0;
  color: var(--accent-soft);
}

.about-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ---- OFFERINGS PAGE ---- */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.offering-card {
  background: #ffffff;
  border: 1px solid #e8e4de;
  border-radius: 16px;
  padding: 1.75rem;
  transition: all var(--transition-ui);
  box-shadow: 0 4px 20px rgba(91, 181, 213, 0.06);
}

.offering-card:hover {
  box-shadow: 0 8px 30px rgba(91, 181, 213, 0.14);
  border-color: rgba(91, 181, 213, 0.3);
  transform: translateY(-2px);
}

.offering-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: var(--accent-primary);
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(232, 111, 85, 0.1), rgba(245, 166, 35, 0.1));
  border-radius: 14px;
}

.offering-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.offering-card h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.offering-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.offering-list {
  list-style: none;
}

.offering-list li {
  font-size: 0.92rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-secondary);
  font-weight: 500;
  padding: 0.25rem 0 0.25rem 1rem;
  position: relative;
}

.offering-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-soft);
}

.offering-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent-primary);
  letter-spacing: 0.02em;
  transition: color var(--transition-ui);
  cursor: pointer;
}

.offering-link:hover {
  color: var(--accent-primary-hover);
}

/* ---- SPEAKING PAGE ---- */
.speaking-topics {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.speaking-topic {
  background: #ffffff;
  border: 1px solid #e8e4de;
  border-left: 3px solid transparent;
  border-image: linear-gradient(180deg, var(--accent-primary), var(--accent-warm)) 1;
  border-image-slice: 1;
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 4px 16px rgba(232, 111, 85, 0.05);
  transition: all var(--transition-ui);
}

.speaking-topic:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 111, 85, 0.1);
}

.speaking-topic h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.speaking-topic p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
  font-weight: 500;
}

.speaking-custom {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--border-light);
}

.speaking-custom p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

/* ---- NARRATIVE STRATEGY PAGE ---- */
.narrative-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.narrative-card {
  background: #ffffff;
  border: 1px solid #e8e4de;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(167, 142, 196, 0.06);
  transition: all var(--transition-ui);
}

.narrative-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(167, 142, 196, 0.12);
  border-color: rgba(167, 142, 196, 0.3);
}

.narrative-card h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.narrative-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
  font-weight: 500;
}

.narrative-principles {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
}

.narrative-principles h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.principle {
  padding: 1rem;
  border-left: 2px solid transparent;
  border-image: linear-gradient(180deg, var(--accent-lavender), var(--accent-soft)) 1;
  border-image-slice: 1;
}

.principle h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent-primary);
  margin-bottom: 0.35rem;
}

.principle p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ---- CONNECT PAGE ---- */
.connect-services {
  margin-bottom: 2.5rem;
}

.connect-services h3,
.connect-who h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: #ffffff;
  border: 1px solid #e8e4de;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: all var(--transition-ui);
  box-shadow: 0 2px 12px rgba(232, 111, 85, 0.04);
}

.service-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 111, 85, 0.1);
  border-color: rgba(232, 111, 85, 0.2);
}

.service-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--accent-primary);
}

.service-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.connect-who {
  margin-bottom: 2.5rem;
}

.who-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.who-tag {
  display: inline-block;
  padding: 0.5rem 1.1rem;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  transition: all var(--transition-ui);
}

.who-tag:hover {
  border-color: var(--accent-soft);
  color: var(--accent-primary);
  background: rgba(91, 181, 213, 0.08);
}

.connect-cta {
  text-align: center;
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
}

.connect-closing {
  font-family: 'Instrument Serif', serif;
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.connect-methods {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- PAGE NAVIGATION ARROWS ---- */
.page-nav {
  position: fixed;
  bottom: 2rem;
  right: 2.5rem;
  display: flex;
  gap: 0.5rem;
  z-index: 50;
}

.page-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border-light);
  background: var(--page-bg);
  color: var(--text-secondary);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-ui);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  line-height: 1;
}

.page-arrow:hover {
  border-color: var(--accent-soft);
  color: var(--accent-primary);
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.page-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.page-arrow span {
  margin-top: -2px;
}

/* ---- SCROLLBAR ---- */
.page::-webkit-scrollbar {
  width: 6px;
}
.page::-webkit-scrollbar-track {
  background: transparent;
}
.page::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 3px;
}
.page::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .page-inner {
    padding: 2.5rem 2rem;
  }
  .hero {
    grid-template-columns: 1fr 280px;
    padding: 2.5rem 2rem;
  }
  .home-heading {
    font-size: 2rem;
  }
  .home-intro-section {
    grid-template-columns: 1fr;
    padding: 2.5rem 2rem;
  }
  .home-intro-image {
    max-width: 300px;
  }
  .home-philosophy-section {
    padding: 2.5rem 2rem;
  }
  .home-services-preview {
    padding: 2.5rem 2rem;
  }
  .services-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-bottom-cta {
    padding: 2.5rem 2rem;
  }
  .about-layout {
    grid-template-columns: 220px 1fr;
    gap: 2rem;
  }
  .home-philosophy {
    grid-template-columns: 1fr;
  }
  .offerings-grid,
  .narrative-grid {
    grid-template-columns: 1fr;
  }
  .principles-grid {
    grid-template-columns: 1fr;
  }
  .about-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body {
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .sidebar {
    position: fixed;
    left: -260px;
    top: 0;
    bottom: 0;
    width: 260px;
    min-width: 260px;
    transition: left var(--transition-ui);
    z-index: 200;
  }

  .sidebar.open {
    left: 0;
  }

  .sidebar-overlay.open {
    display: block;
  }

  .mobile-header {
    display: flex;
  }

  .book-area {
    padding: 68px 1rem 1rem;
    min-height: 100vh;
  }

  .page {
    inset: 0;
    border-radius: 0;
  }

  .page.active {
    inset: auto;
  }

  .page-inner {
    padding: 1.5rem 1.25rem;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.25rem;
    text-align: center;
  }

  .hero-photo {
    max-width: 280px;
    margin: 0 auto;
  }

  .home-heading {
    font-size: 1.5rem;
  }

  .home-cta-group {
    justify-content: center;
  }

  .featured-bar {
    padding: 1rem 1.25rem;
  }

  .home-intro-section {
    padding: 1.5rem 1.25rem;
  }

  .home-philosophy-section {
    padding: 1.5rem 1.25rem;
  }

  .home-services-preview {
    padding: 1.5rem 1.25rem;
  }

  .services-preview-grid {
    grid-template-columns: 1fr;
  }

  .home-bottom-cta {
    padding: 1.5rem 1.25rem;
  }

  .page-heading {
    font-size: 1.7rem;
  }

  .about-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-photo-frame {
    max-width: 260px;
    margin: 0 auto;
  }

  .about-roles {
    justify-content: center;
  }

  .about-body {
    text-align: left;
  }

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

  .page-nav {
    bottom: 1rem;
    right: 1rem;
  }

  .page-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .home-heading {
    font-size: 1.3rem;
  }

  .home-tagline {
    font-size: 1.05rem;
  }

  .page-heading {
    font-size: 1.4rem;
  }

  .home-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .connect-methods {
    flex-direction: column;
    align-items: center;
  }
}
