/* ============================================
   MY WORLD THEME — main.css
   ============================================ */

:root {
  --ink:        #1a1814;
  --paper:      #f5f0e8;
  --cream:      #ede8dc;
  --gold:       #c9a84c;
  --gold-light: #e8d5a3;
  --deep:       #2c2416;
  --muted:      #7a7060;
  --white:      #fdfaf4;
  --accent:     #8b4513;
  --nav-h:      64px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── NAV ── */
#site-navigation {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: var(--deep);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  border-bottom: 1px solid rgba(201,168,76,0.3);
}

.site-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--gold);
  letter-spacing: 0.02em;
  text-decoration: none;
}

#site-navigation ul {
  display: flex; gap: 2rem; list-style: none; margin: 0; padding: 0;
}

#site-navigation ul li a {
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(245,240,232,0.75);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

#site-navigation ul li a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.2s;
}

#site-navigation ul li a:hover,
#site-navigation ul li.current-menu-item a { color: var(--gold); }
#site-navigation ul li a:hover::after,
#site-navigation ul li.current-menu-item a::after { transform: scaleX(1); }

/* ── PAGE WRAPPER ── */
#page { padding-top: var(--nav-h); }

.site-content { min-height: calc(100vh - var(--nav-h) - 60px); }

/* ── HERO (HOME) ── */
.home-hero {
  min-height: calc(100vh - var(--nav-h));
  background: var(--deep);
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}

.home-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(201,168,76,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 4rem 6rem 5rem; position: relative; z-index: 1;
}

.hero-eyebrow {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.1; color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-title em { color: var(--gold); font-style: italic; }

.hero-desc {
  font-size: 1.05rem; line-height: 1.75;
  color: rgba(245,240,232,0.65);
  max-width: 420px; margin-bottom: 3rem;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  padding: 0.75rem 2rem; font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; border: none; transition: all 0.2s;
  font-family: 'DM Sans', sans-serif; text-decoration: none;
  display: inline-block;
}

.btn-gold { background: var(--gold); color: var(--deep); }
.btn-gold:hover { background: var(--gold-light); color: var(--deep); }

.btn-outline {
  background: transparent; color: var(--gold);
  border: 1px solid rgba(201,168,76,0.5);
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }

.hero-visual {
  display: flex; align-items: center; justify-content: center;
  padding: 4rem; position: relative;
}

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  max-width: 380px; width: 100%;
}

.hero-card {
  background: rgba(245,240,232,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 1.5rem;
  transition: all 0.25s;
  text-decoration: none;
  animation: fadeUp 0.6s both;
}

.hero-card:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-3px);
}

.hero-card:nth-child(1) { animation-delay: 0.1s; }
.hero-card:nth-child(2) { animation-delay: 0.2s; }
.hero-card:nth-child(3) { animation-delay: 0.3s; }
.hero-card:nth-child(4) { animation-delay: 0.4s; }

.card-icon { font-size: 1.6rem; margin-bottom: 0.6rem; }
.card-label {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.3rem;
}
.card-desc { font-size: 0.78rem; color: rgba(245,240,232,0.5); line-height: 1.5; }

/* ── HOME PILLARS SECTION ── */
.home-pillars { max-width: 1100px; margin: 0 auto; padding: 5rem 2rem; text-align: center; }

.section-label {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.75rem; justify-content: center;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.2; margin-bottom: 1rem; color: var(--deep);
}

.section-body {
  font-size: 1rem; line-height: 1.8; color: var(--muted);
  max-width: 640px; margin: 0 auto 3rem;
}

.pillars-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  text-align: left;
}

.pillar-mini {
  padding: 1.5rem; background: var(--white);
  border: 1px solid var(--cream);
  animation: fadeUp 0.6s both;
}
.pillar-mini:nth-child(2) { animation-delay: 0.1s; }
.pillar-mini:nth-child(3) { animation-delay: 0.2s; }
.pillar-mini:nth-child(4) { animation-delay: 0.3s; }

.pillar-mini-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.pillar-mini-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--deep); margin-bottom: 0.5rem;
}
.pillar-mini-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ── PAGE HEADERS ── */
.page-header {
  background: var(--deep);
  padding: 5rem 2rem 4rem; text-align: center;
  position: relative; overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 50px;
  background: var(--paper);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-header .section-label { color: var(--gold-light); }
.page-header .section-title { color: var(--white); margin: 0 auto 0.5rem; }
.page-header .section-body { color: rgba(245,240,232,0.6); margin: 0 auto; }

/* ── KNOWLEDGE PAGE ── */
.section-wrap { max-width: 1100px; margin: 0 auto; padding: 5rem 2rem; }

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

.topic-card {
  background: var(--white); border: 1px solid var(--cream);
  padding: 2.5rem 2rem;
  transition: all 0.25s; position: relative; overflow: hidden;
}

.topic-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}

.topic-card:hover { box-shadow: 0 8px 40px rgba(44,36,22,0.1); transform: translateY(-4px); }
.topic-card:hover::before { transform: scaleX(1); }

.topic-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 700;
  color: var(--cream); line-height: 1; margin-bottom: 0.5rem;
}

.topic-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--deep); margin-bottom: 1rem;
}

.topic-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }

.tag {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 3px 10px;
  background: var(--cream); color: var(--muted);
}

.topic-body { font-size: 0.9rem; line-height: 1.7; color: var(--muted); }
.topic-subtopics { font-style: italic; font-size: 0.82rem; margin-top: 1rem; color: var(--muted); }

/* ── BUSINESS PAGE ── */
.biz-header {
  background: linear-gradient(135deg, var(--deep) 0%, #3d2b10 100%);
  padding: 5rem 2rem 3rem; text-align: center;
}
.biz-header .section-title { color: var(--white); margin: 0 auto 0.5rem; }
.biz-header .section-body { color: rgba(245,240,232,0.6); margin: 0 auto; }

.biz-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 3rem;
}

.biz-field { padding: 3.5rem; border: 1px solid var(--cream); }
.biz-field:nth-child(1) { background: var(--white); }
.biz-field:nth-child(2) { background: var(--cream); }

.biz-icon {
  width: 56px; height: 56px;
  border: 1px solid var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.5rem; background: var(--paper);
}

.biz-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: var(--deep); margin-bottom: 1rem;
}

.biz-body { font-size: 0.95rem; line-height: 1.8; color: var(--muted); margin-bottom: 1.5rem; }

.biz-bullets { list-style: none; }
.biz-bullets li {
  font-size: 0.88rem; color: var(--muted);
  padding: 0.4rem 0; border-bottom: 1px solid rgba(44,36,22,0.06);
  display: flex; align-items: center; gap: 0.6rem;
}
.biz-bullets li::before { content: '→'; color: var(--gold); font-size: 0.8rem; }

.biz-cta {
  margin-top: 4rem; background: var(--deep); padding: 3rem; text-align: center;
}
.biz-cta .section-title { color: var(--white); margin: 0 auto 1rem; }
.biz-cta p { font-size: 0.9rem; color: rgba(245,240,232,0.55); max-width: 480px; margin: 0 auto 2rem; line-height: 1.7; }

/* ── HEALTHY PAGE ── */
.health-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem;
}

.health-pillar {
  background: var(--white); border-top: 3px solid var(--gold);
  padding: 2.5rem 2rem; transition: transform 0.2s;
}
.health-pillar:hover { transform: translateY(-4px); }

.health-pillar-icon { font-size: 2rem; margin-bottom: 1rem; }
.health-pillar-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--deep); margin-bottom: 0.75rem;
}
.health-pillar-body { font-size: 0.9rem; line-height: 1.7; color: var(--muted); margin-bottom: 1rem; }

.health-pillar-list { list-style: none; }
.health-pillar-list li {
  font-size: 0.83rem; color: var(--muted);
  padding: 0.3rem 0;
  display: flex; align-items: flex-start; gap: 0.5rem;
}
.health-pillar-list li::before {
  content: '◆'; color: var(--gold); font-size: 0.5rem; margin-top: 5px; flex-shrink: 0;
}

.health-stats {
  margin-top: 4rem; background: var(--white); border: 1px solid var(--cream); padding: 3rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.stat-box {
  text-align: center; padding: 1.5rem; background: var(--cream);
}
.stat-num {
  font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--gold);
}
.stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 0.25rem; }

/* ── ABOUT PAGE ── */
.about-layout {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem;
  align-items: start; padding: 6rem 2rem;
  max-width: 1100px; margin: 0 auto;
}

.about-sidebar { position: sticky; top: calc(var(--nav-h) + 2rem); }

.about-avatar {
  width: 100%; aspect-ratio: 3/4; max-height: 380px;
  background: linear-gradient(160deg, var(--cream) 0%, var(--gold-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; margin-bottom: 2rem; position: relative; overflow: hidden;
}

.about-avatar::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid var(--gold-light);
}

.about-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; color: var(--deep); margin-bottom: 0.25rem;
}

.about-role {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem;
}

.about-social { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.social-pill {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 6px 14px;
  border: 1px solid var(--cream); color: var(--muted);
  cursor: pointer; transition: all 0.2s;
  background: transparent; font-family: 'DM Sans', sans-serif;
  text-decoration: none; display: inline-block;
}
.social-pill:hover { border-color: var(--gold); color: var(--gold); }

.about-section { margin-bottom: 3.5rem; }
.about-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--deep); margin-bottom: 1rem;
  padding-bottom: 0.75rem; border-bottom: 1px solid var(--cream);
}
.about-text { font-size: 0.95rem; line-height: 1.85; color: var(--muted); margin-bottom: 1rem; }

.timeline { list-style: none; }
.timeline-item {
  display: grid; grid-template-columns: 80px 1fr; gap: 1rem;
  padding: 1rem 0; border-bottom: 1px solid var(--cream);
}
.timeline-year { font-size: 0.75rem; font-weight: 500; color: var(--gold); letter-spacing: 0.05em; padding-top: 2px; }
.timeline-event { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }
.timeline-event strong { color: var(--deep); font-weight: 500; }

.skills-wrap { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.skill-tag { font-size: 0.78rem; padding: 5px 14px; background: var(--cream); color: var(--deep); font-weight: 500; }

/* Contact form */
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem; border: 1px solid var(--cream);
  background: var(--white); font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; color: var(--ink); outline: none;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { grid-column: 1 / -1; resize: vertical; }
.contact-form .btn { grid-column: 1 / -1; }

/* ── FOOTER ── */
.site-footer {
  background: var(--deep); color: rgba(245,240,232,0.4);
  text-align: center; padding: 2rem;
  font-size: 0.8rem; letter-spacing: 0.05em;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.site-footer span { color: var(--gold); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── STANDARD WP CONTENT ── */
.entry-content { max-width: 760px; margin: 0 auto; padding: 4rem 2rem; }
.entry-content h1, .entry-content h2, .entry-content h3 {
  font-family: 'Playfair Display', serif; color: var(--deep); margin-bottom: 1rem;
}
.entry-content p { font-size: 0.95rem; line-height: 1.85; color: var(--muted); margin-bottom: 1.5rem; }
.entry-content a { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  #site-navigation { padding: 0 1.5rem; }
  #site-navigation ul { gap: 1rem; }
  #site-navigation ul li a { font-size: 0.75rem; }
  .home-hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-text { padding: 4rem 1.5rem; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .topics-grid, .health-pillars { grid-template-columns: 1fr; }
  .biz-grid { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; gap: 2rem; }
  .about-sidebar { position: static; }
  .health-stats { grid-template-columns: 1fr; }
  .section-wrap { padding: 3rem 1.5rem; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form textarea, .contact-form .btn { grid-column: 1; }
}
