/*
Soul Suite Wellness Landing Page CSS
Complete responsive design with brand-specific styling
*/

/* CSS Variables */
:root {
  /* Brand Colors */
  --color-teal: #40e0d0;
  --color-teal-hover: #39c9b9;
  --color-brown: #8c756a;
  --color-brown-hover: #7a6759;
  --color-orange: #ff5b0c;
  --color-orange-hover: #e5520b;
  --color-dark-teal: #227767;
  --color-text: #2c3e50;
  --color-text-light: #555;
  --color-off-white: #fdf8f4;
  --color-white: #ffffff;
  --color-black: #000000;

  /* Soulara Brand Colors */
  --soulara-teal: #39c9b9;
  --soulara-brown: #7a6759;
  --soulara-orange: #e5520b;
  --soulara-gradient: linear-gradient(90deg, #39c9b9 0%, #7a6759 50%, #e5520b 100%);
  --soulara-text: #000000;

  /* Font Sizes */
  --font-size-base: 15pt;
  --font-size-small: 0.85em;
  --font-size-medium: 1em;
  --font-size-large: 1.2em;

  /* Gradients */
  --gradient-primary: linear-gradient(90deg, var(--color-teal), var(--color-brown), var(--color-orange));
  --gradient-primary-hover: linear-gradient(90deg, var(--color-teal-hover), var(--color-brown-hover), var(--color-orange-hover));

  /* Shadows */
  --shadow-small: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: 'Poppins', sans-serif;
  width: 100%;
  overflow-x: hidden;
  position: relative;
  height: 100%;
  line-height: 1.6;
  color: var(--color-text);
}

/* Full-width for Hero Section */
.hero-header,
.hero-header .kc_row,
.hero-header .kc-container,
.hero-header .kc_column {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 auto !important;
  font-size: 20px;
}

.hero-header ul,
.hero-header ol {
  list-style: disc inside;
  margin-left: 1.2em;
  padding-left: 0;
  font-size: 20px;
}

.hero-header li {
  margin-bottom: 0.5em;
  font-size: 20px;
}

body.page-template-default .site-content,
.page .content-area {
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  font-size: 20px;
}

.page-id-XX .site,
body.page {
  max-width: 100vw !important;
  overflow-x: hidden;
  font-size: 20px;
}

/* ================================================================
   HERO SECTION
   FIX: Removed background-attachment: fixed — causes broken/zoomed
   rendering on iOS Safari. Use background-attachment: scroll instead.
   ================================================================ */
.hero-section {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll; /* FIX: was 'fixed', broken on iOS Safari */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background-color: #227767;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Logo Styling */
.hero-logo {
  margin-bottom: 2rem;
  text-align: center;
}

.hero-logo .home-logo {
  width: 250px;
  height: auto;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Title Styling */
.hero-title {
  color: #ffffff;
  font-family: 'Playfair Display SC', serif;
  font-size: 2.0em;
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

/* Subtitle Styling */
.hero-subtitle {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  letter-spacing: 2px;
}

/* Description Styling */
.hero-description {
  text-align: center;
  margin-bottom: 2.5rem;
}

.hero-description p {
  color: #fcfffd;
  font-family: 'Inter', sans-serif;
  font-size: 1em;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 700px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Button Container */
.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 2rem;
}

/* ================================================================
   HERO BUTTON & PRIMARY BUTTON
   FIX: Consolidated duplicate .hero-btn and .primary-btn rule sets
   into single definitions. Removed the conflicting second declarations
   that appeared lower in the file with different padding/letter-spacing.
   ================================================================ */
.hero-btn {
  display: inline-block;
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.primary-btn {
  background: linear-gradient(135deg, #40e0d0, #ff5b0c);
  color: #ffffff;
  border: none;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.primary-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.primary-btn:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, #39c9b9, #e5520b);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.primary-btn:hover::before {
  left: 100%;
}

/* Secondary Button Style */
.secondary-btn {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.secondary-btn:hover {
  background-color: #ffffff;
  color: #2E7D5E;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* ================================================================
   LANDING HEADER
   ================================================================ */
.landing-header {
  position: relative;
  z-index: 100;
  width: 100%;
  background: var(--landing-header-bg, transparent);
  padding: 20px 0;
}

.landing-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.landing-header__logo {
  flex-shrink: 0;
  line-height: 1;
}

.landing-header__logo img,
.landing-header__logo a img {
  display: block;
  max-height: 70px;
  width: auto;
}

.landing-header__cta {
  flex-shrink: 0;
}

.landing-header__btn {
  white-space: nowrap;
  font-size: 0.875rem;
  padding: 10px 24px;
}

.landing-alt-header .hero-section {
  padding-top: 110px;
}

/* Suppress global header on landing alt-header pages */
.landing-alt-header .site-header,
.landing-alt-header #masthead,
.landing-alt-header .header-area,
.landing-alt-header nav.navbar:not(.landing-header *) {
  display: none !important;
}

/* ================================================================
   ABOUT OWNER SECTION
   ================================================================ */
.about-owner {
  padding: 80px 0;
  background: linear-gradient(90deg, #40e0d0, #8c756a, #ff5b0c);
  font-family: 'Arial', sans-serif;
  font-size: 20px;
  line-height: 1.6;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 50px;
  font-weight: 700;
  position: relative;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.8));
  border-radius: 2px;
}

.owner-content {
  margin-top: 60px;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}

.owner-image {
  flex: 0 0 350px;
  position: relative;
}

.owner-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 5px solid #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.owner-image img:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.owner-info {
  flex: 1;
  padding: 40px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  min-width: 600px;
}

.owner-credentials {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(64, 224, 208, 0.3);
}

.owner-name {
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 700;
}

.owner-title {
  font-size: 20px;
  background: linear-gradient(90deg, #40e0d0, #8c756a, #ff5b0c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 0;
}

.owner-bio {
  color: #555;
  font-size: 20px;
  line-height: 1.8;
}

.owner-bio p {
  margin-bottom: 20px;
  text-align: justify;
}

.owner-bio p:last-child {
  margin-bottom: 0;
}

/* ================================================================
   BURNOUT SECTION
   ================================================================ */
.burnout-section {
  padding: 80px 0;
  background: linear-gradient(90deg, #40e0d0, #8c756a, #ff5b0c);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff;
}

.burnout-section .container {
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.burnout-content {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 60px;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}

.burnout-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 5px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.burnout-image img:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.burnout-text {
  flex: 1;
  padding: 40px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  color: #555;
  min-width: 600px;
}

.burnout-highlight {
  padding: 1.5rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  text-align: center;
}

.burnout-highlight h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.burnout-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 50px;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
}

.burnout-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.8));
  border-radius: 2px;
}

.burnout-text h3 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 700;
}

.burnout-text p {
  font-size: 20px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
}

.burnout-text p:last-of-type {
  margin-bottom: 30px;
}

.burnout-text strong {
  background: linear-gradient(90deg, #40e0d0, #8c756a, #ff5b0c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.burnout-italic {
  font-style: italic;
  color: #333;
  font-size: 18px;
}

.burnout-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.burnout-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 18px;
  color: #333;
}

.burnout-list li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  color: #27ae60;
}

.burnout-cta {
  text-align: center;
  margin-top: 40px;
}

.burnout-cta .hero-btn {
  background: #ff5b0c;
  color: #fff;
}

.burnout-cta .hero-btn:hover {
  background: #e44e00;
}

/* ================================================================
   SYSTEM RESET SECTION
   ================================================================ */
.system-reset-section {
  padding: 50px 0;
  background: #227767;
  font-family: 'Poppins', sans-serif;
  font-size: 15pt;
  line-height: 1.6;
  color: #ffffff;
  position: relative;
}

.system-reset-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 91, 12, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(64, 224, 208, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(140, 117, 106, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.system-reset-section .container {
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.system-reset-content {
  max-width: 1500px;
  margin: 0 auto;
  text-align: center;
}

.system-reset-section .reset-title {
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: 600;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  letter-spacing: -1px;
  line-height: 1.1;
}

.system-reset-section .reset-subtitle {
  font-size: 1.4rem;
  color: #40e0d0;
  margin-bottom: 50px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.system-matrix {
  background: rgb(176 170 170 / 20%);
  border-radius: 20px;
  padding: 60px;
  margin: 50px 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.system-matrix-intro {
  font-size: 15pt;
  color: #ffffff;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.7;
}

.system-matrix-points {
  text-align: left;
  max-width: 1250px;
  margin: 0 auto;
}

.system-matrix-point {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border-left: 4px solid #ff5b0c;
  transition: all 0.3s ease;
}

.system-matrix-point:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(10px);
}

.system-matrix-point::before {
  content: '•';
  color: #40e0d0;
  font-size: 2rem;
  font-weight: bold;
  margin-right: 20px;
  line-height: 1;
  flex-shrink: 0;
}

.system-matrix-point-text {
  font-size: 15pt;
  line-height: 1.6;
  color: #ffffff;
}

.system-matrix-point-text strong {
  color: #40e0d0;
  font-weight: 700;
}

.system-reset-conclusion {
  margin: 50px 0;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255, 91, 12, 0.1), rgba(64, 224, 208, 0.1));
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.reset-conclusion-text {
  font-size: 15pt;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 30px;
  font-weight: 400;
}

.reset-conclusion-emphasis {
  font-size: 1.5rem;
  font-weight: 700;
  color: #40e0d0;
  display: block;
  margin: 20px 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* ================================================================
   SOUL SERVICES SECTION
   ================================================================ */
.soul-services {
  background: #fdf8f4;
  padding: 80px 20px;
  font-family: 'Tw Cen MT', sans-serif;
  font-size: 15pt;
}

.soul-services .container {
  max-width: 1600px;
  margin: 0 auto;
}

.soul-services h1 {
  text-align: center;
  font-size: 20pt;
  color: #2c3e50;
  margin-bottom: 60px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.service-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #40e0d0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #40e0d0, #8c756a, #ff5b0c);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-left-color: #ff5b0c;
}

.service-header {
  margin-bottom: 20px;
}

.service-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.service-card h2 {
  font-size: 15pt;
  margin-bottom: 10px;
  color: #2c3e50;
  font-weight: 700;
  line-height: 1.3;
}

.service-tag {
  background: #8c756a;
  color: #ffffff;
  padding: 6px 10px;
  font-size: 10pt;
  border-radius: 20px;
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.service-content {
  flex-grow: 1;
  margin-bottom: 25px;
}

.service-card p {
  font-size: 13pt;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.service-card ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.service-card ul li {
  margin-bottom: 8px;
  font-size: 16px;
  color: #444;
  line-height: 1.5;
}

.service-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-btn {
  display: inline-block;
  background: linear-gradient(135deg, #40e0d0, #ff5b0c);
  color: #fff;
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(64, 224, 208, 0.3);
  border: none;
  cursor: pointer;
  text-align: center;
}

.service-btn:hover {
  background: linear-gradient(135deg, #39c9b9, #e5520b);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(64, 224, 208, 0.4);
  color: #fff;
}

.service-price {
  font-size: 15pt;
  font-weight: 700;
  color: #e06e40;
  margin-bottom: 10px;
}

.free-service .service-price {
  color: #8c756a;
}

/* ================================================================
   CONTACT SECTION
   ================================================================ */
.contact-section {
  background: #fff;
  padding: 80px 20px;
  font-family: 'Arial', sans-serif;
}

.contact-section .container {
  max-width: 1200px;
  margin: auto;
}

.contact-section .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.contact-section .section-title h2 {
  font-size: 36px;
  color: var(--soulara-text);
}

.contact-section .section-title h2 span {
  color: var(--soulara-teal);
}

.contact-section .section-title .line {
  width: 60px;
  height: 3px;
  background: var(--soulara-gradient);
  margin: 15px auto;
}

.contact-section .section-title p {
  color: var(--soulara-text);
  font-size: 16px;
  max-width: 700px;
  margin: auto;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-info {
  flex: 1;
  min-width: 250px;
}

.info-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.info-box .icon {
  background: #39c9b9;
  color: white;
  padding: 15px;
  font-size: 20px;
  border-radius: 5px;
  margin-right: 15px;
}

.info-box .text h4 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

.info-box .text p {
  margin: 5px 0 0;
  color: var(--soulara-text);
}

.contact-form {
  flex: 2;
  min-width: 300px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  flex: 1;
  padding: 15px;
  font-size: 14px;
  border: 1px solid #ddd;
  background: #fafafa;
  border-radius: 5px;
  width: 100%;
}

.form-group textarea {
  height: 180px;
  resize: vertical;
}

.send-btn {
  align-self: flex-start;
  background: #e5520b;
  color: #fff;
  border: none;
  padding: 14px 30px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(136, 192, 87, 0.3);
  transition: 0.3s;
}

.send-btn:hover {
  background: var(--soulara-gradient);
  color: #fff;
}

/* CTA sections */
.cta-section {
  margin-top: 30px;
  text-align: center;
}

.system-reset-cta {
  margin-top: 50px;
  text-align: center;
}

/* ================================================================
   RESPONSIVE DESIGN
   ================================================================ */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 30px;
  }

  .service-card {
    min-height: 450px;
  }
}

@media (max-width: 992px) {
  .burnout-content,
  .owner-content {
    flex-direction: column;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  /* Hero */
  .hero-section {
    padding: 60px 0;
    min-height: 90vh;
  }

  .hero-content {
    padding: 0 15px;
  }

  .hero-logo .home-logo {
    width: 200px;
  }

  .hero-title {
    font-size: 1.6em;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
  }

  .hero-description p {
    font-size: 0.95em;
  }

  .hero-btn {
    padding: 15px 30px;
    font-size: 14px;
  }

  /* Landing header */
  .landing-header__logo img,
  .landing-header__logo a img {
    max-height: 50px;
  }

  .landing-header__btn {
    font-size: 0.78rem;
    padding: 8px 16px;
  }

  .landing-alt-header .hero-section {
    padding-top: 90px;
  }

  /* About Owner */
  .about-owner {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .owner-content {
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
  }

  .owner-image {
    flex: none;
    max-width: 300px;
    margin: 0 auto;
  }

  .owner-image img {
    height: 350px;
  }

  .owner-name {
    font-size: 1.8rem;
    text-align: center;
  }

  .owner-title {
    font-size: 20px;
    text-align: center;
  }

  .owner-bio {
    font-size: 20px;
  }

  .container {
    padding: 0 20px;
  }

  /* Burnout Section */
  .burnout-section {
    padding: 20px 0;
  }

  .burnout-section .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .burnout-content {
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
  }

  .burnout-image {
    max-width: 350px;
    margin: 0 auto;
  }

  .burnout-image img {
    height: 250px;
  }

  .burnout-text {
    padding: 30px;
    min-width: auto;
    width: 100%;
  }

  .burnout-text h3 {
    font-size: 1.6rem;
    text-align: center;
  }

  .burnout-section .container {
    padding: 0 20px;
  }

  /* Soul Services */
  .soul-services {
    padding: 60px 15px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 20px;
  }

  .service-card {
    min-height: 300px;
    padding: 25px;
  }

  .service-card h2 {
    font-size: 12pt;
  }

  .soul-services h1 {
    font-size: 15pt;
    margin-bottom: 40px;
  }

  .service-footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* System Reset Section */
  .system-reset-section {
    padding: 60px 0;
  }

  .system-reset-section .reset-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .system-reset-section .reset-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .system-matrix {
    padding: 40px 30px;
    margin: 30px 0;
  }

  .system-matrix-intro {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .system-matrix-point {
    padding: 15px;
    margin-bottom: 20px;
  }

  .system-matrix-point-text {
    font-size: 1rem;
  }

  .system-reset-conclusion {
    padding: 30px 20px;
    margin: 30px 0;
  }

  .reset-conclusion-text {
    font-size: 1.1rem;
  }

  .reset-conclusion-emphasis {
    font-size: 1.3rem;
  }

  .system-reset-section .container {
    padding: 0 20px;
  }
}

/* FIX: Removed the blanket @media (max-width: 767px) override that forced
   font-size: var(--font-size-medium) !important on all p, li, a, span tags.
   That rule overrode all customizer font-size settings on mobile. Removed. */

@media (max-width: 480px) {
  /* Hero */
  .hero-title {
    font-size: 1.4em;
  }

  .hero-subtitle {
    font-size: 1.1em;
  }

  .hero-description p {
    font-size: 0.9em;
  }

  .hero-btn {
    padding: 12px 25px;
    font-size: 13px;
    width: 100%;
    max-width: 280px;
  }

  /* About Owner */
  .section-title {
    font-size: 1.8rem;
  }

  .owner-image {
    max-width: 250px;
  }

  .owner-image img {
    height: 300px;
  }

  .owner-name {
    font-size: 1.6rem;
  }

  .owner-title {
    font-size: 20px;
  }

  /* Burnout Section */
  .burnout-section .section-title {
    font-size: 1.8rem;
  }

  .burnout-image {
    max-width: 280px;
  }

  .burnout-image img {
    height: 200px;
  }

  .burnout-text {
    padding: 25px;
  }

  .burnout-text h3 {
    font-size: 1.4rem;
  }

  /* Soul Services */
  .service-card {
    padding: 20px;
    min-height: 280px;
  }

  .service-card h2 {
    font-size: var(--font-size-base);
  }

  .service-btn {
    padding: 12px 20px;
    font-size: var(--font-size-base);
    flex: 1;
  }

  /* System Reset Section */
  .system-reset-section .reset-title {
    font-size: var(--font-size-large);
    line-height: 1.2;
  }

  .system-reset-section .reset-subtitle {
    font-size: var(--font-size-medium);
    letter-spacing: 1px;
  }

  .system-matrix {
    padding: 30px 20px;
  }

  .system-matrix-point::before {
    margin-bottom: 10px;
  }
}

@media (max-width: 360px) {
  .hero-logo .home-logo {
    width: 180px;
  }

  .hero-title {
    font-size: 1.2em;
  }

  .hero-subtitle {
    font-size: 1em;
  }
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.system-reset-section .reset-title,
.system-matrix-intro,
.system-reset-conclusion {
  animation: fadeInUp 0.8s ease-out;
}

.system-matrix-point {
  animation: fadeInUp 0.6s ease-out;
}

.system-matrix-point:nth-child(1) { animation-delay: 0.1s; }
.system-matrix-point:nth-child(2) { animation-delay: 0.2s; }
.system-matrix-point:nth-child(3) { animation-delay: 0.3s; }
.system-matrix-point:nth-child(4) { animation-delay: 0.4s; }

/* ================================================================
   PRINT STYLES
   ================================================================ */
@media print {
  .hero-section,
  .system-reset-section {
    background: var(--color-white) !important;
    color: var(--color-text) !important;
  }

  .hero-btn,
  .service-btn {
    background: var(--color-white) !important;
    color: var(--color-text) !important;
    border: 2px solid var(--color-text) !important;
  }

  .service-card {
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }
}

/* ================================================================
   ACCESSIBILITY
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-contrast: high) {
  :root {
    --color-text: #000000;
    --color-text-light: #333333;
    --shadow-small: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 4px 8px rgba(0, 0, 0, 0.3);
    --shadow-large: 0 8px 16px rgba(0, 0, 0, 0.4);
  }
}