/*
Theme Name:  r-thur
Theme URI:   https://r-thur.com
Author:      Arthur
Author URI:  https://r-thur.com
Description: Personal brand theme for r-thur — Leadership, Vision, Community.
Version:     1.0.0
License:     Private
Text Domain: r-thur
*/

/* ─────────────────────────────────────────────
   VARIABLES & RESET
───────────────────────────────────────────── */
:root {
  --dark:    #080808;
  --off:     #111111;
  --off2:    #161616;
  --light:   #F0EDE8;
  --mid:     #888888;
  --muted:   rgba(240,237,232,0.65);
  --accent:  #FF4500;
  --accent2: #FF6A2B;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--light);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

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

/* ─────────────────────────────────────────────
   CUSTOM CURSOR
───────────────────────────────────────────── */
#cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease, width 0.2s, height 0.2s;
}
#cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,69,0,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, width 0.3s, height 0.3s, opacity 0.3s;
}

/* ─────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────── */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
}
#site-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,8,0.92) 0%, transparent 100%);
  pointer-events: none;
  transition: backdrop-filter 0.3s;
}
#site-nav.scrolled::before {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(8,8,8,0.85);
}

.nav-logo {
  font-family: 'Space Mono', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--light);
  text-decoration: none;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  position: relative;
  z-index: 1;
}
.nav-links a {
  color: var(--mid);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--light); }

/* ─────────────────────────────────────────────
   HERO (front-page only)
───────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Space Mono', monospace;
  font-size: clamp(100px, 22vw, 320px);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.04);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.04em;
}

.hero-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-name {
  font-family: 'Space Mono', monospace;
  font-size: clamp(68px, 12vw, 175px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--light);
  margin-bottom: 40px;
}
.hero-name .dash { color: var(--accent); }

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hero-tagline {
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  font-weight: 300;
  line-height: 1.45;
  color: rgba(240,237,232,0.72);
  max-width: 500px;
}
.hero-tagline em {
  font-style: normal;
  color: var(--light);
  font-weight: 500;
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ─────────────────────────────────────────────
   SECTION BASE
───────────────────────────────────────────── */
.site-section {
  padding: 130px 48px;
  position: relative;
}

.section-num {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-num::after {
  content: '';
  flex: 0 0 48px;
  height: 1px;
  background: var(--accent);
}

/* ─────────────────────────────────────────────
   ABOUT
───────────────────────────────────────────── */
#about { background: var(--off); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
}

.about-heading {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
}
.about-heading .accent { color: var(--accent); }

.about-divider {
  width: 40px; height: 2px;
  background: var(--accent);
  margin: 32px 0;
}

.about-content p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 24px;
}
.about-content p:last-child { margin-bottom: 0; }
.about-content strong { color: var(--light); font-weight: 600; }

.about-stat-row {
  display: flex;
  gap: 52px;
  margin-top: 44px;
}
.about-stat .num {
  font-family: 'Space Mono', monospace;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.about-stat .label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 6px;
}

/* ─────────────────────────────────────────────
   MANIFESTO TICKER
───────────────────────────────────────────── */
.manifesto-strip {
  background: var(--accent);
  padding: 64px 0;
  overflow: hidden;
}
.manifesto-ticker {
  display: flex;
  white-space: nowrap;
  animation: ticker 24s linear infinite;
}
.manifesto-ticker span {
  font-family: 'Space Mono', monospace;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
  padding-right: 72px;
}
.manifesto-ticker .dot { color: rgba(8,8,8,0.3); }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────
   VISION CARDS
───────────────────────────────────────────── */
#vision { background: var(--dark); }

.vision-intro {
  max-width: 680px;
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 90px;
}
.vision-intro em { font-style: normal; color: var(--light); font-weight: 500; }

.vision-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.vision-card {
  background: var(--off);
  padding: 50px 38px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.vision-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: transparent;
  transition: background 0.3s;
}
.vision-card:hover { background: var(--off2); }
.vision-card:hover::before { background: var(--accent); }

.vision-card-num {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 28px;
}
.vision-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.vision-card p {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(240,237,232,0.62);
}

/* ─────────────────────────────────────────────
   CONTACT (homepage)
───────────────────────────────────────────── */
#contact {
  background: var(--off);
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-heading {
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 52px;
}
.contact-heading .accent { color: var(--accent); }

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

.contact-links { display: flex; gap: 20px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 34px;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(240,237,232,0.2);
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 34px;
  transition: border-color 0.25s, color 0.25s, transform 0.2s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ─────────────────────────────────────────────
   BLOG — HOME (post listing)
───────────────────────────────────────────── */
.blog-header {
  padding: 160px 48px 80px;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.blog-header h1 {
  font-family: 'Space Mono', monospace;
  font-size: clamp(3.5rem, 9vw, 9rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.blog-header h1 .dash { color: var(--accent); }
.blog-header .sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  margin-top: 28px;
  max-width: 480px;
  line-height: 1.7;
}

.posts-grid {
  padding: 80px 48px 120px;
  background: var(--dark);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.post-card {
  background: var(--off);
  padding: 52px 44px;
  text-decoration: none;
  color: var(--light);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.post-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: transparent;
  transition: background 0.3s;
}
.post-card:hover { background: var(--off2); }
.post-card:hover::before { background: var(--accent); }

.post-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.post-card-meta .sep { color: var(--mid); }

.post-card h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.post-card .excerpt {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  flex: 1;
}

.post-card .read-more {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.no-posts {
  grid-column: 1 / -1;
  padding: 80px 44px;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
}
.no-posts a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

/* ─────────────────────────────────────────────
   SINGLE POST
───────────────────────────────────────────── */
.post-hero {
  padding: 160px 48px 80px;
  background: var(--dark);
  max-width: 900px;
}

.post-hero-meta {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.post-hero-meta::after {
  content: '';
  flex: 0 0 40px;
  height: 1px;
  background: var(--accent);
}

.post-hero h1 {
  font-size: clamp(2.2rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 32px;
}

.post-thumbnail {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  margin-bottom: 0;
}

.post-body {
  background: var(--off);
  padding: 80px 48px 120px;
}

.post-body .entry-content {
  max-width: 720px;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(240,237,232,0.85);
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--light);
  margin: 52px 0 20px;
}
.entry-content h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
.entry-content h3 { font-size: clamp(1.2rem, 2.4vw, 1.8rem); }

.entry-content p { margin-bottom: 28px; }

.entry-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.entry-content a:hover { opacity: 0.75; }

.entry-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 20px 32px;
  margin: 40px 0;
  background: rgba(255,69,0,0.06);
}
.entry-content blockquote p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--light);
  margin: 0;
}

.entry-content ul,
.entry-content ol {
  margin: 0 0 28px 24px;
}
.entry-content li { margin-bottom: 10px; }

.entry-content code {
  font-family: 'Space Mono', monospace;
  background: rgba(255,69,0,0.1);
  color: var(--accent);
  padding: 2px 8px;
  font-size: 0.88em;
}

.entry-content img {
  max-width: 100%;
  margin: 40px 0;
}

.entry-content hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 52px 0;
}

.post-nav {
  background: var(--dark);
  padding: 60px 48px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.post-nav-link {
  text-decoration: none;
  color: var(--light);
  max-width: 48%;
}
.post-nav-link.next { text-align: right; }
.post-nav-link .direction {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.post-nav-link .title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.25s;
}
.post-nav-link:hover .title { color: var(--accent); }

/* ─────────────────────────────────────────────
   GENERIC PAGE
───────────────────────────────────────────── */
.page-hero {
  padding: 160px 48px 80px;
  background: var(--dark);
}
.page-hero h1 {
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.page-hero h1 .accent { color: var(--accent); }

.page-body {
  background: var(--off);
  padding: 80px 48px 120px;
}
.page-body .entry-content {
  max-width: 720px;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(240,237,232,0.85);
}

/* ─────────────────────────────────────────────
   404
───────────────────────────────────────────── */
.error-404 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}
.error-404 .num {
  font-family: 'Space Mono', monospace;
  font-size: clamp(80px, 18vw, 220px);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,69,0,0.3);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}
.error-404 h2 {
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.error-404 p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 460px;
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
#site-footer {
  background: var(--dark);
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-logo {
  font-family: 'Space Mono', monospace;
  font-size: 1rem;
  font-weight: 700;
  color: var(--light);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.footer-logo span { color: var(--accent); }
.footer-copy {
  font-size: 0.7rem;
  color: var(--mid);
  letter-spacing: 0.08em;
}
.footer-blog-link {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-blog-link:hover { color: var(--accent); }

/* ─────────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.34s; }
.reveal-d4 { transition-delay: 0.5s; }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 960px) {
  #site-nav          { padding: 22px 28px; }
  .site-section      { padding: 90px 28px; }
  #hero              { padding: 0 28px 60px; }
  .blog-header       { padding: 130px 28px 60px; }
  .posts-grid        { padding: 60px 28px 90px; grid-template-columns: 1fr; }
  .post-hero         { padding: 130px 28px 60px; }
  .post-body         { padding: 60px 28px 90px; }
  .post-nav          { padding: 40px 28px; flex-direction: column; }
  .post-nav-link     { max-width: 100%; }
  .post-nav-link.next { text-align: left; }
  .page-hero         { padding: 130px 28px 60px; }
  .page-body         { padding: 60px 28px 90px; }
  .about-grid        { grid-template-columns: 1fr; gap: 48px; }
  .vision-cards      { grid-template-columns: 1fr; }
  .hero-bottom       { flex-direction: column; align-items: flex-start; gap: 40px; }
  #site-footer       { flex-direction: column; gap: 12px; text-align: center; padding: 32px 28px; }
  .nav-links         { gap: 22px; }
  .error-404         { padding: 28px; }
  .contact-links     { flex-direction: column; }
  .about-stat-row    { gap: 36px; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
}

/* ─────────────────────────────────────────────
   ELEMENTOR COMPATIBILITY
   These rules make Elementor sections inherit
   the r-thur design system automatically.
───────────────────────────────────────────── */

/* Content wrapper */
#r-thur-content {
  width: 100%;
  min-height: 200px;
}

/* Default section background matches theme */
#r-thur-content .elementor-section,
#r-thur-content .e-con {
  background-color: var(--dark);
}

/* Headings inside Elementor inherit brand font */
#r-thur-content h1,
#r-thur-content h2,
#r-thur-content h3,
#r-thur-content h4,
#r-thur-content h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--light);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

/* Body text inside Elementor */
#r-thur-content p,
#r-thur-content li,
#r-thur-content span {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--muted);
}

/* Elementor links */
#r-thur-content a {
  color: var(--accent);
  transition: opacity 0.2s;
}
#r-thur-content a:hover { opacity: 0.75; }

/* Elementor dividers → accent colour */
#r-thur-content .elementor-divider-separator {
  border-color: var(--accent) !important;
}

/* Elementor buttons → r-thur style */
#r-thur-content .elementor-button {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  transition: background 0.25s, transform 0.2s;
}
#r-thur-content .elementor-button:hover {
  transform: translateY(-2px);
}

/* Accent colour helper class — apply to any Elementor text widget */
#r-thur-content .accent-text {
  color: var(--accent) !important;
}

/* Mono helper — apply to labels, numbers, captions */
#r-thur-content .mono-text {
  font-family: 'Space Mono', monospace !important;
}

/* Full-width Elementor sections (no side padding) */
#r-thur-content .elementor-section.elementor-section-full_width .elementor-container {
  max-width: 100%;
}

/* Remove Elementor's default white background on inner sections */
#r-thur-content .elementor-inner-section {
  background-color: transparent;
}

/* Column gap consistency */
#r-thur-content .elementor-column-gap-default > .elementor-row > .elementor-column > .elementor-element-populated {
  padding: 24px;
}

/* Dark section preset — add CSS class "section-dark" in Elementor */
#r-thur-content .section-dark {
  background: var(--dark) !important;
}

/* Off-dark section preset — add CSS class "section-off" in Elementor */
#r-thur-content .section-off {
  background: var(--off) !important;
}

/* Accent strip preset — add CSS class "section-accent" in Elementor */
#r-thur-content .section-accent {
  background: var(--accent) !important;
}
#r-thur-content .section-accent h1,
#r-thur-content .section-accent h2,
#r-thur-content .section-accent h3,
#r-thur-content .section-accent p,
#r-thur-content .section-accent span {
  color: var(--dark) !important;
}

/* Orange accent text — add CSS class "text-accent" to any text widget */
#r-thur-content .text-accent,
#r-thur-content .text-accent * {
  color: var(--accent) !important;
}

/* Large display text helper — add "text-display" to a heading widget */
#r-thur-content .text-display .elementor-heading-title {
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

/* Mono label helper — add "text-label" to small caption headings */
#r-thur-content .text-label .elementor-heading-title {
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Card style — add CSS class "r-card" to an Elementor section/column */
#r-thur-content .r-card {
  background: var(--off) !important;
  padding: 48px 40px !important;
  transition: background 0.3s;
  position: relative;
}
#r-thur-content .r-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: transparent;
  transition: background 0.3s;
}
#r-thur-content .r-card:hover { background: #161616 !important; }
#r-thur-content .r-card:hover::before { background: var(--accent); }
