/* ============================================================
   RISE THEN SOAR — Design System
   Navy + Gold | Playfair Display + Inter | Mobile First
   ============================================================ */

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== ROOT VARIABLES ===== */
:root {
  /* Colors */
  --navy-950: #030810;
  --navy-900: #060D1F;
  --navy-800: #0B1530;
  --navy-700: #111E3C;
  --navy-600: #162549;
  --gold-500: #C9A84C;
  --gold-400: #D4B868;
  --gold-300: #E2CC8A;
  --gold-200: #EDD9A3;
  --gold-glow: rgba(201, 168, 76, 0.20);
  --white: #FFFFFF;
  --cream: #F7F2E8;
  --text-primary: #F0EBE0;
  --text-muted: #7A8DA8;
  --text-subtle: #4A5A72;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Spacing (8pt grid) */
  --s1: 8px;
  --s2: 16px;
  --s3: 24px;
  --s4: 32px;
  --s5: 48px;
  --s6: 64px;
  --s7: 96px;
  --s8: 128px;

  /* Border radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;

  /* Shadows */
  --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.12);
  --shadow-card: 0 8px 32px rgba(3, 8, 16, 0.4);
  --shadow-nav: 0 4px 24px rgba(3, 8, 16, 0.5);

  /* Transitions */
  --t-fast: 0.2s ease;
  --t-base: 0.3s ease;
  --t-slow: 0.6s ease;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--navy-900);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

/* ===== GOLD GRADIENT TEXT ===== */
.gold-text {
  background: linear-gradient(135deg, #C9A84C 0%, #E8C97A 45%, #C9A84C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 700; }
h4 { font-size: 1.2rem; font-weight: 600; font-family: var(--font-body); letter-spacing: 0.08em; text-transform: uppercase; }

p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 65ch;
}

.lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.65;
  color: var(--text-primary);
  max-width: 60ch;
}

.label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-500);
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--s3);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--s5); }
}

.section {
  padding: var(--s7) 0;
}

@media (min-width: 768px) {
  .section { padding: var(--s8) 0; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: all var(--t-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #C9A84C 0%, #D4B868 50%, #C9A84C 100%);
  background-size: 200% 200%;
  color: var(--navy-900);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-primary:hover {
  background-position: right center;
  box-shadow: 0 6px 30px rgba(201, 168, 76, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--gold-400);
  border: 1px solid rgba(201, 168, 76, 0.4);
}

.btn-secondary:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: var(--gold-500);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(240, 235, 224, 0.2);
}

.btn-ghost:hover {
  border-color: rgba(240, 235, 224, 0.5);
  transform: translateY(-2px);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--t-base), box-shadow var(--t-base), backdrop-filter var(--t-base);
}

.nav.scrolled {
  background: rgba(6, 13, 31, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-nav);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  flex-shrink: 0;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: var(--s4);
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  opacity: 0.85;
  transition: opacity var(--t-fast), color var(--t-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-500);
  transition: width var(--t-base);
}

.nav-links a:hover {
  opacity: 1;
  color: var(--gold-400);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: none;
}

@media (min-width: 900px) {
  .nav-cta { display: flex; gap: var(--s2); align-items: center; }
}

/* Mobile menu */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--s1);
  cursor: pointer;
}

@media (min-width: 900px) {
  .nav-hamburger { display: none; }
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--t-base);
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav drawer */
.nav-mobile {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(6, 13, 31, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: var(--s4) var(--s3) var(--s5);
  transform: translateY(-110%);
  transition: transform var(--t-base);
  z-index: 999;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.nav-mobile.open {
  transform: translateY(0);
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  margin-bottom: var(--s4);
}

.nav-mobile-links a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  padding: var(--s1) 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-mobile-cta {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../Images/Image 3.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Initial state: light vignette only — lets the image brand mark read clearly */
  background: linear-gradient(
    to bottom,
    rgba(6, 13, 31, 0.15) 0%,
    rgba(6, 13, 31, 0.10) 35%,
    rgba(6, 13, 31, 0.55) 75%,
    rgba(6, 13, 31, 1.00) 100%
  );
  z-index: 1;
  transition: background 0.9s ease;
}

/* Revealed state: deeper overlay for text legibility */
.hero-overlay.revealed {
  background: linear-gradient(
    to bottom,
    rgba(6, 13, 31, 0.55) 0%,
    rgba(6, 13, 31, 0.65) 40%,
    rgba(6, 13, 31, 0.85) 80%,
    rgba(6, 13, 31, 1.00) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--s6) var(--s3);
  max-width: 860px;
  margin: 0 auto;
  /* Hidden on load — revealed on first scroll */
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.hero-content.hero-content--visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-label {
  margin-bottom: var(--s3);
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
}

.hero-label::before,
.hero-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold-500);
  opacity: 0.7;
}

.hero h1 {
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.0;
  margin-bottom: var(--s4);
  color: var(--text-primary);
}

.hero h1 .period {
  color: var(--gold-500);
}

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: var(--s2);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-support {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--s5);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  align-items: center;
}

@media (min-width: 480px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }
}

.hero-scroll {
  position: absolute;
  bottom: var(--s4);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s1);
  opacity: 0.85;
  animation: scrollBounce 1.8s ease-in-out infinite;
  cursor: pointer;
}

.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-scroll svg {
  color: var(--gold-500);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== GOLD DIVIDER ===== */
.gold-divider {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  margin: var(--s3) auto;
}

.gold-divider-left {
  margin-left: 0;
  margin-right: 0;
  background: linear-gradient(90deg, var(--gold-500), transparent);
}

/* ===== SECTION HEADERS ===== */
.section-header {
  margin-bottom: var(--s6);
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .gold-divider {
  margin: var(--s3) auto;
}

.section-header.centered p {
  margin: 0 auto;
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
  background: var(--navy-800);
  position: relative;
  overflow: hidden;
}

.problem-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
}

.problem-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s6);
  align-items: center;
}

@media (min-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s8);
  }
}

.problem-statement {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: var(--s4);
}

.problem-body {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.problem-body p {
  max-width: none;
}

.problem-body p strong {
  color: var(--text-primary);
  font-weight: 500;
}

.problem-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s2);
}

.problem-point {
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
  padding: var(--s3);
  background: rgba(255,255,255,0.03);
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.05);
}

.problem-point-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  margin-top: 2px;
}

.problem-point-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
}

/* ===== FRAMEWORK SECTION ===== */
.framework-section {
  background: var(--navy-900);
  position: relative;
}

.framework-intro {
  text-align: center;
  margin-bottom: var(--s7);
}

.framework-intro .label {
  display: block;
  margin-bottom: var(--s2);
}

.framework-intro h2 {
  margin-bottom: var(--s3);
}

.framework-intro .lead {
  margin: 0 auto;
  text-align: center;
}

.framework-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
}

@media (min-width: 768px) {
  .framework-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}

/* Connecting line on desktop */
.framework-grid::before {
  display: none;
}

@media (min-width: 768px) {
  .framework-grid::before {
    display: block;
    content: '';
    position: absolute;
    top: 72px;
    left: calc(16.67% + 32px);
    right: calc(16.67% + 32px);
    height: 1px;
    background: linear-gradient(90deg, var(--gold-500), rgba(201, 168, 76, 0.3), var(--gold-500));
    z-index: 0;
  }
}

.framework-phase {
  position: relative;
  padding: var(--s5) var(--s4);
  text-align: center;
  border: 1px solid rgba(201, 168, 76, 0.08);
  background: var(--navy-800);
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}

.framework-phase:first-child {
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}

.framework-phase:last-child {
  border-radius: 0 0 var(--r-lg) var(--r-lg);
}

@media (min-width: 768px) {
  .framework-phase:first-child {
    border-radius: var(--r-lg) 0 0 var(--r-lg);
  }
  .framework-phase:last-child {
    border-radius: 0 var(--r-lg) var(--r-lg) 0;
  }
}

.framework-phase:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(3, 8, 16, 0.4), 0 0 0 1px rgba(201, 168, 76, 0.15);
  z-index: 1;
}

.framework-phase-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
  border: 1px solid rgba(201, 168, 76, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s3);
  position: relative;
  z-index: 1;
}

.framework-phase-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--s1);
}

.framework-phase-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: var(--s3);
}

.framework-phase-tagline {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: var(--s4);
  line-height: 1.5;
  max-width: none;
}

.framework-points {
  text-align: left;
  margin-bottom: var(--s4);
}

.framework-points li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: var(--s2);
}

.framework-points li::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--gold-500);
  flex-shrink: 0;
}

.framework-phase-quote {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gold-400);
  line-height: 1.5;
  padding-top: var(--s3);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  max-width: none;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--navy-800);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s6);
  align-items: center;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 2fr 3fr;
    gap: var(--s8);
  }
}

.about-photo-wrap {
  position: relative;
}

.about-photo {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 3/4;
  background: var(--navy-700);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.about-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
  background: linear-gradient(160deg, var(--navy-700) 0%, var(--navy-900) 100%);
}

.about-photo-placeholder svg {
  color: var(--text-subtle);
  opacity: 0.5;
}

.about-photo-placeholder span {
  font-size: 0.8rem;
  color: var(--text-subtle);
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0 var(--s3);
}

.about-photo-badge {
  position: absolute;
  bottom: var(--s3);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(6, 13, 31, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--r-md);
  padding: var(--s2) var(--s3);
  text-align: center;
  white-space: nowrap;
}

.about-photo-badge strong {
  display: block;
  font-size: 1.1rem;
  font-family: var(--font-display);
  color: var(--gold-400);
}

.about-photo-badge span {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.about-content .label {
  display: block;
  margin-bottom: var(--s2);
}

.about-content h2 {
  margin-bottom: var(--s3);
}

.about-content .lead {
  margin-bottom: var(--s4);
  max-width: none;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  margin-bottom: var(--s5);
}

.about-body p {
  max-width: none;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
  margin-bottom: var(--s5);
  padding: var(--s4) 0;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.about-stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}

.about-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background: var(--navy-900);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s3);
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--navy-800);
  border: 1px solid rgba(201, 168, 76, 0.10);
  border-radius: var(--r-lg);
  padding: var(--s5) var(--s4);
  display: flex;
  flex-direction: column;
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold-500), transparent);
  opacity: 0;
  transition: opacity var(--t-base);
}

.service-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(3, 8, 16, 0.4);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.featured {
  border-color: rgba(201, 168, 76, 0.25);
  background: linear-gradient(160deg, rgba(201, 168, 76, 0.05) 0%, var(--navy-800) 100%);
}

.service-card.featured::before {
  opacity: 1;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s4);
  color: var(--gold-500);
}

.service-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--s2);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--s2);
}

.service-card > p {
  font-size: 0.95rem;
  margin-bottom: var(--s4);
  max-width: none;
  flex: 1;
}

.service-points {
  margin-bottom: var(--s5);
}

.service-points li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: var(--s2);
}

.service-points li svg {
  flex-shrink: 0;
  color: var(--gold-500);
}

.service-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* ===== SOCIAL PROOF SECTION ===== */
.proof-section {
  background: var(--navy-800);
  position: relative;
  overflow: hidden;
}

.proof-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s3);
  margin-bottom: var(--s6);
}

@media (min-width: 768px) {
  .credentials-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.credential-item {
  text-align: center;
  padding: var(--s4) var(--s3);
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--r-md);
}

.credential-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}

.credential-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s3);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--navy-900);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  padding: var(--s4);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-primary);
  font-style: italic;
  max-width: none;
  flex: 1;
}

.testimonial-quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold-500);
  opacity: 0.4;
  display: block;
  line-height: 1;
  margin-bottom: -var(--s1);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--s2);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-600), var(--navy-700));
  border: 1px solid rgba(201, 168, 76, 0.2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-400);
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  margin-bottom: var(--s3);
}

.final-cta .lead {
  margin: 0 auto var(--s5);
  text-align: center;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  align-items: center;
  margin-bottom: var(--s6);
}

@media (min-width: 480px) {
  .final-cta-actions {
    flex-direction: row;
    justify-content: center;
  }
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
  padding-top: var(--s4);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.social-links span {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--gold-400);
  transition: all var(--t-base);
}

.social-link:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold-500);
  transform: translateY(-3px);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-950);
  padding: var(--s6) 0 var(--s4);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
  margin-bottom: var(--s5);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--s6);
  }
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: var(--s3);
}

.footer-brand p {
  font-size: 0.875rem;
  max-width: 280px;
  line-height: 1.6;
  margin-bottom: var(--s4);
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--s3);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--t-fast);
}

.footer-links a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  align-items: center;
  text-align: center;
  padding-top: var(--s4);
  border-top: 1px solid rgba(255,255,255,0.05);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-subtle);
  max-width: none;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: var(--s4);
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--text-subtle);
  transition: color var(--t-fast);
}

.footer-bottom-links a:hover {
  color: var(--gold-400);
}

/* ===== PAGE HERO (Inner Pages) ===== */
.page-hero {
  background: var(--navy-800);
  padding: calc(var(--nav-height) + var(--s7)) 0 var(--s7);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% -20%, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .label {
  display: block;
  margin-bottom: var(--s2);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: var(--s3);
}

.page-hero .lead {
  margin: 0 auto;
  text-align: center;
}

/* ===== ABOUT PAGE ===== */
.about-full-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s6);
}

@media (min-width: 900px) {
  .about-full-grid {
    grid-template-columns: 5fr 7fr;
    gap: var(--s7);
    align-items: start;
  }
}

.about-full-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--navy-700);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
}

.about-full-photo svg {
  color: var(--text-subtle);
  opacity: 0.4;
}

.about-full-photo span {
  font-size: 0.8rem;
  color: var(--text-subtle);
  text-align: center;
  padding: 0 var(--s4);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s3);
  margin-top: var(--s4);
}

.value-card {
  padding: var(--s3);
  background: var(--navy-700);
  border-radius: var(--r-md);
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.value-card h4 {
  font-size: 0.8rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: var(--s1);
}

.value-card p {
  font-size: 0.875rem;
  max-width: none;
  line-height: 1.5;
}

/* ===== WORK WITH ME PAGE ===== */
.service-full-card {
  background: var(--navy-800);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: var(--s4);
}

.service-full-header {
  padding: var(--s5) var(--s5) var(--s4);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.service-full-body {
  padding: var(--s5);
}

.service-full-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
}

@media (min-width: 768px) {
  .service-full-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s5);
  }
}

.service-detail-list li {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.service-detail-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold-500);
}

/* ===== INSIGHTS PAGE ===== */
.insights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
}

@media (min-width: 640px) {
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .insights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.insight-card {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--t-base), transform var(--t-base);
}

.insight-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-4px);
}

.insight-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.insight-thumb::after {
  content: attr(data-category);
  position: absolute;
  top: var(--s2);
  left: var(--s2);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-900);
  background: var(--gold-500);
  padding: 3px 10px;
  border-radius: 2px;
}

.insight-body {
  padding: var(--s4);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.insight-meta {
  font-size: 0.78rem;
  color: var(--text-subtle);
  margin-bottom: var(--s2);
  letter-spacing: 0.03em;
}

.insight-body h3 {
  font-size: 1.15rem;
  margin-bottom: var(--s2);
  line-height: 1.35;
}

.insight-body p {
  font-size: 0.875rem;
  flex: 1;
  margin-bottom: var(--s3);
  max-width: none;
}

.insight-link {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--gold-400);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--t-fast), color var(--t-fast);
}

.insight-card:hover .insight-link {
  gap: 10px;
  color: var(--gold-300);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s6);
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 2fr 3fr;
    gap: var(--s7);
    align-items: start;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  flex-shrink: 0;
}

.contact-item-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-item-text span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.contact-form-wrap {
  background: var(--navy-800);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--r-lg);
  padding: var(--s5);
}

.form-group {
  margin-bottom: var(--s3);
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--s1);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--navy-900);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-sm);
  padding: 14px var(--s3);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-subtle);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s3);
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 0.95rem;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-gold { color: var(--gold-400); }
.mt-2 { margin-top: var(--s2); }
.mt-3 { margin-top: var(--s3); }
.mt-4 { margin-top: var(--s4); }
.mt-5 { margin-top: var(--s5); }
.mb-2 { margin-bottom: var(--s2); }
.mb-3 { margin-bottom: var(--s3); }
.mb-4 { margin-bottom: var(--s4); }
.mb-5 { margin-bottom: var(--s5); }

/* ===== BACKGROUND GLOW EFFECTS ===== */
.glow-top {
  position: relative;
}

.glow-top::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ===== NOTICE BOX (for placeholder content) ===== */
.notice {
  background: rgba(201, 168, 76, 0.06);
  border: 1px dashed rgba(201, 168, 76, 0.3);
  border-radius: var(--r-md);
  padding: var(--s3);
  font-size: 0.825rem;
  color: var(--gold-400);
  text-align: center;
  margin-bottom: var(--s3);
}

/* ===== RESPONSIVE FINAL FIXES ===== */
@media (max-width: 479px) {
  .problem-points {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: var(--s2);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== HERO POWER LINE ===== */
.hero-power {
  font-size: 0.875rem;
  color: var(--gold-300);
  letter-spacing: 0.04em;
  margin-bottom: var(--s4);
  font-style: italic;
  opacity: 0.9;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== WHO THIS IS FOR ===== */
.who-section {
  background: var(--navy-800);
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s8);
  margin-top: var(--s6);
  align-items: start;
}

@media (max-width: 768px) {
  .who-grid { grid-template-columns: 1fr; gap: var(--s5); }
}

.who-col-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 600;
  margin-bottom: var(--s4);
}

.who-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.who-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.55;
}

.who-list li svg {
  color: var(--gold-500);
  flex-shrink: 0;
  margin-top: 3px;
}

.who-feelings {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.who-feeling-item {
  padding: var(--s2) var(--s3);
  border-left: 2px solid rgba(201, 168, 76, 0.25);
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.975rem;
  line-height: 1.55;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.who-feeling-item:hover {
  border-color: var(--gold-500);
  color: var(--text-primary);
}

/* ===== WHAT MAKES THIS DIFFERENT ===== */
.differ-section {
  background: var(--navy-900);
}

.differ-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  margin-top: var(--s6);
}

@media (max-width: 768px) {
  .differ-grid { grid-template-columns: 1fr; }
}

.differ-card {
  background: var(--navy-800);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--r-lg);
  padding: var(--s5) var(--s4);
}

.differ-card.differ-positive {
  border-color: rgba(201, 168, 76, 0.3);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.06) 0%, var(--navy-800) 100%);
}

.differ-mark {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: var(--s3);
  display: block;
}

.differ-mark-no  { color: rgba(201, 168, 76, 0.25); }
.differ-mark-yes { color: var(--gold-400); }

.differ-card h3 {
  font-size: 1.05rem;
  margin-bottom: var(--s2);
  color: var(--text-primary);
}

.differ-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: none;
}

.differ-declaration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s6);
  margin-top: var(--s8);
  padding: var(--s6) var(--s4);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

@media (max-width: 640px) {
  .differ-declaration { flex-direction: column; gap: var(--s4); }
  .differ-decl-divider { display: none; }
}

.differ-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.differ-pillar-word {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  background: linear-gradient(135deg, #C9A84C 0%, #E8C97A 50%, #C9A84C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.differ-pillar-sub {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.differ-decl-divider {
  width: 1px;
  height: 56px;
  background: rgba(201, 168, 76, 0.2);
  flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-wrap {
  margin-top: var(--s8);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding-top: var(--s6);
}

/* ===== WHAT I STAND FOR ===== */
.standfor-wrap {
  margin-top: var(--s8);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding-top: var(--s7);
}

.standfor-label {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 600;
  margin-bottom: var(--s5);
}

.standfor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s4);
}

@media (min-width: 900px) {
  .standfor-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 480px) {
  .standfor-grid { grid-template-columns: 1fr; }
}

.standfor-item {
  background: var(--navy-800);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: var(--r-md);
  padding: var(--s4);
  transition: border-color 0.25s ease;
}

.standfor-item:hover {
  border-color: rgba(201, 168, 76, 0.25);
}

.standfor-item-icon {
  color: var(--gold-500);
  margin-bottom: var(--s2);
}

.standfor-item h4 {
  font-size: 1rem;
  margin-bottom: var(--s1);
  color: var(--text-primary);
}

.standfor-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: none;
}

/* ===== SERVICE SCARCITY NOTE ===== */
.service-scarcity {
  font-size: 0.78rem;
  color: var(--gold-400);
  letter-spacing: 0.04em;
  margin-bottom: var(--s3);
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-scarcity::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ===== POST PAGE ===== */
.post-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-400);
  text-decoration: none;
  margin-bottom: var(--s4);
  opacity: 0.8;
  transition: opacity 0.2s ease, gap 0.2s ease;
}
.post-back:hover { opacity: 1; gap: 10px; }

.post-meta-line {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-wrap: wrap;
  margin-top: var(--s3);
}

.post-meta-line .post-byline {
  font-size: 0.85rem;
  color: var(--text-subtle);
}

.post-category-badge {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 20px;
  padding: 3px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-400);
}

/* Post body */
.post-body {
  max-width: 720px;
  margin: 0 auto;
}

.post-excerpt {
  font-size: 1.15rem;
  color: var(--gold-300);
  font-style: italic;
  line-height: 1.75;
  padding-bottom: var(--s4);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  margin-bottom: var(--s5);
  max-width: none;
}

.post-body p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: var(--s3);
  max-width: none;
}

.post-body hr {
  border: none;
  border-top: 1px solid rgba(201,168,76,0.1);
  margin: var(--s5) 0;
}

/* Comment / Question section */
.comment-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.comment-form {
  margin-top: var(--s4);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.comment-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s2);
}

.comment-form input,
.comment-form textarea {
  background: var(--navy-900);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  padding: 14px var(--s3);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: rgba(201,168,76,0.4);
}

.comment-form textarea {
  resize: vertical;
  min-height: 130px;
}

.comment-success {
  display: none;
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.25);
  border-radius: var(--r-md);
  padding: var(--s3) var(--s4);
  color: #4ade80;
  font-size: 0.95rem;
  margin-top: var(--s2);
}

/* Filter buttons active state */
.filter-btn-active {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400)) !important;
  color: var(--navy-900) !important;
  border-color: transparent !important;
}

@media (max-width: 600px) {
  .comment-form-row {
    grid-template-columns: 1fr;
  }
}
