/*
Theme Name: Royal Archer
Theme URI: https://royalarcher.com
Author: Royal Archer Editorial Studio
Author URI: https://royalarcher.com
Description: Official theme for Royal Archer Editorial Studio — Aiming at excellence in every word.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: royal-archer
Tags: editorial, membership, blog, custom-colors, custom-logo, featured-images
*/

/* ─────────────────────────────────────────
   ROYAL ARCHER — MASTER STYLESHEET
   ───────────────────────────────────────── */

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

:root {
  --ink: #1a1714;
  --parchment: #f5f0e8;
  --cream: #faf7f2;
  --gold: #b8945a;
  --gold-light: #d4af7a;
  --muted: #7a7168;
  --rule: #d8d0c0;
  --section-gap: 100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  cursor: none;
}

/* ── Custom Cursor ── */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease;
  mix-blend-mode: multiply;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.35s ease, width 0.3s, height 0.3s;
  mix-blend-mode: multiply;
}

/* ── Navigation ── */
nav, .site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 60px;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s;
}
nav.scrolled, .site-header.scrolled { border-bottom-color: var(--rule); }

.nav-logo, .site-branding a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }

.nav-links, .main-navigation ul {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a, .main-navigation a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s;
  font-weight: 500;
}
.nav-links a:hover, .main-navigation a:hover { color: var(--gold); }

.nav-cta {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: background 0.25s, color 0.25s;
}
.nav-cta:hover { background: var(--gold); color: var(--cream); }

/* ── Hero ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 60px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 75% 50%, rgba(184,148,90,0.07) 0%, transparent 70%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 79px,
      rgba(184,148,90,0.06) 79px,
      rgba(184,148,90,0.06) 80px
    );
}

.hero-rule {
  position: absolute;
  left: 60px; top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.hero-content {
  max-width: 780px;
  padding-left: 40px;
  animation: fadeUp 1s ease both;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: var(--gold);
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  color: var(--ink);
}
h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 48px;
  font-weight: 300;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.25s;
}
.btn-ghost::after { content: '→'; transition: transform 0.25s; }
.btn-ghost:hover { color: var(--gold); }
.btn-ghost:hover::after { transform: translateX(4px); }

.hero-stats {
  position: absolute;
  right: 80px; bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  animation: fadeUp 1s 0.4s ease both;
}
.stat { text-align: right; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  color: var(--gold);
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Sections ── */
section { padding: var(--section-gap) 60px; }

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 48px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
  max-width: 80px;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 20px;
}
h2 em { font-style: italic; color: var(--gold); }

/* ── Highlighted Word Fonts ── */

.em-henny {
  font-family: 'Henny Penny', serif;
  font-style: normal;
  color: var(--gold);
  font-size: 1.15em;
}
.em-mountains {
  font-family: 'Mountains of Christmas', serif;
  font-style: normal;
  font-weight: 700;
  color: var(--gold);
  font-size: 1.05em;
}
.em-mystery {
  font-family: 'Mystery Quest', cursive;
  font-style: normal;
  color: var(--gold);
}
.em-spectral {
  font-family: 'Spectral', serif;
  font-style: normal;
  font-weight: 700;
  color: var(--gold);
}
.em-barrio {
  font-family: 'Barrio', cursive;
  font-style: normal;
  color: var(--gold);
  font-size: 1.05em;
}
.em-cardo {
  font-family: 'Cardo', serif;
  font-style: normal;
  color: var(--gold);
}
.em-silk {
  font-family: 'Silkscreen', sans-serif;
  font-style: normal;
  color: var(--gold);
  font-size: 0.85em;
  letter-spacing: 0.08em;
}
.em-azeret {
  font-family: 'Azeret Mono', monospace;
  font-style: normal;
  font-weight: 700;
  color: var(--gold);
  font-size: 0.9em;
}
.em-imfell {
  font-family: 'IM Fell English', serif;
  font-style: normal;
  color: var(--gold);
}
.em-pacifico {
  font-family: 'Pacifico', cursive;
  font-style: normal;
  color: var(--gold);
  font-size: 0.95em;
}

/* ── Family Stories Section ── */
#family-stories { background: var(--parchment); }

.family-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 56px;
}
.family-intro p {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.9;
  padding-top: 8px;
}

.family-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rule);
}

.family-card {
  background: var(--parchment);
  padding: 44px 36px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.family-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}
.family-card:hover { background: var(--cream); }
.family-card:hover::before { height: 100%; }

.family-card-ghost { background: var(--ink); color: var(--cream); }
.family-card-ghost:hover { background: #2a2520; }
.family-card-ghost h3 { color: var(--cream); }
.family-card-ghost p { color: rgba(250,247,242,0.6); }
.family-card-ghost .service-tag { color: var(--gold-light); border-color: rgba(184,148,90,0.3); }

.family-card-more { background: var(--cream); }

.family-icon {
  font-size: 1.8rem;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 20px;
  line-height: 1;
  display: block;
}
.family-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.25;
}
.family-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}

@media (max-width: 900px) {
  .family-intro { grid-template-columns: 1fr; gap: 32px; }
  .family-grid { grid-template-columns: 1fr; }
}

/* ── Guarantee Bar ── */
.guarantee-bar { background: var(--gold); padding: 24px 60px; }
.guarantee-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.guarantee-icon { color: rgba(250,247,242,0.5); font-size: 0.9rem; }
.guarantee-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.guarantee-text strong {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 500;
}
.guarantee-text span {
  color: rgba(250,247,242,0.8);
  font-weight: 300;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
}

/* ── About ── */
#about {
  background: var(--parchment);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p {
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 20px;
}
.portrait-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--rule) 0%, var(--parchment) 100%);
  position: relative;
  overflow: hidden;
}
.portrait-frame::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid var(--gold);
  opacity: 0.4;
  z-index: 1;
}
.portrait-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.portrait-caption {
  margin-top: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--muted);
  text-align: center;
}

/* ── Team ── */
#team { background: var(--cream); padding: var(--section-gap) 60px; }
.team-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 56px;
}
.team-intro-right p {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 32px;
}
.hiring-card {
  background: var(--parchment);
  border-left: 3px solid var(--gold);
  padding: 32px 36px;
}
.hiring-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
  padding: 4px 12px;
  border: 1px solid var(--gold);
}
.hiring-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.hiring-card p {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 20px;
}
.team-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--rule);
}
.value-item {
  background: var(--cream);
  padding: 36px 28px;
  transition: background 0.25s;
}
.value-item:hover { background: var(--parchment); }
.value-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--rule);
  line-height: 1;
  margin-bottom: 16px;
}
.value-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.value-item p { font-size: 0.84rem; color: var(--muted); font-weight: 300; line-height: 1.7; }

/* ── Services ── */
#services { background: var(--cream); }
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 64px;
}
.services-intro p { font-size: 1rem; color: var(--muted); font-weight: 300; line-height: 1.9; padding-top: 8px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rule);
}
.service-card {
  background: var(--cream);
  padding: 44px 36px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}
.service-card:hover { background: var(--parchment); }
.service-card:hover::before { height: 100%; }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--rule);
  line-height: 1;
  margin-bottom: 20px;
}
.service-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; margin-bottom: 12px; }
.service-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.75; font-weight: 300; }
.service-tag {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border-top: 1px solid var(--rule);
  padding-top: 12px;
  font-weight: 500;
}

/* ── Founder Services ── */
#founder-services { background: var(--ink); color: var(--cream); padding: var(--section-gap) 60px; }
.founder-services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 56px;
}
#founder-services .section-label { color: var(--gold-light); }
#founder-services .section-label::after { background: rgba(255,255,255,0.1); }
#founder-services h2 { color: var(--cream); }
.founder-services-intro p { font-size: 1rem; color: rgba(250,247,242,0.55); font-weight: 300; line-height: 1.9; padding-top: 8px; }
.founder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.05);
}
.founder-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 40px 36px;
  transition: background 0.3s, border-color 0.3s;
}
.founder-card:hover { background: rgba(184,148,90,0.08); border-color: rgba(184,148,90,0.25); }
.founder-card-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 20px;
  line-height: 1;
}
.founder-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 600; margin-bottom: 12px; color: var(--cream); }
.founder-card p { font-size: 0.86rem; color: rgba(250,247,242,0.5); font-weight: 300; line-height: 1.75; }
.founder-langs {
  display: inline-block;
  margin-top: 16px;
  margin-bottom: 12px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}

/* ── Portfolio ── */
#portfolio { background: var(--ink); color: var(--cream); }
#portfolio .section-label { color: var(--gold-light); }
#portfolio .section-label::after { background: rgba(255,255,255,0.1); }
#portfolio h2 { color: var(--cream); }
.portfolio-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
  margin-top: 56px;
}
.portfolio-item {
  background: rgba(255,255,255,0.04);
  padding: 40px 36px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s, border-color 0.3s;
  cursor: pointer;
}
.portfolio-item:hover { background: rgba(184,148,90,0.08); border-color: rgba(184,148,90,0.25); }
.portfolio-item.featured { grid-row: 1 / 3; display: flex; flex-direction: column; justify-content: flex-end; }
.portfolio-item .genre {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  font-weight: 500;
}
.portfolio-item h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; margin-bottom: 12px; line-height: 1.3; }
.portfolio-item.featured h3 { font-size: 2.2rem; font-weight: 300; }
.portfolio-item p { font-size: 0.85rem; color: rgba(250,247,242,0.5); font-weight: 300; line-height: 1.7; }
.portfolio-placeholder {
  height: 220px;
  background: rgba(255,255,255,0.03);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(184,148,90,0.2);
}
.portfolio-placeholder span { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.2); }

/* ── Membership ── */
#membership { background: var(--parchment); }
.membership-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 48px;
}
.membership-intro p { font-size: 1rem; color: var(--muted); font-weight: 300; line-height: 1.9; padding-top: 8px; }
.membership-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--rule); }
.tier-card { background: var(--parchment); padding: 48px 40px; position: relative; }
.tier-card.featured-tier { background: var(--ink); color: var(--cream); }
.tier-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 14px;
  border: 1px solid var(--rule);
  color: var(--muted);
  margin-bottom: 28px;
  font-weight: 500;
}
.featured-tier .tier-badge { border-color: var(--gold); color: var(--gold); }
.tier-price { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300; line-height: 1; margin-bottom: 6px; }
.tier-period { font-size: 0.8rem; color: var(--muted); margin-bottom: 28px; }
.featured-tier .tier-period { color: rgba(250,247,242,0.5); }
.tier-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; margin-bottom: 8px; }
.tier-card > p { font-size: 0.88rem; color: var(--muted); margin-bottom: 28px; font-weight: 300; line-height: 1.7; }
.featured-tier > p { color: rgba(250,247,242,0.6); }
.tier-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.tier-features li { font-size: 0.85rem; color: var(--muted); display: flex; gap: 12px; align-items: flex-start; font-weight: 300; }
.featured-tier .tier-features li { color: rgba(250,247,242,0.7); }
.tier-features li::before { content: '—'; color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.tier-btn {
  display: block;
  text-align: center;
  padding: 13px 24px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s;
}
.tier-btn.outline { border: 1px solid var(--rule); color: var(--ink); }
.tier-btn.outline:hover { border-color: var(--gold); color: var(--gold); }
.tier-btn.solid { background: var(--gold); color: var(--cream); }
.tier-btn.solid:hover { background: var(--gold-light); }

/* ── Profile Feature ── */
.profile-feature { background: var(--cream); border: 1px solid var(--rule); padding: 48px; margin-bottom: 48px; }
.profile-feature-label { margin-bottom: 28px; }
.profile-feature-content { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.profile-demo { display: flex; gap: 20px; align-items: flex-start; background: var(--parchment); border: 1px solid var(--rule); padding: 28px; }
.avatar-placeholder { width: 60px; height: 60px; background: var(--rule); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--gold); flex-shrink: 0; }
.profile-demo-name { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; margin-bottom: 2px; }
.profile-demo-role { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; font-weight: 500; }
.profile-demo-bio { font-size: 0.82rem; color: var(--muted); font-weight: 300; line-height: 1.7; margin-bottom: 14px; }
.profile-demo-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.ptag { font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 9px; font-weight: 500; }
.ptag.lang { background: var(--ink); color: var(--cream); }
.ptag.domain { background: transparent; border: 1px solid var(--gold); color: var(--gold); }
.ptag.interest { background: transparent; border: 1px solid var(--rule); color: var(--muted); }
.profile-demo-meta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.pmeta { font-size: 0.72rem; color: var(--muted); font-weight: 300; }
.tier-pill { font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 3px 10px; border: 1px solid var(--gold); color: var(--gold); font-weight: 500; }
.profile-feature-points { display: flex; flex-direction: column; gap: 22px; }
.pf-point { display: flex; gap: 14px; align-items: flex-start; }
.pf-icon { color: var(--gold); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }
.pf-point strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 600; margin-bottom: 3px; }
.pf-point p { font-size: 0.82rem; color: var(--muted); font-weight: 300; line-height: 1.65; }

/* ── Directory ── */
.directory-preview { background: var(--parchment); border: 1px solid var(--rule); padding: 48px; margin-top: 48px; }
.directory-header { margin-bottom: 24px; }
.directory-header p { font-size: 0.88rem; color: var(--muted); font-weight: 300; }
.directory-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.dfilter {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 16px; border: 1px solid var(--rule); background: transparent;
  color: var(--muted); cursor: pointer; font-weight: 500;
  transition: all 0.2s; font-family: 'DM Sans', sans-serif;
}
.dfilter:hover, .dfilter.active { border-color: var(--gold); color: var(--gold); }
.directory-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; background: var(--rule); }
.dir-card { background: var(--parchment); padding: 24px 20px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; transition: background 0.25s; }
.dir-card:hover { background: var(--cream); }
.dir-avatar { width: 46px; height: 46px; background: var(--rule); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--muted); margin-bottom: 6px; }
.dir-name { font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; font-weight: 600; }
.dir-role { font-size: 0.62rem; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
.dir-tags { display: flex; flex-wrap: wrap; gap: 4px; justify-content: center; margin-top: 6px; }
.dtag { font-size: 0.58rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 2px 7px; border: 1px solid var(--rule); color: var(--muted); }

/* ── Courses ── */
#courses { background: var(--cream); }
.courses-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 56px; }
.courses-header p { font-size: 1rem; color: var(--muted); font-weight: 300; line-height: 1.9; padding-top: 8px; }
.courses-list { display: flex; flex-direction: column; gap: 2px; background: var(--rule); }
.course-row {
  background: var(--cream);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 32px;
  padding: 28px 36px;
  transition: background 0.25s;
  text-decoration: none;
  color: inherit;
}
.course-row:hover { background: var(--parchment); }
.course-num { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--gold); font-style: italic; width: 28px; }
.course-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; margin-bottom: 4px; }
.course-info p { font-size: 0.82rem; color: var(--muted); font-weight: 300; }
.course-level { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.course-arrow { font-size: 1.1rem; color: var(--gold); opacity: 0; transition: opacity 0.25s, transform 0.25s; }
.course-row:hover .course-arrow { opacity: 1; transform: translateX(4px); }

/* ── Blog ── */
#blog { background: var(--parchment); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--rule); margin-top: 56px; }
.blog-card { background: var(--parchment); padding: 36px 32px; transition: background 0.25s; text-decoration: none; color: inherit; display: block; }
.blog-card:hover { background: var(--cream); }
.blog-meta { display: flex; gap: 16px; align-items: center; margin-bottom: 20px; }
.blog-cat { font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.blog-date { font-size: 0.72rem; color: var(--muted); }
.blog-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 600; line-height: 1.3; margin-bottom: 12px; }
.blog-card p { font-size: 0.85rem; color: var(--muted); font-weight: 300; line-height: 1.75; }
.blog-read { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); font-weight: 500; transition: color 0.25s; }
.blog-card:hover .blog-read { color: var(--gold); }

/* ── Join CTA ── */
#join {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}
#join::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(184,148,90,0.08) 0%, transparent 70%),
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(184,148,90,0.04) 39px, rgba(184,148,90,0.04) 40px);
}
#join > * { position: relative; }
#join .section-label { justify-content: center; }
#join .section-label::after { display: none; }
#join h2 { color: var(--cream); font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 20px; }
#join p { font-size: 1.05rem; color: rgba(250,247,242,0.55); max-width: 520px; margin: 0 auto 48px; font-weight: 300; line-height: 1.9; }
.join-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.btn-gold { display: inline-block; padding: 15px 40px; background: var(--gold); color: var(--cream); text-decoration: none; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; transition: background 0.25s, transform 0.2s; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline-cream { display: inline-block; padding: 15px 40px; border: 1px solid rgba(250,247,242,0.3); color: var(--cream); text-decoration: none; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; transition: border-color 0.25s, background 0.25s; }
.btn-outline-cream:hover { border-color: var(--gold); background: rgba(184,148,90,0.1); }

/* ── Footer ── */
.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--cream); }
.footer-logo span { color: var(--gold); }
.footer-slogan { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.85rem; color: rgba(250,247,242,0.3); margin-top: 5px; }
.footer-links { display: flex; gap: 32px; list-style: none; }
.footer-links a { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(250,247,242,0.35); text-decoration: none; transition: color 0.25s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.75rem; color: rgba(250,247,242,0.2); }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── WordPress Core ── */
.wp-block-image img { max-width: 100%; height: auto; }
.aligncenter { text-align: center; }
img { max-width: 100%; height: auto; }
a { color: var(--gold); }
p { margin-bottom: 1rem; }

/* ── Responsive ── */
@media (max-width: 900px) {
  nav, .site-header { padding: 20px 28px; }
  .nav-links, .main-navigation ul { display: none; }
  section { padding: 72px 28px; }
  #hero { padding: 120px 28px 80px; }
  .hero-content { padding-left: 0; }
  .hero-stats { right: 28px; bottom: 40px; flex-direction: row; gap: 32px; }
  .hero-rule { display: none; }
  #about, .services-intro, .membership-intro, .courses-header, .founder-services-intro, .team-intro { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .membership-grid, .founder-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item.featured { grid-row: auto; }
  .blog-grid { grid-template-columns: 1fr; }
  .team-values { grid-template-columns: 1fr 1fr; }
  .directory-grid { grid-template-columns: 1fr 1fr; }
  .profile-feature-content { grid-template-columns: 1fr; }
  .profile-feature, .directory-preview { padding: 24px; }
  .guarantee-bar { padding: 20px 28px; }
  .guarantee-inner { flex-direction: column; gap: 12px; }
  .site-footer { flex-direction: column; text-align: center; padding: 40px 28px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
