.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS */:root {
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --color-sage: #5a7c65;
  --color-sage-dark: #45634f;
  --color-sage-light: #8fb89a;
  --color-cream: #faf9f6;
  --color-cream-dark: #f2f0eb;
  --color-charcoal: #1a1a1a;
  --color-text: #3d3d3d;
  --color-text-light: #6b6b6b;
  --radius-sm: 16px; --radius-md: 24px; --radius-lg: 40px; --radius-full: 999px;
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
  --transition: 0.4s cubic-bezier(0.4,0,0.2,1);
  --max-width: 1200px;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Hero Section - Home Page Style */
.ks-hero {
  background: linear-gradient(135deg, #f8f6f1 0%, #f0ebe3 50%, #e8e4dc 100%);
  position: relative;
  overflow: hidden;
}

.ks-hero-inner {
  max-width: 1220px;
  min-height: 760px;
  margin: 0 auto;
  padding: 100px 28px;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ks-hero-content {
  animation: fadeInUp 0.8s ease forwards;
}

.ks-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
  padding: 10px 20px;
  background: rgba(90,124,101,0.08);
  color: var(--color-sage);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: 1px solid rgba(90,124,101,0.15);
}

.ks-hero h1 {
  margin: 0 0 28px;
  font-family: var(--font-heading);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--color-charcoal);
}

.ks-hero h1 em {
  font-style: italic;
  color: var(--color-sage);
}

.ks-subheadline {
  margin: 0 0 36px;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-text);
  max-width: 540px;
}

.ks-btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ks-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 32px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.ks-btn-primary {
  background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-sage-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(90,124,101,0.3);
}

.ks-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(90,124,101,0.4);
  color: #fff;
  text-decoration: none;
}

.ks-btn-secondary {
  background: transparent;
  color: var(--color-sage);
  border: 1.5px solid var(--color-sage);
}

.ks-btn-secondary:hover {
  background: var(--color-sage);
  color: #fff;
  text-decoration: none;
}

.ks-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1s ease forwards;
}

.ks-portrait {
  position: relative;
  width: min(380px, 100%);
  border-radius: 200px 200px 24px 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #fff;
  transition: transform 0.4s ease;
}

.ks-portrait:hover {
  transform: scale(1.02);
}

.ks-portrait::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 190px 190px 18px 18px;
  z-index: 2;
  pointer-events: none;
}

.ks-portrait img {
  width: 100%;
  height: 500px;
  display: block;
  object-fit: cover;
  object-position: center 10%;
}

/* Benefits Bar - Reiki Style */
.ks-benefits {
  background: #fff;
  padding: 80px 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.ks-benefits-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.ks-benefit-item {
  padding: 24px 34px;
  border-right: 1px solid rgba(111,143,120,0.28);
}

.ks-benefit-item:last-child {
  border-right: none;
}

.ks-benefit-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
}

.ks-benefit-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--color-sage);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ks-benefit-item h3 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-charcoal);
}

.ks-benefit-item p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-light);
}

/* Meet Your Somatic Guide Section */
.ks-guide {
  background: var(--color-cream);
  padding: 120px 24px;
  font-family: var(--font-body);
}

.ks-guide-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.ks-guide-content { order: 1; }
.ks-guide-visual { order: 2; }

.ks-guide-content .ks-eyebrow {
  margin-bottom: 20px;
}

.ks-guide h2 {
  margin: 0 0 28px;
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.12;
  color: var(--color-charcoal);
}

.ks-guide h2 em {
  font-style: italic;
  color: var(--color-sage);
}

.ks-guide-lead {
  margin: 0 0 32px;
  color: var(--color-text);
  font-size: 17px;
  line-height: 1.85;
}

.ks-guide-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}

.ks-guide-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 14px;
  color: var(--color-charcoal);
  font-size: 15px;
  line-height: 1.6;
}

.ks-guide-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-sage-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center / 12px;
}

.ks-guide-images {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}

.ks-guide-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform 0.4s ease;
}

.ks-guide-images img:hover {
  transform: scale(1.03);
}

.ks-guide-main {
  grid-row: span 2;
  min-height: 420px;
}

.ks-guide-side {
  min-height: 200px;
}

/* How It Helps Section */
.ks-helps {
  background: #f8fbf8;
  padding: 90px 24px;
  font-family: var(--font-body);
}

.ks-helps-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.ks-helps-header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.ks-helps-header h2 {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--color-charcoal);
}

.ks-helps-header p {
  margin: 0 auto;
  max-width: 640px;
  color: var(--color-text-light);
  font-size: 17px;
  line-height: 1.65;
}

.ks-helps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ks-help-card {
  background: #ffffff;
  border: 1px solid rgba(120,150,130,.16);
  border-radius: 22px;
  padding: 34px 28px;
  box-shadow: 0 14px 36px rgba(44,72,62,.07);
  transition: all 0.3s ease;
}

.ks-help-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(44,72,62,.12);
}

.ks-help-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-sage-light) 0%, var(--color-sage) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.ks-help-icon svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

.ks-help-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  color: var(--color-charcoal);
}

.ks-help-card p {
  margin: 0;
  color: var(--color-text-light);
  font-size: 15px;
  line-height: 1.6;
}

/* Quote Section */
.ks-quote {
  background: linear-gradient(135deg, var(--color-sage-dark) 0%, #3a5242 100%);
  padding: 100px 24px;
  text-align: center;
}

.ks-quote-inner {
  max-width: 800px;
  margin: 0 auto;
}

.ks-quote blockquote {
  margin: 0 0 24px;
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}

.ks-quote cite {
  display: block;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  font-size: 15px;
  font-style: normal;
}

.ks-quote cite em {
  color: var(--color-sage-light);
}

/* Body Problem Section */
.ks-body-problem {
  background: var(--color-cream);
  padding: 100px 24px;
}

.ks-body-problem-inner {
  max-width: 820px;
  margin: 0 auto;
}

.ks-body-problem h2 {
  margin: 0 0 32px;
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-charcoal);
}

.ks-body-problem h2 em {
  font-style: italic;
  color: var(--color-sage);
}

.ks-body-problem-lead {
  margin: 0 0 24px;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.85;
  color: var(--color-text);
  font-weight: 500;
}

.ks-body-problem p {
  margin: 0 0 20px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
  color: var(--color-text-light);
}

.ks-body-problem p:last-of-type {
  margin-bottom: 0;
}

.ks-body-problem-highlight {
  background: linear-gradient(135deg, #f5f9f6 0%, #e8f0e9 100%);
  border-left: 4px solid var(--color-sage);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 28px 32px;
  margin: 36px 0;
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 500;
  color: var(--color-charcoal);
  line-height: 1.4;
  font-style: italic;
}

/* For You Section */
.ks-for-you {
  background: var(--color-charcoal);
  padding: 100px 24px;
}

.ks-for-you-inner {
  max-width: 820px;
  margin: 0 auto;
}

.ks-for-you-inner .ks-eyebrow {
  background: rgba(143,184,154,0.15);
  border-color: rgba(143,184,154,0.3);
  color: var(--color-sage-light);
  margin-bottom: 20px;
}

.ks-for-you h2 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.15;
  color: #fff;
}

.ks-for-you-sub {
  margin: 0 0 40px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}

.ks-for-you-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ks-for-you-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}

.ks-for-you-list li:hover {
  background: rgba(143,184,154,0.1);
  border-color: rgba(143,184,154,0.2);
}

.ks-for-you-list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-sage-light);
}

.ks-for-you-close {
  margin: 0 0 36px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-sage-light);
  font-style: italic;
}

/* CTA Section */
.ks-cta {
  background: var(--color-cream);
  padding: 100px 24px;
  text-align: center;
}

.ks-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.ks-cta h2 {
  margin: 0 0 20px;
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-charcoal);
}

.ks-cta p {
  margin: 0 0 32px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text);
}

/* Responsive */
@media (max-width: 1024px) {
  .ks-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 80px 24px 60px;
    gap: 48px;
    text-align: center;
  }
  .ks-hero-content { order: 2; }
  .ks-hero-visual { order: 1; }
  .ks-subheadline {
    margin-left: auto;
    margin-right: auto;
  }
  .ks-btn-group {
    justify-content: center;
  }
  .ks-hero-visual {
    max-width: 450px;
    margin: 0 auto;
  }
  .ks-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ks-benefit-item:nth-child(2) {
    border-right: none;
  }
  .ks-guide-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .ks-guide-content { order: 2; text-align: center; }
  .ks-guide-visual { order: 1; }
  .ks-guide-list {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  .ks-guide-main {
    min-height: 380px;
  }
  .ks-helps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ks-benefits-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .ks-benefit-item {
    border-right: none;
    border-bottom: 1px solid rgba(111,143,120,0.22);
    padding: 28px 0;
    text-align: center;
  }
  .ks-benefit-item:first-child {
    padding-top: 0;
  }
  .ks-benefit-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .ks-benefit-icon {
    margin: 0 auto 16px;
  }
  .ks-helps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .ks-help-card {
    text-align: center;
  }
  .ks-help-icon {
    margin: 0 auto 18px;
  }
}

@media (max-width: 480px) {
  .ks-hero-inner {
    padding: 60px 20px 48px;
  }
  .ks-hero-content { order: 2; }
  .ks-hero-visual { order: 1; }
  .ks-hero h1 {
    font-size: 32px;
    line-height: 1.15;
  }
  .ks-eyebrow {
    font-size: 10px;
    padding: 8px 14px;
  }
  .ks-portrait {
    border-radius: 160px 160px 20px 20px;
  }
  .ks-portrait img {
    height: 360px;
  }
  .ks-btn-group {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }
  .ks-btn-group .ks-btn {
    width: auto !important;
    max-width: none !important;
    flex: 0 1 auto !important;
  }
  .ks-guide h2 {
    font-size: 32px;
  }
}/* End custom CSS */