:root {
  --gold: #C8922A;
  --gold-light: #FFDC73;
  --gold-pale: #FFF8E1;
  --gold-mid: #F0C040;
  --charcoal: #2A2620;
  --charcoal-2: #3D3930;
  --charcoal-3: #6B6455;
   --dark:#23201A;
  --dark2:#35312A;
  --dark3:#6B6455;
  --cream: #FAF6ED;
  --cream-2: #F3EDD8;
  
  --white: #FFFFFF;
  --sand: #EDE4CC;
  --bs-body-font-family: 'Jost', sans-serif;
  --bs-body-bg: var(--cream);
  --bs-body-color: var(--charcoal);
}
.text-gold{ color:var(--gold);}
.btn-ow {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ow:hover{border-color:var(--gold-light);color:var(--gold-light);}
/* ── GLOBAL ── */
body { font-family: 'Jost', sans-serif !important; background: var(--cream); color: var(--charcoal); scroll-behavior: smooth; }
h1,h2,h3,h4,h5,h6 { font-family: 'Cormorant Garamond', serif !important; }

/* ── PAGE SYSTEM ── */
.page { display: none; min-height: 100vh; }
.page.active { display: block; }

/* ── NAV ── */
.navbar-rgk {
  background: var(--charcoal);
  height: 72px;
  border-bottom: 1px solid rgba(200,146,42,0.3);
  padding: 0 40px;
}
.nav-logo-circle {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: var(--charcoal);
  flex-shrink: 0;
}
.nav-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: var(--gold-light); letter-spacing: 1px; line-height: 1.1; }
.nav-brand-tag { font-size: 10px; color: rgba(255,220,115,0.5); letter-spacing: 3px; text-transform: uppercase; line-height: 1; }
.navbar-rgk .nav-link {
  color: rgba(255,255,255,0.6) !important; font-size: 12px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase; padding: 8px 9px !important;
  border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s;
}
.navbar-rgk .nav-link:hover, .navbar-rgk .nav-link.active {
  color: var(--gold-light) !important; border-bottom-color: var(--gold);
}
.btn-nav-cta {
  background: var(--gold); color: var(--charcoal);
  padding: 10px 12px; border-radius: 4px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  border: none; cursor: pointer; transition: background 0.2s; white-space: nowrap;
}
.btn-nav-cta:hover { background: var(--gold-light); }
.navbar-toggler { border-color: rgba(200,146,42,0.4); }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(200,146,42,0.8)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

/* ── SECTION SHARED ── */
.section-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.section-tag::before { content: ''; width: 28px; height: 2px; background: var(--gold); display: block; }
.section-tag.centered { justify-content: center; }
.section-h2 { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 600; line-height: 1.2; color: var(--charcoal); }
.section-h2 em { font-style: italic; color: var(--gold); }
.section-h2.light { color: var(--white); }
.body-text { font-size: 16px; line-height: 1.85; color: var(--charcoal-3); }
.body-text.light { color: rgba(255,255,255,0.65); }

/* ── CUSTOM BUTTONS ── */
.btn-gold {
  background: var(--gold); color: var(--white);
  padding: 14px 34px; border: none; border-radius: 4px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s;
}
.btn-gold:hover { background: var(--gold-light); color: var(--charcoal); }
.btn-outline-gold {
  background: transparent; color: var(--gold);
  padding: 14px 34px; border: 1.5px solid var(--gold); border-radius: 4px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }
.btn-outline-white {
  background: transparent; color: var(--white);
  padding: 14px 34px; border: 1.5px solid rgba(255,255,255,0.4); border-radius: 4px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s;
}
.btn-outline-white:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* ════ HERO ════ */
.hero-section {
  /*min-height: 100vh; */ background: var(--charcoal);
  padding-top: 72px; position: relative; overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: radial-gradient(circle, var(--gold-light) 1px, transparent 1px);
  background-size: 30px 30px; pointer-events: none;
}
.hero-glow {
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,146,42,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
}
.hero-eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--gold); display: block; }
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 68px); line-height: 1.05; color: var(--white); font-weight: 300; margin-bottom: 8px;
}
.hero-h1 strong { font-weight: 700; display: block; }
.hero-h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub { font-size: 17px; line-height: 1.8; color: rgba(255,255,255,0.55); margin: 28px 0 44px; max-width: 440px; }
.hero-sub strong { color: var(--gold-light); font-weight: 500; }
.hero-stats { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 40px; margin-top: 64px; }
.stat-val { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 700; color: var(--gold-light); line-height: 1; }
.stat-lbl { font-size: 10px; color: rgba(255,255,255,0.35); letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }
.hero-photo {
  width: 100%; max-width: 360px; aspect-ratio: 360/460;
  border-radius: 180px 180px 140px 140px;
  background: linear-gradient(160deg, var(--charcoal-2), #1A1710);
  border: 2px solid rgba(200,146,42,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px; overflow: hidden; position: relative;
}
.hero-photo-icon { font-size: 60px; opacity: 0.15; }
.hero-photo-txt { font-size: 11px; color: rgba(255,255,255,0.2); letter-spacing: 3px; text-transform: uppercase; }
.hero-card-1 {
  position: absolute; bottom: 30px; left: -20px;
  background: var(--gold); color: var(--charcoal);
  padding: 18px 22px; border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4); z-index: 2;
}
.hero-card-1 .big { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; display: block; }
.hero-card-1 .sm { font-size: 11px; font-weight: 600; letter-spacing: 1px; }
.hero-card-2 {
  position: absolute; top: 50px; right: -10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(200,146,42,0.25);
  backdrop-filter: blur(10px); color: var(--white); padding: 14px 20px; border-radius: 8px; z-index: 2;
}
.hero-card-2 strong { color: var(--gold-light); display: block; font-size: 14px; margin-bottom: 2px; }
.hero-card-2 span { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 1px; }
.hero-right-wrap { display: flex; align-items: center; justify-content: center; padding: 80px 40px; position: relative; }

/* ════ ABOUT SNAP ════ */
.about-snap-card {
  background: var(--charcoal); border-radius: 20px; padding: 44px 40px;
  border: 1px solid rgba(200,146,42,0.2); position: relative; overflow: hidden;
}
.about-snap-card::before {
  content: '"'; font-family: 'Cormorant Garamond', serif; font-size: 200px; line-height: 0.8;
  color: rgba(200,146,42,0.05); position: absolute; top: 10px; left: 10px;
}
.about-quote { font-family: 'Cormorant Garamond', serif; font-size: 22px; line-height: 1.6; color: var(--white); font-style: italic; position: relative; z-index: 1; margin-bottom: 28px; }
.about-quote strong { color: var(--gold-light); font-style: normal; }
.about-avatar { width: 46px; height: 46px; border-radius: 50%; background: rgba(200,146,42,0.2); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.about-name { color: var(--gold-light); font-weight: 700; font-size: 15px; }
.about-role { color: rgba(255,255,255,0.4); font-size: 11px; letter-spacing: 1px; margin-top: 2px; }
.pill { background: rgba(200,146,42,0.12); border: 1px solid rgba(200,146,42,0.25); color: var(--gold); padding: 6px 16px; border-radius: 30px; font-size: 11px; font-weight: 600; letter-spacing: 1px; }
.snap-stat { background: var(--cream-2); border-radius: 12px; padding: 20px; text-align: center; }
.snap-stat .n { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 700; color: var(--gold); }
.snap-stat .l { font-size: 10px; color: var(--charcoal-3); letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }

/* ════ PROBLEM ════ */
.problem-section { background: var(--charcoal); position: relative; overflow: hidden; }
.problem-point {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(200,146,42,0.12);
  border-radius: 12px; padding: 24px; display: flex; align-items: flex-start; gap: 14px;
}
.problem-point .icon { color: var(--gold); font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.problem-point p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.6; margin: 0; }
.problem-close { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-style: italic; color: rgba(255,255,255,0.5); line-height: 1.6; }
.problem-close strong { color: var(--gold-light); }

/* ════ HOW I HELP ════ */
.how-section { background: var(--cream-2); }
.pillar-icon { width: 52px; height: 52px; border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.pillar-title { font-weight: 700; font-size: 15px; color: var(--charcoal); margin-bottom: 4px; }
.pillar-desc { font-size: 14px; color: var(--charcoal-3); line-height: 1.6; margin: 0; }
.how-visual { background: var(--charcoal); border-radius: 20px; padding: 48px 40px; border: 1px solid rgba(200,146,42,0.2); }
.how-visual-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--white); margin-bottom: 32px; font-style: italic; }
.fw-item { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.fw-item:last-child { border-bottom: none; }
.fw-dot { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; letter-spacing: 0.5px; }
.fw-name { font-weight: 700; color: var(--white); font-size: 14px; }
.fw-desc { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.fw-arrow { margin-left: auto; color: rgba(255,255,255,0.2); font-size: 16px; }

/* ════ SERVICE CARDS ════ */
.serv-card {
  background: var(--white); border-radius: 16px; padding: 32px 24px;
  border: 1px solid var(--sand); text-align: center;
  transition: transform 0.2s, box-shadow 0.2s; cursor: pointer; height: 100%;
}
.serv-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(42,38,32,0.08); }
.serv-icon { width: 56px; height: 56px; border-radius: 14px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.serv-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--charcoal); margin-bottom: 10px; }
.serv-desc { font-size: 13px; color: var(--charcoal-3); line-height: 1.7; }
.serv-link { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; margin-top: 16px; display: block; }

/* ════ TESTIMONIALS ════ */
.testi-section { background: var(--sand); }
.testi-card { background: var(--white); border-radius: 16px; padding: 36px 32px; position: relative; box-shadow: 0 4px 20px rgba(42,38,32,0.06); height: 100%; }
.testi-card.featured { background: var(--charcoal); }
.stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-text { font-family: 'Cormorant Garamond', serif; font-size: 18px; line-height: 1.7; color: var(--charcoal-3); font-style: italic; margin-bottom: 24px; }
.testi-card.featured .testi-text { color: rgba(255,255,255,0.6); }
.testi-card.featured .testi-text strong { color: var(--gold-light); }
.testi-av { width: 40px; height: 40px; border-radius: 50%; background: var(--cream-2); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; color: var(--charcoal); flex-shrink: 0; }
.testi-nm { font-weight: 700; font-size: 14px; color: var(--charcoal); }
.testi-card.featured .testi-nm { color: var(--white); }
.testi-rl { font-size: 11px; color: var(--charcoal-3); letter-spacing: 1px; }
.testi-card.featured .testi-rl { color: rgba(255,255,255,0.3); }
.testi-tag {
  position: absolute; top: 18px; right: 18px;
  background: var(--gold); color: var(--charcoal);
  padding: 4px 12px; border-radius: 20px; font-size: 10px; font-weight: 700; letter-spacing: 1px;
}

/* ════ BLOG ════ */
.blog-card { background: var(--white); border-radius: 16px; overflow: hidden; cursor: pointer; transition: transform 0.2s; height: 100%; }
.blog-card:hover { transform: translateY(-4px); }
.blog-thumb { height: 200px; display: flex; align-items: center; justify-content: center; font-size: 40px; position: relative; }
.blog-cat { position: absolute; bottom: 14px; left: 14px; background: var(--gold); color: var(--white); padding: 4px 14px; border-radius: 20px; font-size: 10px; font-weight: 700; letter-spacing: 1px; }
.blog-body { padding: 24px; }
.blog-date { font-size: 11px; color: var(--charcoal-3); letter-spacing: 1px; margin-bottom: 8px; }
.blog-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--charcoal); line-height: 1.4; margin-bottom: 10px; }
.blog-card.featured .blog-title { font-size: 24px; }
.blog-excerpt { font-size: 13px; line-height: 1.7; color: var(--charcoal-3); }
.blog-read { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; margin-top: 14px; display: block; }

/* ════ FINAL CTA ════ */
.final-cta { background: var(--charcoal); position: relative; overflow: hidden; }
.final-cta-quote { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-style: italic; color: rgba(255,255,255,0.4); max-width: 600px; margin: 0 auto 20px; line-height: 1.6; }
.final-cta h2 { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 600; color: var(--white); margin-bottom: 36px; }
.final-cta h2 em { color: var(--gold-light); font-style: italic; }

/* ════ FOOTER ════ */
footer { background: #1A1710; border-top: 1px solid rgba(200,146,42,0.15); }
.footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700; color: var(--gold-light); letter-spacing: 1px; }
.footer-brand-tag { font-size: 10px; color: rgba(255,220,115,0.3); letter-spacing: 3px; text-transform: uppercase; margin-top: 4px; margin-bottom: 16px; }
.footer-bio { font-size: 13px; color: rgba(255,255,255,0.3); line-height: 1.8; }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.35); text-decoration: none; cursor: pointer; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item .ic { color: var(--gold); font-size: 14px; margin-top: 2px; }
.footer-contact-item p { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.5; margin: 0; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); }
.social-btn { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 14px; cursor: pointer; transition: background 0.2s; }
.social-btn:hover { background: rgba(200,146,42,0.2); }

/* ════ PAGE BANNER ════ */
.page-banner {
  background: var(--charcoal); padding: 140px 0 100px;
  position: relative; overflow: hidden;
}
/*
.page-banner::before {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 80px;
  background: var(--cream); clip-path: ellipse(55% 100% at 50% 100%);
}*/
.page-banner-tag { font-size: 10px; font-weight: 700; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; margin-bottom: 16px; }
.page-banner h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(40px, 5vw, 60px); font-weight: 300; color: var(--white); line-height: 1.1; }
.page-banner h1 strong { font-weight: 700; display: block; }
.page-banner h1 em { font-style: italic; color: var(--gold-light); }

/* ════ ABOUT PAGE ════ */
.story-photo {
  width: 100%; aspect-ratio: 3/4; border-radius: 16px;
  background: linear-gradient(160deg, var(--charcoal-2), var(--charcoal));
  border: 2px solid rgba(200,146,42,0.2);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px;
}
.story-photo-icon { font-size: 60px; opacity: 0.1; }
.story-photo-txt { font-size: 11px; color: rgba(255,255,255,0.15); letter-spacing: 3px; text-transform: uppercase; }
.cred-item { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--cream-2); border-radius: 10px; }
.cred-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.cred-text { font-size: 13px; color: var(--charcoal-3); }
.mission-box { background: var(--charcoal); border-radius: 16px; padding: 32px; margin: 36px 0; border-left: 4px solid var(--gold); }
.mission-box p { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-style: italic; color: var(--white); line-height: 1.6; margin: 0; }
.mission-box p strong { color: var(--gold-light); font-style: normal; }
.diff-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.diff-item::before { content: '✦'; color: var(--gold); font-size: 12px; flex-shrink: 0; margin-top: 3px; }
.diff-item p { font-size: 15px; color: var(--charcoal-3); line-height: 1.6; margin: 0; }
.about-card { background: var(--white); border-radius: 16px; padding: 36px; border: 1px solid var(--sand); height: 100%; }
.about-card-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; }
.about-card-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; color: var(--charcoal); margin-bottom: 14px; }
.about-card-body { font-size: 14px; line-height: 1.8; color: var(--charcoal-3); }
.about-card-list { list-style: none; padding: 0; margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.about-card-list li { font-size: 14px; color: var(--charcoal-3); display: flex; align-items: flex-start; gap: 8px; }
.about-card-list li::before { content: '•'; color: var(--gold); flex-shrink: 0; }
.story-body { font-size: 16px; line-height: 1.9; color: var(--charcoal-3); margin-bottom: 20px; }
.story-body strong { color: var(--charcoal); }

/* ════ SERVICES PAGE ════ */
.situation-card { text-align: center; padding: 36px 24px; background: var(--white); border-radius: 16px; border: 1px solid var(--sand); height: 100%; }
.situation-icon { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-size: 26px; }
.situation-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--charcoal); margin-bottom: 12px; }

.situation-desc { font-size: 13px; color: var(--charcoal-3); line-height: 1.7; margin: 0; }
.session-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(200,146,42,0.15); border-radius: 16px; padding: 36px; transition: border-color 0.2s; height: 100%; }
.session-card:hover { border-color: rgba(200,146,42,0.4); }
.session-card.highlight { background: rgba(200,146,42,0.08); border-color: rgba(200,146,42,0.3); }
.session-tag { font-size: 10px; font-weight: 700; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-bottom: 12px; }
.session-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; color: var(--white); margin-bottom: 14px; }
.session-body { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.session-meta { display: flex; flex-direction: column; gap: 6px; margin-bottom: 24px; }
.session-meta-item { font-size: 12px; color: rgba(255,255,255,0.35); display: flex; align-items: center; gap: 8px; }
.session-meta-item::before { content: '→'; color: var(--gold); }
.group-card { background: var(--white); border-radius: 16px; padding: 40px; border: 1px solid var(--sand); height: 100%; }
.group-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; color: var(--charcoal); margin-bottom: 14px; }
.group-body { font-size: 14px; line-height: 1.8; color: var(--charcoal-3); margin-bottom: 20px; }
.group-meta { font-size: 12px; color: var(--charcoal-3); margin-bottom: 24px; }
.digital-card { background: var(--charcoal); border-radius: 20px; padding: 60px; border: 1px solid rgba(200,146,42,0.2); }
.digital-title { font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 600; color: var(--white); margin-bottom: 16px; }
.digital-body { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.5); margin-bottom: 24px; }
.digital-inside-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-bottom: 14px; }
.digital-item { font-size: 14px; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.digital-item::before { content: '✦'; color: var(--gold); font-size: 10px; }
.digital-visual { border-radius: 16px; background: linear-gradient(145deg, rgba(200,146,42,0.15), rgba(200,146,42,0.05)); border: 2px dashed rgba(200,146,42,0.2); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; min-height: 200px; }
.digital-visual-icon { font-size: 60px; opacity: 0.3; }
.digital-visual-txt { font-size: 11px; color: rgba(255,255,255,0.2); letter-spacing: 2px; text-transform: uppercase; }
.why-card { background: var(--white); border-radius: 16px; padding: 32px 24px; text-align: center; height: 100%; }
.why-icon { font-size: 32px; margin-bottom: 16px; }
.why-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--charcoal); margin-bottom: 12px; }
.why-desc { font-size: 13px; color: var(--charcoal-3); line-height: 1.7; margin: 0; }
.discovery-cta { background: var(--charcoal); text-align: center; }
.discovery-cta p { font-size: 16px; color: rgba(255,255,255,0.5); margin-bottom: 10px; }
.discovery-cta h3 { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 600; color: var(--white); margin-bottom: 28px; }
.discovery-cta h3 em { color: var(--gold-light); font-style: italic; }

/* ════ RESOURCES PAGE ════ */
.resource-card { background: var(--white); border-radius: 20px; padding: 40px 32px; border: 1px solid var(--sand); position: relative; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; height: 100%; }
.resource-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(42,38,32,0.08); }
.resource-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.resource-card:nth-child(1)::before { background: var(--gold); }
.resource-card:nth-child(2)::before { background: #7B6BAA; }
.resource-card:nth-child(3)::before { background: #5A8A5E; }
.resource-type { font-size: 10px; font-weight: 700; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; }
.resource-icon { font-size: 36px; margin-bottom: 16px; }
.resource-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; color: var(--charcoal); margin-bottom: 14px; line-height: 1.3; }
.resource-body { font-size: 14px; line-height: 1.8; color: var(--charcoal-3); margin-bottom: 24px; }
.resource-free-tag { display: inline-block; background: var(--gold-pale); border: 1px solid rgba(200,146,42,0.3); color: var(--gold); padding: 4px 14px; border-radius: 20px; font-size: 11px; font-weight: 700; margin-bottom: 20px; }
.resources-quote { background: var(--charcoal); }
.resources-quote p { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-style: italic; color: rgba(255,255,255,0.5); max-width: 700px; margin: 0 auto 10px; }
.resources-quote cite { font-size: 13px; color: var(--gold); letter-spacing: 2px; }

/* ════ CONTACT PAGE ════ */
.contact-card { background: var(--white); border-radius: 14px; padding: 24px; border: 1px solid var(--sand); display: flex; align-items: center; gap: 16px; }
.contact-card-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-card-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; color: var(--charcoal-3); text-transform: uppercase; margin-bottom: 4px; }
.contact-card-val { font-size: 15px; font-weight: 600; color: var(--charcoal); }
.contact-form-wrap { background: var(--white); border-radius: 20px; padding: 48px; border: 1px solid var(--sand); }
.form-title-cg { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 600; color: var(--charcoal); margin-bottom: 8px; }
.form-sub { font-size: 14px; color: var(--charcoal-3); margin-bottom: 32px; }
.form-label-custom { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: var(--charcoal-3); text-transform: uppercase; margin-bottom: 6px; display: block; }
.form-input-custom {
  background: var(--cream); border: 1.5px solid var(--sand); border-radius: 8px;
  padding: 14px 16px; font-size: 14px; color: var(--charcoal); font-family: 'Jost', sans-serif;
  outline: none; transition: border-color 0.2s; width: 100%;
}
.form-input-custom:focus { border-color: var(--gold); outline: none; box-shadow: none; }
.form-input-custom::placeholder { color: var(--charcoal-3); }
textarea.form-input-custom { height: 120px; resize: none; }

.page-banner{ background:var(--dark);padding:120px 0 80px;position:relative;overflow:hidden; } .page-banner-glow{position:absolute;bottom:-100px;right:-100px;width:500px;height:500px;border-radius:50%;background:radial-gradient(circle,rgba(200,146,42,0.08) 0%,transparent 65%);pointer-events:none;} .pb-tag{font-size:10px;font-weight:700;letter-spacing:4px;text-transform:uppercase;color:var(--gold);margin-bottom:14px;} .pb-h1{font-family:'Cormorant Garamond',serif;font-size:52px;font-weight:400;color:var(--white);line-height:1.1;} .pb-h1 strong{font-weight:700;} .pb-h1 em{font-style:italic;color:var(--gold-light);} .story{background:var(--cream);} .story-grid{display:grid;grid-template-columns:340px 1fr;gap:60px;align-items:start;} .story-img{width:100%;aspect-ratio:3/4;border-radius:14px;background:linear-gradient(160deg,var(--dark2),var(--dark));border:2px solid rgba(200,146,42,0.2);display:flex;flex-direction:column;align-items:center;justify-content:center;gap:10px;margin-bottom:20px;} .story-img-ic{font-size:48px;opacity:0.1;} .story-img-lbl{font-size:10px;color:rgba(255,255,255,0.12);letter-spacing:3px;text-transform:uppercase;} .creds{display:flex;flex-direction:column;gap:9px;} .cred{display:flex;align-items:center;gap:10px;background:var(--white);border-radius:8px;padding:12px 14px;border:1px solid var(--sand);} .cred-dot{width:7px;height:7px;border-radius:50%;background:var(--gold);flex-shrink:0;} .cred-txt{font-size:12px;color:var(--dark3);line-height:1.4;} .story-p{font-size:15px;line-height:1.9;color:var(--dark3);margin-bottom:18px;} .story-p strong{color:var(--dark);} .mission-box{background:var(--dark);border-radius:14px;padding:28px 30px;border-left:4px solid var(--gold);margin:28px 0;} .mission-box p{font-family:'Cormorant Garamond',serif;font-size:20px;font-style:italic;color:var(--white);line-height:1.65;} .mission-box p strong{color:var(--gold-light);font-style:normal;} .diff-list{display:flex;flex-direction:column;gap:10px;margin-top:18px;} .diff-row{display:flex;align-items:flex-start;gap:10px;} .diff-row::before{content:'✦';color:var(--gold);font-size:11px;flex-shrink:0;margin-top:3px;} .diff-row p{font-size:14px;color:var(--dark3);line-height:1.6;} .about-cards-sec{background:var(--cream-2);} .about-cards{display:grid;grid-template-columns:1fr 1fr;gap:22px;margin-top:48px;} .acard{background:var(--white);border-radius:14px;padding:32px;border:1px solid var(--sand);} .acard-ic{width:48px;height:48px;border-radius:12px;background:var(--gold-pale);display:flex;align-items:center;justify-content:center;font-size:20px;margin-bottom:18px;} .acard-title{font-family:'Cormorant Garamond',serif;font-size:22px;font-weight:600;color:var(--dark);margin-bottom:12px;} .acard-body{font-size:13px;line-height:1.8;color:var(--dark3);} .acard-list{list-style:none;margin-top:10px;display:flex;flex-direction:column;gap:7px;} .acard-list li{font-size:13px;color:var(--dark3);display:flex;align-items:flex-start;gap:8px;} .acard-list li::before{content:'•';color:var(--gold);flex-shrink:0;}
.testi{background:var(--cream);}
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:48px;}
.tc{background:var(--white);border-radius:14px;padding:32px 28px;position:relative;box-shadow:0 3px 16px rgba(42,38,32,0.05);}
.tc.feat{background:var(--dark);}
.tc-stars{color:var(--gold);font-size:12px;letter-spacing:2px;margin-bottom:14px;}
.tc-text{font-family:'Cormorant Garamond',serif;font-size:17px;line-height:1.7;font-style:italic;margin-bottom:20px;}
.tc.feat .tc-text{color:rgba(255,255,255,0.55);}
.tc.feat .tc-text strong{color:var(--gold-light);}
.tc-person{display:flex;align-items:center;gap:11px;}
.tc-av{width:38px;height:38px;border-radius:50%;background:var(--cream2);border:2px solid var(--gold);display:flex;align-items:center;justify-content:center;font-weight:700;font-size:13px;color:var(--dark);flex-shrink:0;}
.tc.feat .tc-av{background:rgba(200,146,42,0.12);color:var(--gold-light);}
.tc-name{font-weight:700;font-size:13px;color:var(--dark);}
.tc.feat .tc-name{color:var(--gold-light);}
.tc-role{font-size:10px;color:var(--dark3);letter-spacing:1px;}
.tc.feat .tc-role{color:rgba(255,255,255,0.28);}
.tc-tag{position:absolute;top:16px;right:16px;background:var(--gold);color:var(--dark);padding:3px 10px;border-radius:20px;font-size:9px;font-weight:700;letter-spacing:1px;}

.body-p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--dark3);
}
.sec{padding:86px 0;}
.sec-tag{
  font-size:10px;font-weight:700;letter-spacing:4px;text-transform:uppercase;
  color:var(--gold);display:flex;align-items:center;gap:10px;margin-bottom:12px;
}
.sec-tag::before{content:'';width:24px;height:2px;background:var(--gold);display:block;flex-shrink:0;}
.sec-h2{font-family:'Cormorant Garamond',serif;font-size:42px;font-weight:600;line-height:1.2;color:var(--dark) !important;}
.sec-h2 em{font-style:italic;color:var(--gold);}
.sec-h2.wh{color:var(--white);}
.text-white{color:var(--white) !important;}

.contact-sec {
    background: var(--cream);
}

.contact-intro {
    font-size: 15px;
    line-height: 1.85;
    color: var(--dark3);
    margin-bottom: 32px;
}

.cc {
    background: var(--white);
    border-radius: 12px;
    padding: 20px 22px;
    border: 1px solid var(--sand);
    display: flex;
    align-items: center;
    gap: 14px;
}

.cc-ic {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.cc-lbl {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--dark3);
    text-transform: uppercase;
    margin-bottom: 3px;
}

.cc-val {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.form-wrap {
    background: var(--white);
    border-radius: 18px;
    padding: 44px;
    border: 1px solid var(--sand);
}

.form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-sub {
    font-size: 13px;
    color: var(--dark3);
    margin-bottom: 28px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-lbl {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--dark3);
    text-transform: uppercase;
}

.form-inp {
    background: var(--cream);
    border: 1.5px solid var(--sand);
    border-radius: 8px;
    padding: 13px 14px;
    font-size: 13px;
    color: var(--dark);
    font-family: 'Jost', sans-serif;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}

.form-inp:focus {
    border-color: var(--gold);
}

.form-inp::placeholder {
    color: var(--dark3);
    opacity: 0.6;
}

textarea.form-inp {
    height: 110px;
    resize: none;
}
.btn-g{
    width:auto !important;
    display:inline-block;
}
.free-tools-sec{
    background: var(--cream);
}
.sec-mini{
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;

    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.sec-mini::before,
.sec-mini::after{
    content: "";
    width: 55px;
    height: 1px;
    background: rgba(200,146,42,0.4);
    display: block;
}
.main-free-card{
    position: relative;
    background: var(--white);
    border: 1px solid var(--sand);
    border-radius: 22px;
    overflow: visible;
    margin-top: 35px;
	padding:0px;
}

.start-badge{
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);

    background: var(--gold);
    color: var(--white);

    padding: 10px 26px;
    border-radius: 999px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    z-index: 2;
}

.free-title{
    font-family: 'Cormorant Garamond', serif;
    font-size: 58px;
    color: var(--dark);
    margin-bottom: 12px;
}

.free-title span{
    color: var(--gold);
}

.free-sub{
    max-width: 620px;
    margin: auto;
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark3);
}

.main-free-card{
    position: relative;
    background: var(--white);
    border: 1px solid var(--sand);
    border-radius: 22px;
    margin-top: 50px;
    overflow: visible;
}

.start-badge{
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    
    background: var(--gold);
    color: #fff;

    padding: 10px 28px;
    border-radius: 50px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    z-index: 10;
}
.free-img-wrap{
    height: 100%;
}

.free-main-img{
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.free-content{
    padding: 45px;
}

.free-badge{
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.free-card-title{
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 18px;
}

.free-text{
    font-size: 16px;
    line-height: 1.9;
    color: var(--dark3);
}

.free-features{
    margin-top: 28px;
    font-size: 15px;
    color: var(--dark);
}

.mini-card{
    background: #fff;
    border: 1px solid #eadfc8;
    border-radius: 16px;
    padding: 18px 24px;
 
	 display: flex;
    flex-direction: column;
    height: 100%;
}

.mini-head{
    margin-bottom: 28px;
}

.mini-icon{
    width: 62px;
    height: 62px;
    min-width: 62px;

    border-radius: 50%;
    background: #f5ead0;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;

    flex-shrink: 0;
}

.mini-content{
    flex: 1;
}

.mini-title{
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    line-height: 1.15;
    color: #231f18;

    margin-bottom: 12px;
}

.mini-text{
    font-size: 15px;
    line-height: 1.9;
    color: #6b6455;

    margin: 0;
}

.btn-outline-g{
    border: 1px solid #c8922a;
    color: #c8922a;

    padding: 12px 22px;

    border-radius: 8px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;

    display: inline-block;

    background: transparent;
}

.issue-list{
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-size: 15px;
    color: var(--dark);
	    border-left: 1px solid #ccc;
}

.bottom-note{
    background: #f6f0e4;
    border-radius: 18px;
    padding: 35px;
	position:relative;
}
.bottom-note img{
    position: absolute;
    left: 50px;
    top: 50px;
    width: 100px;
}
.bottom-note p{
    color: var(--dark3);
    margin-bottom: 10px;
}

.bottom-note h5{
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.note-line{
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--gold);
}

.btn-outline-g{
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

.btn-outline-g:hover{
    background: var(--gold);
    color: #fff;
}
.issue-icon {
    width: 31px;
    height: 30px;
    min-width: 22px;
    margin-right: 10px;
    float: left;
    border-radius: 50%;
    background: #f5ead0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}
.note-content{color: --gold;
    font-size: 20px;
    font-family: Alisha;}
@media(max-width:991px){

    .free-title{
        font-size: 42px;
    }

    .free-card-title{
        font-size: 40px;
    }

    .free-content{
        padding: 30px;
    }

    .mini-card{
        padding: 28px;
    }

}

@media(max-width:767px){

    .free-title{
        font-size: 34px;
    }

    .free-card-title{
        font-size: 32px;
    }

    .mini-title{
        font-size: 28px;
    }

    .bottom-note{
        padding: 25px;
    }

    .note-line{
        font-size: 22px;
    }
.issue-list{
	border-left:none;
	
}
.bottom-note img{ display:none;}
}
@media (max-width: 767px) {
    .form-wrap {
        padding: 28px;
    }
}
 
/* ════ RESPONSIVE ════ */
@media (max-width: 991px) {
  .navbar-rgk { padding: 0 20px; height: auto; min-height: 64px; }
  .navbar-collapse { background: var(--charcoal-2); padding: 20px; border-top: 1px solid rgba(200,146,42,0.2); margin-top: 8px; }
  .hero-right-wrap { padding: 40px 20px 60px; }
  .hero-card-1 { left: 10px; }
  .section-h2 { font-size: 34px; }
}
@media (max-width: 767px) {
  .hero-h1 { font-size: 40px; }
  .hero-sub { max-width: 100%; }
  .digital-card { padding: 32px 24px; }
  .contact-form-wrap { padding: 28px; }
  .final-cta h2 { font-size: 36px; }
  .final-cta-quote { font-size: 20px; }
}


/* ===== BOOKS PAGE ===== */

.books-section{
    background: var(--cream);
}

.book-launch-card{
    background: var(--dark);
    border-radius: 20px;
    padding: 56px;
    border: 1px solid rgba(200,146,42,0.2);
}

.book-cover{
    width: 100%;
    max-width: 280px;
    margin: auto auto 20px;

    aspect-ratio: 2/3;

    background: linear-gradient(160deg,var(--dark2),#18160F);

    border-radius: 12px;
    border: 2px solid rgba(200,146,42,0.35);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;

    padding: 20px;
}

.book-cover-icon{
    font-size: 48px;
    opacity: 0.2;
}

.book-cover-title{
    font-family:'Cormorant Garamond',serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--gold-light);
    text-align: center;
    line-height: 1.3;
}

.book-cover-sub{
    font-size: 10px;
    color: rgba(255,255,255,0.25);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}

.book-cover-line{
    width: 40px;
    height: 1px;
    background: rgba(200,146,42,0.3);
}

.book-cover-author{
    font-size: 11px;
    color: rgba(255,255,255,0.2);
}

.book-release-badge{
    display: inline-block;

    background: rgba(200,146,42,0.15);
    border: 1px solid rgba(200,146,42,0.3);

    color: var(--gold-light);

    padding: 6px 20px;
    border-radius: 30px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.book-mini-tag{
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;

    color: var(--gold);

    margin-bottom: 12px;
}

.book-title{
    font-family:'Cormorant Garamond',serif;
    font-size: 40px;
    font-weight: 600;

    color: var(--white);

    margin-bottom: 8px;
}

.book-subtitle{
    font-family:'Cormorant Garamond',serif;
    font-size: 20px;
    font-style: italic;

    color: rgba(255,255,255,0.4);

    margin-bottom: 20px;
}

.book-desc{
    font-size: 14px;
    line-height: 1.85;

    color: rgba(255,255,255,0.5);

    margin-bottom: 28px;
}

.book-meta-card{
    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(200,146,42,0.12);

    border-radius: 10px;

    padding: 14px 16px;
}

.book-meta-label{
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: var(--gold);

    margin-bottom: 4px;
}

.book-meta-value{
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

/* ===== EBOOKS ===== */

.ebooks-section{
    background: var(--cream-2);
}

.ebooks-intro{
    max-width: 540px;

    font-size: 14px;
    line-height: 1.7;

    color: var(--dark3);

    margin-bottom: 48px;
}

.ebook-card{
    background: var(--white);

    border-radius: 16px;
    border: 1px solid var(--sand);

    overflow: hidden;

    transition: transform 0.2s;
}

.ebook-card:hover{
    transform: translateY(-4px);
}

.ebook-top{
    padding: 36px 28px;

    text-align: center;

    border-bottom: 2px solid var(--gold);
}

.ebook-top-dark{
    background: linear-gradient(145deg,var(--dark),var(--dark2));
}

.ebook-top-purple{
    background: linear-gradient(145deg,#2A2030,#3A2850);
}

.ebook-top-green{
    background: linear-gradient(145deg,#1E2A1E,#2A3A2A);
}

.ebook-icon{
    font-size: 32px;
    opacity: 0.3;
    margin-bottom: 12px;
}

.ebook-name{
    font-family:'Cormorant Garamond',serif;
    font-size: 20px;
    font-weight: 700;

    color: var(--gold-light);

    line-height: 1.3;
}

.ebook-author{
    font-size: 10px;
    color: rgba(255,255,255,0.25);

    margin-top: 8px;

    letter-spacing: 1px;
}

.ebook-body{
    padding: 24px;
}

.ebook-tag{
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: var(--gold);

    margin-bottom: 8px;
}

.ebook-text{
    font-size: 13px;
    line-height: 1.75;

    color: var(--dark3);

    margin-bottom: 20px;
}


.situations{background:var(--cream);}
.sit-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:48px;}
.sit-card{background:var(--white);border-radius:14px;padding:30px 22px;text-align:center;border:1px solid var(--sand);}
.sit-ic{width:60px;height:60px;border-radius:50%;margin:0 auto 18px;display:flex;align-items:center;justify-content:center;font-size:24px;}
.sit-title{font-family:'Cormorant Garamond',serif;font-size:18px;font-weight:600;color:var(--dark);margin-bottom:10px;}
.sit-desc{font-size:12px;color:var(--dark3);line-height:1.7;}

.sessions-sec{background:var(--dark);}
.sess-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-top:48px;}
.sess-card{background:rgba(255,255,255,0.03);border:1px solid rgba(200,146,42,0.14);border-radius:14px;padding:32px;transition:border-color 0.2s;}
.sess-card:hover{border-color:rgba(200,146,42,0.35);}
.sess-card.hl{background:rgba(200,146,42,0.07);border-color:rgba(200,146,42,0.28);}
.sess-etag{font-size:9px;font-weight:700;letter-spacing:2px;color:var(--gold);text-transform:uppercase;margin-bottom:10px;}
.sess-title{font-family:'Cormorant Garamond',serif;font-size:24px;font-weight:600;color:var(--white);margin-bottom:8px;}
.sess-dest{font-size:13px;color:var(--gold-light);font-style:italic;margin-bottom:12px;}
.sess-body{font-size:13px;line-height:1.8;color:rgba(255,255,255,0.45);margin-bottom:18px;}
.sess-meta{display:flex;flex-direction:column;gap:5px;margin-bottom:22px;}
.sess-mi{font-size:11px;color:rgba(255,255,255,0.3);display:flex;align-items:center;gap:8px;}
.sess-mi::before{content:'→';color:var(--gold);}

.group-sec{background:var(--cream2);}
.group-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin-top:48px;}
.group-card{background:var(--white);border-radius:14px;padding:36px;border:1px solid var(--sand);}
.group-ic{font-size:32px;margin-bottom:14px;}
.group-title{font-family:'Cormorant Garamond',serif;font-size:26px;font-weight:600;color:var(--dark);margin-bottom:12px;}
.group-dest{font-size:13px;color:var(--gold);font-style:italic;margin-bottom:12px;}
.group-body{font-size:13px;line-height:1.8;color:var(--dark3);margin-bottom:14px;}
.group-meta{font-size:11px;color:var(--dark3);margin-bottom:22px;line-height:1.6;}

.digital-sec{background:var(--cream);}
.digital-card{display:grid;grid-template-columns:1fr 1fr;gap:52px;align-items:center;background:var(--dark);border-radius:18px;padding:52px;margin-top:48px;border:1px solid rgba(200,146,42,0.18);}
.dig-title{font-family:'Cormorant Garamond',serif;font-size:30px;font-weight:600;color:var(--white);margin-bottom:8px;}
.dig-dest{font-size:14px;color:var(--gold-light);font-style:italic;margin-bottom:14px;}
.dig-body{font-size:13px;line-height:1.8;color:rgba(255,255,255,0.45);margin-bottom:22px;}
.dig-inside-h{font-size:9px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:var(--gold);margin-bottom:12px;}
.dig-items{display:flex;flex-direction:column;gap:7px;margin-bottom:26px;}
.dig-item{font-size:13px;color:rgba(255,255,255,0.45);display:flex;align-items:center;gap:9px;}
.dig-item::before{content:'✦';color:var(--gold);font-size:9px;flex-shrink:0;}
.dig-visual{aspect-ratio:1;border-radius:14px;background:rgba(200,146,42,0.07);border:2px dashed rgba(200,146,42,0.2);display:flex;flex-direction:column;align-items:center;justify-content:center;gap:10px;}
.dig-visual-ic{font-size:52px;opacity:0.2;}
.dig-visual-lbl{font-size:10px;color:rgba(255,255,255,0.15);letter-spacing:3px;text-transform:uppercase;}

.why-sec{background:var(--sand);}
.why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:48px;}
.why-card{background:var(--white);border-radius:14px;padding:28px 20px;text-align:center;}
.why-ic{font-size:28px;margin-bottom:14px;}
.why-title{font-family:'Cormorant Garamond',serif;font-size:20px;font-weight:600;color:var(--dark);margin-bottom:10px;}
.why-desc{font-size:12px;color:var(--dark3);line-height:1.7;}

.disc-cta{background:var(--dark);text-align:center;}
.disc-cta p{font-size:15px;color:rgba(255,255,255,0.4);margin-bottom:8px;}
.disc-cta h3{font-family:'Cormorant Garamond',serif;font-size:36px;font-weight:600;color:var(--white);margin-bottom:26px;}
.disc-cta h3 em{color:var(--gold-light);font-style:italic;}
/* ===== DEVELOPER NOTE ===== */

.developer-note{
    background: rgba(200,146,42,0.08);

    border: 1px dashed rgba(200,146,42,0.3);

    border-radius: 12px;

    padding: 20px 24px;

    margin-top: 24px;

    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.developer-note-icon{
    font-size: 18px;
    line-height: 1;
}

.developer-note-text{
    font-size: 12px;
    line-height: 1.6;

    color: var(--dark3);
}

.developer-note-text strong{
    color: var(--dark);
}

/* ===== CTA ===== */

.books-cta{
    background: var(--dark);
}

.books-cta-quote{
    font-family:'Cormorant Garamond',serif;
    font-size: 22px;
    font-style: italic;

    color: rgba(255,255,255,0.35);

    max-width: 500px;

    margin: 0 auto 16px;

    line-height: 1.6;
}

.books-cta-title{
    font-family:'Cormorant Garamond',serif;
    font-size: 40px;
    font-weight: 600;

    color: var(--white);

    margin-bottom: 12px;
}

.books-cta-title em{
    color: var(--gold-light);
    font-style: italic;
}

.books-cta-sub{
    font-size: 14px;
    color: rgba(255,255,255,0.35);

    margin-bottom: 28px;
}

/* ===== RESPONSIVE ===== */

@media(max-width:991px){

    .book-launch-card{
        padding: 40px 30px;
    }

    .book-title{
        font-size: 34px;
    }

}

@media(max-width:767px){

    .book-launch-card{
        padding: 28px 20px;
    }

    .book-title{
        font-size: 30px;
    }

    .books-cta-title{
        font-size: 32px;
    }

    .developer-note{
        flex-direction: column;
    }

}

/* ===== BLOG PAGE ===== */

.blog-page-sec{
    background: var(--cream);
}

.blog-post-card{
    background: var(--white);

    border-radius: 16px;

    overflow: hidden;

    border: 1px solid var(--sand);

    transition: transform 0.2s;
}

.blog-post-card:hover{
    transform: translateY(-4px);
}

.blog-post-thumb{
    height: 220px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-thumb-dark{
    background: linear-gradient(135deg,#23201A,#35312A);
}

.blog-thumb-purple{
    background: linear-gradient(135deg,#2A2030,#3A2850);
}

.blog-thumb-green{
    background: linear-gradient(135deg,#1E2A1E,#2A3A2A);
}

.blog-thumb-red{
    background: linear-gradient(135deg,#2A1E1E,#3A2828);
}

.blog-thumb-blue{
    background: linear-gradient(135deg,#1E1E2A,#28283A);
}

.blog-thumb-lightgreen{
    background: linear-gradient(135deg,#1A2A1E,#283A2A);
}

.blog-post-icon{
    font-size: 42px;
}

.blog-post-cat{
    position: absolute;

    bottom: 14px;
    left: 14px;

    background: var(--gold);

    color: var(--white);

    padding: 5px 14px;

    border-radius: 30px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.blog-post-body{
    padding: 24px;
}

.blog-post-date{
    font-size: 11px;

    color: var(--dark3);

    letter-spacing: 1px;

    margin-bottom: 10px;
}

.blog-post-title{
    font-family:'Cormorant Garamond',serif;

    font-size: 22px;
    font-weight: 600;

    line-height: 1.4;

    color: var(--dark);

    margin-bottom: 14px;
}

.blog-post-title-lg{
    font-size: 28px;
}

.blog-post-excerpt{
    font-size: 14px;

    line-height: 1.8;

    color: var(--dark3);

    margin-bottom: 18px;
}

.blog-post-read{
    font-size: 11px;
    font-weight: 700;

    color: var(--gold);

    letter-spacing: 1px;

    text-transform: uppercase;
}

/* ===== RESPONSIVE ===== */
@media (max-width:1200px){

    .navbar-rgk .nav-link{
        font-size:11px;
        padding:8px 6px !important;
    }

    .btn-nav-cta{
        font-size:10px;
        padding:10px;
    }

}
@media (max-width: 1100px) {
  .navbar-rgk .nav-link {
    font-size: 8px;
    padding: 6px !important;
  }
}
@media(max-width:991px){

    .blog-post-title-lg{
        font-size: 24px;
    }

}

@media(max-width:767px){

    .blog-post-thumb{
        height: 190px;
    }

    .blog-post-title{
        font-size: 20px;
    }

    .blog-post-title-lg{
        font-size: 22px;
    }

}


/* ── STEPS INDICATOR ── */
.steps-bar { background: var(--sand); border-bottom: 1px solid rgba(200,146,42,0.15); padding: 0; }
.steps-inner { display: flex; align-items: center; }
.step-item {
  flex: 1; display: flex; align-items: center; gap: 12px;
  padding: 22px 20px; position: relative; cursor: pointer;
  border-bottom: 3px solid transparent; transition: all 0.2s;
}
.step-item.active { border-bottom-color: var(--gold); background: rgba(200,146,42,0.04); }
.step-item.done { border-bottom-color: rgba(200,146,42,0.35); }
.step-num {
  width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--sand);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--charcoal-3); flex-shrink: 0;
  background: var(--white); transition: all 0.2s;
}
.step-item.active .step-num { background: var(--gold); border-color: var(--gold); color: var(--white); }
.step-item.done .step-num { background: rgba(200,146,42,0.15); border-color: var(--gold); color: var(--gold); }
.step-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--charcoal-3); line-height: 1.1; }
.step-item.active .step-label { color: var(--charcoal); }
.step-sub { font-size: 10px; color: var(--charcoal-3); opacity: 0.6; letter-spacing: 0.5px; margin-top: 2px; }
.step-divider { color: var(--sand); font-size: 18px; opacity: 0.7; }
@media (max-width: 575px) {
  .step-label, .step-sub { display: none; }
  .step-item { justify-content: center; padding: 16px 10px; }
  .step-divider { display: none; }
}

/* ── BOOKING SECTIONS ── */
.booking-section { display: none; }
.booking-section.active { display: block; }

/* ── SESSION CARDS ── */
.sess-pick-card {
  background: var(--white); border: 2px solid var(--sand); border-radius: 20px;
  padding: 32px 28px; cursor: pointer; transition: all 0.25s; height: 100%; position: relative; overflow: hidden;
}
.sess-pick-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--sand); transition: background 0.25s; }
.sess-pick-card:hover { border-color: rgba(200,146,42,0.4); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(42,38,32,0.08); }
.sess-pick-card:hover::before { background: var(--gold); }
.sess-pick-card.selected { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(200,146,42,0.1); }
.sess-pick-card.selected::before { background: var(--gold); }
.sess-pick-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; }
.sess-pick-tag { font-size: 10px; font-weight: 700; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; }
.sess-pick-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--charcoal); margin-bottom: 10px; }
.sess-pick-desc { font-size: 13px; color: var(--charcoal-3); line-height: 1.7; margin-bottom: 20px; }
.sess-pick-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.sess-meta-pill {
  background: var(--cream-2); border: 1px solid var(--sand);
  padding: 5px 12px; border-radius: 20px; font-size: 11px; color: var(--charcoal-3); font-weight: 500;
}
.sess-pick-price { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700; color: var(--charcoal); margin-top: 20px; }
.sess-pick-price span { font-size: 13px; font-weight: 400; color: var(--charcoal-3); font-family: 'Jost', sans-serif; }
.sess-pick-card.selected .sess-pick-price { color: var(--gold); }
.selected-badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--gold); color: var(--white);
  width: 26px; height: 26px; border-radius: 50%;
  display: none; align-items: center; justify-content: center; font-size: 13px;
}
.sess-pick-card.selected .selected-badge { display: flex; }

/* ── CALENDAR ── */
.cal-wrap { background: var(--white); border-radius: 20px; border: 1px solid var(--sand); overflow: hidden; }
.cal-header { background: var(--charcoal); padding: 24px 28px; display: flex; align-items: center; justify-content: space-between; }
.cal-month { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--white); }
.cal-nav { background: none; border: 1px solid rgba(200,146,42,0.3); color: var(--gold); width: 36px; height: 36px; border-radius: 8px; cursor: pointer; font-size: 16px; transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
.cal-nav:hover { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.cal-grid { padding: 20px; }
.cal-days-hdr { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 8px; }
.cal-days-hdr div { text-align: center; font-size: 10px; font-weight: 700; color: var(--charcoal-3); letter-spacing: 1.5px; text-transform: uppercase; padding: 8px 0; }
.cal-dates { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 500; border-radius: 10px; cursor: pointer;
  color: var(--charcoal); transition: all 0.15s; border: 2px solid transparent;
}
.cal-day:hover:not(.disabled):not(.empty) { background: var(--cream-2); border-color: var(--sand); }
.cal-day.available:hover { background: var(--gold-pale); border-color: rgba(200,146,42,0.3); }
.cal-day.selected { background: var(--gold); color: var(--white) !important; border-color: var(--gold); }
.cal-day.today { border-color: rgba(200,146,42,0.4); color: var(--gold); font-weight: 700; }
.cal-day.disabled { color: var(--sand); cursor: not-allowed; }
.cal-day.empty { cursor: default; }
.cal-day.available { color: var(--charcoal); }
.cal-day.available::after { content: ''; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; position: absolute; bottom: 4px; }
.cal-day-wrap { position: relative; display: flex; flex-direction: column; align-items: center; }

/* ── TIME SLOTS ── */
.slots-wrap { background: var(--white); border-radius: 20px; border: 1px solid var(--sand); padding: 28px; height: 100%; }
.slots-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--charcoal); margin-bottom: 6px; }
.slots-date { font-size: 12px; color: var(--gold); font-weight: 600; letter-spacing: 1px; margin-bottom: 24px; }
.slot-group-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; color: var(--charcoal-3); text-transform: uppercase; margin: 16px 0 10px; }
.time-slot {
  background: var(--cream); border: 1.5px solid var(--sand); border-radius: 10px;
  padding: 12px 16px; text-align: center; font-size: 14px; font-weight: 600;
  color: var(--charcoal); cursor: pointer; transition: all 0.2s; margin-bottom: 8px;
}
.time-slot:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-pale); }
.time-slot.selected { background: var(--gold); border-color: var(--gold); color: var(--white); }
.time-slot.unavailable { opacity: 0.35; cursor: not-allowed; background: var(--sand); }
.no-date-msg { text-align: center; padding: 60px 20px; color: var(--charcoal-3); }
.no-date-msg .icon { font-size: 36px; margin-bottom: 12px; }
.no-date-msg p { font-size: 14px; }

/* ── DETAILS FORM ── */
.detail-card { background: var(--white); border-radius: 20px; border: 1px solid var(--sand); padding: 44px; }
.form-label-custom { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: var(--charcoal-3); text-transform: uppercase; margin-bottom: 6px; display: block; }
.form-input-custom {
  background: var(--cream); border: 1.5px solid var(--sand); border-radius: 8px;
  padding: 14px 16px; font-size: 14px; color: var(--charcoal); font-family: 'Jost', sans-serif;
  outline: none; transition: border-color 0.2s; width: 100%;
}
.form-input-custom:focus { border-color: var(--gold); outline: none; box-shadow: none; }
.form-input-custom::placeholder { color: var(--charcoal-3); opacity: 0.6; }
textarea.form-input-custom { height: 110px; resize: none; }
.radio-group { display: flex; flex-direction: column; gap: 10px; }
.radio-opt {
  background: var(--cream); border: 1.5px solid var(--sand); border-radius: 10px;
  padding: 14px 18px; cursor: pointer; display: flex; align-items: center; gap: 12px;
  transition: all 0.2s; font-size: 14px; color: var(--charcoal);
}
.radio-opt:hover { border-color: rgba(200,146,42,0.4); }
.radio-opt.selected { border-color: var(--gold); background: var(--gold-pale); }
.radio-dot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--sand); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.radio-opt.selected .radio-dot { border-color: var(--gold); background: var(--gold); }
.radio-opt.selected .radio-dot::after { content: ''; width: 6px; height: 6px; background: var(--white); border-radius: 50%; }
.consent-box { background: var(--gold-pale); border: 1px solid rgba(200,146,42,0.25); border-radius: 10px; padding: 16px 20px; display: flex; gap: 12px; align-items: flex-start; }
.consent-box input[type="checkbox"] { accent-color: var(--gold); width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; cursor: pointer; }
.consent-box label { font-size: 13px; color: var(--charcoal-3); line-height: 1.6; cursor: pointer; }
.consent-box label a { color: var(--gold); text-decoration: none; }

/* ── BOOKING SUMMARY SIDEBAR ── */
.summary-card { background: var(--charcoal); border-radius: 20px; padding: 36px 32px; border: 1px solid rgba(200,146,42,0.2); position: sticky; top: 90px; }
.summary-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--white); margin-bottom: 24px; }
.summary-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.summary-row:last-of-type { border-bottom: none; }
.summary-key { font-size: 10px; font-weight: 700; letter-spacing: 2px; color: rgba(255,255,255,0.35); text-transform: uppercase; }
.summary-val { font-size: 14px; color: var(--white); font-weight: 500; text-align: right; }
.summary-val.gold { color: var(--gold-light); font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; }
.summary-empty { font-size: 13px; color: rgba(255,255,255,0.2); font-style: italic; }
.summary-note { font-size: 12px; color: rgba(255,255,255,0.3); line-height: 1.6; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06); }
.trust-pill { display: flex; align-items: center; gap: 8px; margin-top: 16px; }
.trust-pill .icon { font-size: 14px; }
.trust-pill .txt { font-size: 11px; color: rgba(255,255,255,0.3); }

/* ── CONFIRM PAGE ── */
.confirm-wrap { text-align: center; max-width: 640px; margin: 0 auto; padding: 80px 20px; }
.confirm-icon { width: 80px; height: 80px; border-radius: 50%; background: rgba(200,146,42,0.12); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-size: 32px; margin: 0 auto 32px; }
.confirm-heading { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 600; color: var(--charcoal); margin-bottom: 14px; }
.confirm-heading em { color: var(--gold); font-style: italic; }
.confirm-sub { font-size: 16px; color: var(--charcoal-3); line-height: 1.8; margin-bottom: 44px; }
.confirm-details { background: var(--white); border-radius: 20px; border: 1px solid var(--sand); padding: 36px; text-align: left; margin-bottom: 40px; }
.confirm-detail-row { display: flex; align-items: flex-start; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--sand); }
.confirm-detail-row:last-child { border-bottom: none; }
.cd-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.cd-key { font-size: 10px; font-weight: 700; letter-spacing: 2px; color: var(--charcoal-3); text-transform: uppercase; margin-bottom: 2px; }
.cd-val { font-size: 15px; font-weight: 600; color: var(--charcoal); }

/* ── NAV BUTTONS ── */
.nav-actions { display: flex; gap: 12px; align-items: center; justify-content: flex-end; flex-wrap: wrap; margin-top: 36px; }
.nav-actions .back-btn {
  background: none; border: none; font-size: 13px; color: var(--charcoal-3);
  cursor: pointer; display: flex; align-items: center; gap: 6px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; padding: 0; transition: color 0.2s;
}
.nav-actions .back-btn:hover { color: var(--charcoal); }

/* ── TRUST STRIP ── */
.trust-strip { background: var(--charcoal); padding: 50px 0; }
.trust-item { text-align: center; }
.trust-icon { font-size: 28px; margin-bottom: 12px; }
.trust-label { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; color: var(--gold-light); text-transform: uppercase; margin-bottom: 4px; }
.trust-desc { font-size: 12px; color: rgba(255,255,255,0.35); }
