/*
Theme Name: The Wisdom Within
Theme URI: https://thewisdomwithin.com
Author: Darlene
Description: Luxury editorial theme for The Wisdom Within™.
Version: 1.0
*/

/* ---------------------------------------------
   COLOR SYSTEM
--------------------------------------------- */
:root {
  --color-ivory: #F8F5F2;
  --color-plum: #4B1F3A;
  --color-espresso: #2B1E23;
  --color-gold: #C9A86A;
  --color-text: #2A2A2A;
}

/* ---------------------------------------------
   GLOBAL
--------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--color-ivory);
  font-family: 'Cormorant Garamond', serif;
  color: var(--color-text);
  line-height: 1.7;
  font-size: 20px;
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3 {
  font-weight: 500;
  margin: 0 0 20px;
}

h1 {
  font-size: 64px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 42px;
  line-height: 1.2;
}

h3 {
  font-size: 28px;
  line-height: 1.25;
}

/* ---------------------------------------------
   LAYOUT
--------------------------------------------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.container.narrow {
  max-width: 760px;
}

.section {
  padding: 120px 0;
}

.section.light {
  background: var(--color-ivory);
  color: var(--color-text);
}

.section.dark {
  background: var(--color-espresso);
  color: var(--color-ivory);
}

/* ---------------------------------------------
   HEADER — LUXURY EDITORIAL
--------------------------------------------- */
header {
  background: var(--color-plum);
  padding: 22px 0;
}

header .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .site-title a {
  color: var(--color-ivory);
  font-size: 20px;
  text-decoration: none;
  letter-spacing: 0.5px;
  font-weight: 500;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
  margin: 0;
  padding: 0;
}

header nav a {
  color: var(--color-ivory);
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

header nav a:hover {
  opacity: 0.7;
}

/* ---------------------------------------------
   HERO
--------------------------------------------- */
.hero-title {
  font-size: 72px;
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 700px;
}

.hero-subtitle {
  font-size: 22px;
  max-width: 650px;
  line-height: 1.55;
}

/* ---------------------------------------------
   SECTION TITLES + GOLD LINE
--------------------------------------------- */
.section-title-line {
  width: 60px;
  height: 3px;
  background: var(--color-gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 28px;
  max-width: 700px;
}

.section .container {
  text-align: left;
}

/* ---------------------------------------------
   BODY TEXT
--------------------------------------------- */
.body-text {
  font-size: 22px;
  max-width: 650px;
  margin-bottom: 22px;
  line-height: 1.55;
}

.qualifier {
  font-size: 18px;
  font-style: italic;
  opacity: 0.85;
  margin-top: 28px;
  max-width: 650px;
}

.section.dark h1,
.section.dark h2,
.section.dark .section-title,
.section.dark .body-text,
.section.dark .qualifier {
  color: var(--color-ivory);
}

/* ---------------------------------------------
   METHOD — EDITORIAL GRID
--------------------------------------------- */
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 50px;
}

.method-card {
  background: #ffffff;
  padding: 50px;
  border-radius: 4px;
  text-align: left;
  box-shadow: 0 6px 30px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
}

.method-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}

.method-line {
  width: 50px;
  height: 3px;
  background: var(--color-gold);
  margin-bottom: 24px;
}

.method-card-title {
  font-size: 32px;
  margin-bottom: 16px;
}

.method-card-text {
  font-size: 20px;
  line-height: 1.55;
  opacity: 0.9;
}

/* ---------------------------------------------
   BUSINESS SECTION
--------------------------------------------- */
.business-section .section-title {
  margin-bottom: 24px;
}

.business-section .body-text {
  margin-bottom: 24px;
}

/* ---------------------------------------------
   FOOTER — LUXURY EDITORIAL
--------------------------------------------- */
footer {
  background: var(--color-plum);
  padding: 60px 0;
  text-align: center;
}

footer p {
  color: var(--color-ivory);
  font-size: 15px;
  letter-spacing: 0.5px;
  opacity: 0.85;
  margin: 0;
}

/* ---------------------------------------------
   RESPONSIVE
--------------------------------------------- */
@media (max-width: 900px) {
  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .method-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section {
    padding: 100px 0;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 18px;
  }

  .method-card {
    padding: 40px;
  }
}

/* ---------------------------------------------
   BUTTON FIX — RESTORE VISIBILITY
--------------------------------------------- */
.btn-gold {
  background: var(--color-gold) !important;
  color: var(--color-espresso) !important;
  padding: 16px 40px;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background: #b8955d !important;
  color: var(--color-espresso) !important;
  transform: translateY(-2px);
}

/* ---------------------------------------------
   TYPOGRAPHY — LUXURY EDITORIAL REFINEMENT
--------------------------------------------- */
h1 {
  font-size: 68px;
  line-height: 1.05;
  letter-spacing: -0.8px;
}

h2 {
  font-size: 46px;
  line-height: 1.15;
  letter-spacing: -0.4px;
}

h3 {
  font-size: 30px;
  line-height: 1.25;
  letter-spacing: -0.2px;
}

.body-text {
  font-size: 21px;
  line-height: 1.52;
  max-width: 640px;
  margin-bottom: 20px;
}

.qualifier {
  font-size: 18px;
  line-height: 1.5;
  margin-top: 26px;
}

.section-title {
  font-size: 46px;
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin-bottom: 26px;
}

.section-title-line {
  width: 70px;
  height: 3px;
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  h1 { font-size: 44px; line-height: 1.1; }
  h2 { font-size: 32px; line-height: 1.2; }
  .body-text { font-size: 19px; line-height: 1.55; }
}

@media (max-width: 600px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  .body-text { font-size: 18px; }
}

/* ---------------------------------------------
   SPACING — LUXURY EDITORIAL REFINEMENT
--------------------------------------------- */
.section {
  padding: 110px 0;
}

.container.narrow {
  max-width: 740px;
}

.section-title-line {
  margin-bottom: 18px;
}

.section-title {
  margin-bottom: 32px;
}

.body-text {
  margin-bottom: 24px;
}

.qualifier {
  margin-top: 32px;
}

.method-grid {
  gap: 56px;
  margin-top: 48px;
}

.method-card {
  padding: 46px;
}

.business-section .body-text {
  margin-bottom: 26px;
}

.spacer-40 {
  margin-top: 44px;
}

@media (max-width: 900px) {
  .section { padding: 90px 0; }
  .section-title { margin-bottom: 28px; }
  .body-text { margin-bottom: 22px; }
  .method-grid { gap: 36px; }
}

@media (max-width: 600px) {
  .section { padding: 80px 0; }
  .body-text { margin-bottom: 20px; }
  .method-card { padding: 36px; }
}

/* ---------------------------------------------
   ALIGNMENT — LUXURY EDITORIAL REFINEMENT
--------------------------------------------- */
.section .container {
  padding-left: 0;
}

.section-title-line {
  margin-left: 0;
}

.section-title {
  max-width: 640px;
}

.method-grid {
  margin-left: 0;
}

.spacer-40 {
  margin-top: 40px;
}

.section.dark {
  padding-top: 100px;
  padding-bottom: 100px;
}

.about-page .container,
.about-page .container.narrow {
  padding-left: 4px;
}

.about-page h1,
.about-page h2,
.about-page h3,
.about-page p {
  max-width: 640px;
  margin-left: 0;
}

.about-page .section {
  padding: 110px 0;
}

.about-page img {
  max-width: 720px;
  margin: 40px 0;
  display: block;
}
