/* ===========================
   ROY SCHWARZ – THEME CSS
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---- VARIABLES ---- */
:root {
  --rs-black:       #0d0d0d;
  --rs-white:       #ffffff;
  --rs-gray-light:  #f4f4f2;
  --rs-gray-mid:    #eeeeec;
  --rs-accent:      #e84040;
  --rs-text-muted:  #7a7a7a;
  --rs-border:      rgba(0,0,0,0.1);
  --rs-font:        'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --rs-transition:  0.3s ease;
  --rs-radius:      4px;
  --rs-container:   1260px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ---- BASE ---- */
html { scroll-behavior: smooth; }
body {
  font-family: var(--rs-font);
  color: var(--rs-black);
  background: var(--rs-white);
  line-height: 1.55;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.rs-container {
  max-width: var(--rs-container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ===========================
   HEADER
   =========================== */
.rs-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--rs-transition);
}
.rs-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.rs-header-inner {
  max-width: var(--rs-container);
  margin: 0 auto;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.rs-logo a {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--rs-black);
  text-transform: lowercase;
}
.rs-logo a:hover { opacity: 0.7; }

/* Nav Pill */
.rs-nav-pill {
  display: flex;
  align-items: center;
}
.rs-nav-pill ul {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--rs-gray-light);
  border-radius: 50px;
  padding: 6px 8px;
  border: 1px solid var(--rs-border);
}
.rs-nav-pill ul li a {
  display: block;
  padding: 6px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--rs-black);
  border-radius: 50px;
  transition: background var(--rs-transition), color var(--rs-transition);
  white-space: nowrap;
}
.rs-nav-pill ul li a:hover,
.rs-nav-pill ul li.current-menu-item a,
.rs-nav-pill ul li.current_page_item a {
  background: var(--rs-black);
  color: var(--rs-white);
}

/* Header btn */
.rs-header-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--rs-black);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity var(--rs-transition);
}
.rs-header-btn:hover { opacity: 0.75; }
.rs-header-btn span {
  display: block; width: 14px; height: 1.5px;
  background: var(--rs-white);
  position: relative;
}
.rs-header-btn span::before,
.rs-header-btn span::after {
  content: '';
  position: absolute;
  left: 0; width: 100%; height: 1.5px;
  background: var(--rs-white);
}
.rs-header-btn span::before { top: -4px; }
.rs-header-btn span::after { top: 4px; }

/* Mobile nav toggle */
.rs-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.rs-nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--rs-black);
  transition: var(--rs-transition);
}

/* ===========================
   HERO – HOMEPAGE
   =========================== */
.rs-hero {
  padding: 130px 0 80px;
  background: var(--rs-white);
}
.rs-hero-inner {
  max-width: var(--rs-container);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
  gap: 60px;
  min-height: 60vh;
}
.rs-hero-left { padding-top: 20px; }
.rs-hero-tagline {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rs-text-muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rs-hero-tagline::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rs-accent);
  flex-shrink: 0;
}
.rs-hero-title {
  font-size: clamp(58px, 7.5vw, 110px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -3px;
  color: var(--rs-black);
}
.rs-hero-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 10px;
}
.rs-hero-sub {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 500;
  color: var(--rs-black);
  line-height: 1.35;
}
.rs-hero-divider {
  width: 100%;
  height: 1px;
  background: var(--rs-border);
}
.rs-hero-contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rs-text-muted);
  margin-bottom: 12px;
}
.rs-hero-contact-list { display: flex; flex-direction: column; gap: 8px; }
.rs-hero-contact-list li { font-size: 14px; color: var(--rs-black); }
.rs-hero-contact-list li strong { color: var(--rs-text-muted); font-weight: 500; margin-right: 6px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.rs-hero-social { display: flex; gap: 16px; flex-wrap: wrap; }
.rs-hero-social a {
  font-size: 13px;
  font-weight: 500;
  color: var(--rs-text-muted);
  border-bottom: 1px solid transparent;
  transition: color var(--rs-transition), border-color var(--rs-transition);
}
.rs-hero-social a:hover { color: var(--rs-black); border-color: var(--rs-black); }

/* ===========================
   VIDEO SCROLL ZOOM SECTION
   =========================== */
.rs-video-section {
  /* Extra height creates the scroll distance for the zoom animation */
  height: calc(100vh + 660px);
  position: relative;
  background: var(--rs-black);
}
.rs-video-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rs-video-inner {
  width: 100%;
  height: 100%;
  /* Start at Linsa scale (0.614), JS animates to 1.0 */
  transform: scale(0.614);
  transform-origin: center center;
  will-change: transform;
  transition: none; /* driven by rAF, no CSS transition */
}
.rs-video-inner video,
.rs-video-inner iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
/* Fallback poster / background image when no video set */
.rs-video-inner.rs-video-fallback {
  position: relative;
  background: #b8b8b8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rs-video-fallback-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--rs-transition), transform var(--rs-transition);
}
.rs-video-fallback-icon:hover {
  background: rgba(255,255,255,0.22);
  transform: scale(1.08);
}
.rs-video-fallback-icon svg { width: 22px; height: 22px; fill: #fff; margin-left: 4px; }

/* ===========================
   SERVICES – HOMEPAGE
   =========================== */
.rs-services {
  padding: 80px 0;
  background: var(--rs-white);
  border-top: 1px solid var(--rs-border);
}
.rs-services-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0;
}
.rs-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rs-text-muted);
}
.rs-service-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: start;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--rs-border);
  cursor: pointer;
}
.rs-service-item:first-of-type { border-top: 1px solid var(--rs-border); }
.rs-service-num {
  font-size: 13px;
  font-weight: 600;
  color: var(--rs-text-muted);
  padding-top: 4px;
}
.rs-service-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--rs-black);
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.rs-service-desc {
  font-size: 14.5px;
  color: var(--rs-text-muted);
  line-height: 1.6;
  max-width: 560px;
}
.rs-service-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--rs-black);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  border-bottom: 1px solid var(--rs-black);
  padding-bottom: 2px;
  transition: opacity var(--rs-transition);
}
.rs-service-link:hover { opacity: 0.6; }
.rs-service-arrow {
  font-size: 18px;
  color: var(--rs-text-muted);
  transition: transform var(--rs-transition);
  padding-top: 4px;
}
.rs-service-item:hover .rs-service-arrow { transform: rotate(45deg); }

/* ===========================
   WORKS – HOMEPAGE
   =========================== */
.rs-works {
  background: var(--rs-black);
  padding: 80px 0;
  overflow: hidden;
}
.rs-works-heading {
  max-width: var(--rs-container);
  margin: 0 auto 0;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
}
.rs-works-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--rs-accent);
  flex-shrink: 0;
}
.rs-works-title {
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 900;
  color: #1c1c1c;
  font-style: italic;
  letter-spacing: -2px;
  line-height: 1;
}
.rs-portfolio-grid {
  max-width: var(--rs-container);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rs-portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  height: 300px;
  background: #1a1a1a;
  cursor: pointer;
}
.rs-portfolio-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.7);
}
.rs-portfolio-card:hover img { transform: scale(1.05); filter: brightness(0.5); }
.rs-portfolio-info {
  position: absolute;
  bottom: 24px; left: 28px;
  color: var(--rs-white);
}
.rs-portfolio-cats {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
}
.rs-portfolio-name {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: -0.5px;
}
.rs-works-footer {
  max-width: var(--rs-container);
  margin: 48px auto 0;
  padding: 0 40px;
  display: flex;
  justify-content: flex-end;
}
.rs-see-all {
  font-size: 14px;
  font-weight: 600;
  color: var(--rs-white);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 3px;
  transition: border-color var(--rs-transition);
}
.rs-see-all:hover { border-color: var(--rs-white); }

/* ===========================
   STATS / FEATURES
   =========================== */
.rs-stats {
  background: var(--rs-gray-light);
  padding: 80px 0;
}
.rs-stats-inner {
  max-width: var(--rs-container);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.rs-stats-heading {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  color: var(--rs-black);
  margin-bottom: 24px;
}
.rs-stats-sub {
  font-size: 14.5px;
  color: var(--rs-text-muted);
  line-height: 1.65;
  max-width: 400px;
}
.rs-stats-numbers { display: flex; flex-direction: column; gap: 28px; }
.rs-stat-item { display: flex; flex-direction: column; gap: 4px; border-bottom: 1px solid var(--rs-border); padding-bottom: 24px; }
.rs-stat-item:last-child { border-bottom: none; padding-bottom: 0; }
.rs-stat-num {
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 900;
  color: var(--rs-black);
  letter-spacing: -2px;
  line-height: 1;
}
.rs-stat-label {
  font-size: 13px;
  color: var(--rs-text-muted);
  font-weight: 500;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.rs-testimonials {
  background: var(--rs-white);
  padding: 80px 0;
  border-top: 1px solid var(--rs-border);
}
.rs-test-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rs-text-muted);
  margin-bottom: 16px;
}
.rs-test-heading {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--rs-black);
  max-width: 520px;
  margin-bottom: 48px;
}
.rs-test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.rs-test-card {
  background: var(--rs-gray-light);
  border-radius: 6px;
  padding: 32px;
}
.rs-test-quote {
  font-size: 15px;
  color: var(--rs-black);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}
.rs-test-quote::before { content: '"'; }
.rs-test-quote::after { content: '"'; }
.rs-test-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--rs-black);
}

/* ===========================
   CTA SECTION
   =========================== */
.rs-cta {
  background: var(--rs-black);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.rs-cta-deco {
  position: absolute;
  bottom: -30px; left: 50%;
  transform: translateX(-50%);
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  font-style: italic;
  white-space: nowrap;
  letter-spacing: -6px;
  user-select: none;
  pointer-events: none;
}
.rs-cta-inner {
  max-width: var(--rs-container);
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.rs-cta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.rs-cta-heading {
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 900;
  color: var(--rs-white);
  letter-spacing: -2px;
  line-height: 1.05;
}
.rs-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rs-white);
  color: var(--rs-black);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  transition: background var(--rs-transition), color var(--rs-transition), transform var(--rs-transition);
  white-space: nowrap;
}
.rs-btn-primary:hover {
  background: var(--rs-accent);
  color: var(--rs-white);
  transform: translateY(-2px);
}
.rs-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--rs-white);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 50px;
  transition: border-color var(--rs-transition), background var(--rs-transition);
}
.rs-btn-outline:hover { border-color: var(--rs-white); background: rgba(255,255,255,0.08); }

/* ===========================
   FOOTER
   =========================== */
.rs-footer {
  background: var(--rs-black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 36px;
  position: relative;
  overflow: hidden;
}
.rs-footer-deco {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(100px, 18vw, 260px);
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  font-style: italic;
  white-space: nowrap;
  letter-spacing: -8px;
  user-select: none;
  pointer-events: none;
}
.rs-footer-inner {
  max-width: var(--rs-container);
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
.rs-footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.rs-footer-logo {
  font-size: 26px;
  font-weight: 800;
  color: var(--rs-white);
  text-transform: lowercase;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.rs-footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 260px;
}
.rs-footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 18px;
}
.rs-footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.rs-footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--rs-transition);
}
.rs-footer-col ul li a:hover { color: var(--rs-white); }
.rs-footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.rs-footer-contact-list li {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.rs-footer-contact-list li strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 3px;
}
.rs-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.rs-footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}
.rs-footer-links { display: flex; gap: 20px; }
.rs-footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  transition: color var(--rs-transition);
}
.rs-footer-links a:hover { color: rgba(255,255,255,0.7); }
.rs-footer-social { display: flex; gap: 16px; }
.rs-footer-social a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color var(--rs-transition), border-color var(--rs-transition);
}
.rs-footer-social a:hover { color: var(--rs-white); border-color: var(--rs-white); }

/* ===========================
   PAGE HERO BANNER
   =========================== */
.rs-page-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.rs-page-hero-bg {
  position: absolute; inset: 0;
  background: var(--rs-black);
}
.rs-page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.rs-page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--rs-container);
  margin: 0 auto;
  padding: 0 40px 60px;
  width: 100%;
}
.rs-page-hero-breadcrumb {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}
.rs-page-hero-breadcrumb a { color: rgba(255,255,255,0.45); }
.rs-page-hero-breadcrumb span { color: rgba(255,255,255,0.7); margin: 0 6px; }
.rs-page-hero-title {
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 900;
  color: var(--rs-white);
  letter-spacing: -2.5px;
  line-height: 1;
}

/* ===========================
   ABOUT PAGE
   =========================== */
.rs-who-we-are {
  padding: 80px 0;
  background: var(--rs-white);
}
.rs-who-inner {
  max-width: var(--rs-container);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.rs-who-left {}
.rs-who-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rs-text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rs-who-eyebrow::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rs-accent);
  flex-shrink: 0;
}
.rs-who-heading {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--rs-black);
  line-height: 1.1;
  margin-bottom: 16px;
}
.rs-who-sub {
  font-size: 16px;
  font-weight: 600;
  color: var(--rs-black);
  margin-bottom: 20px;
}
.rs-who-body {
  font-size: 14.5px;
  color: var(--rs-text-muted);
  line-height: 1.7;
  max-width: 420px;
}
.rs-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rs-black);
  color: var(--rs-white);
  font-size: 13.5px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 50px;
  margin-top: 28px;
  transition: background var(--rs-transition), transform var(--rs-transition);
}
.rs-cta-btn:hover { background: var(--rs-accent); transform: translateY(-2px); }
.rs-who-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.rs-who-gallery img {
  border-radius: 4px;
  height: 240px;
  width: 100%;
  object-fit: cover;
}
.rs-who-gallery img:first-child {
  grid-column: 1 / -1;
  height: 200px;
}

/* Timeline */
.rs-timeline {
  background: var(--rs-black);
  padding: 80px 0;
  overflow: hidden;
}
.rs-timeline-scroll {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  font-size: clamp(44px, 7vw, 90px);
  font-weight: 900;
  color: rgba(255,255,255,0.12);
  letter-spacing: -3px;
  padding: 0 40px;
  margin-bottom: 60px;
  animation: rs-scroll 20s linear infinite;
}
@keyframes rs-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.rs-timeline-items {
  max-width: var(--rs-container);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.rs-timeline-item { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; }
.rs-timeline-year {
  font-size: 18px;
  font-weight: 800;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}
.rs-timeline-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--rs-white);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.rs-timeline-text {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

/* Process Steps */
.rs-process {
  background: var(--rs-gray-light);
  padding: 80px 0;
}
.rs-process-inner {
  max-width: var(--rs-container);
  margin: 0 auto;
  padding: 0 40px;
}
.rs-section-heading {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--rs-black);
  margin-bottom: 8px;
}
.rs-section-sub {
  font-size: 14.5px;
  color: var(--rs-text-muted);
  margin-bottom: 48px;
}
.rs-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rs-step-card {
  background: var(--rs-white);
  border-radius: 6px;
  padding: 32px;
  border: 1px solid var(--rs-border);
}
.rs-step-icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.rs-step-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rs-text-muted);
  margin-bottom: 8px;
}
.rs-step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--rs-black);
  letter-spacing: -0.5px;
}

/* Team */
.rs-team {
  background: var(--rs-white);
  padding: 80px 0;
  border-top: 1px solid var(--rs-border);
}
.rs-team-header {
  max-width: var(--rs-container);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 48px;
}
.rs-team-grid {
  max-width: var(--rs-container);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rs-team-card {}
.rs-team-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 4px;
  background: var(--rs-gray-mid);
  margin-bottom: 14px;
  display: block;
}
.rs-team-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rs-text-muted);
  margin-bottom: 4px;
}
.rs-team-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--rs-black);
  letter-spacing: -0.3px;
}

/* ===========================
   PORTFOLIO PAGE
   =========================== */
.rs-portfolio-archive {
  padding: 60px 0 80px;
  background: var(--rs-white);
}
.rs-portfolio-archive .rs-container {}
.rs-portfolio-archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.rs-portfolio-archive-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  height: 360px;
  background: #1a1a1a;
  cursor: pointer;
}
.rs-portfolio-archive-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.65);
}
.rs-portfolio-archive-card:hover img { transform: scale(1.04); filter: brightness(0.45); }
.rs-portfolio-archive-info {
  position: absolute;
  bottom: 24px; left: 24px;
  color: var(--rs-white);
}
.rs-portfolio-archive-cat {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.rs-portfolio-archive-name {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* ===========================
   CONTACTS PAGE
   =========================== */
.rs-contacts {
  padding: 80px 0;
  background: var(--rs-white);
}
.rs-contacts-inner {
  max-width: var(--rs-container);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
}
.rs-contact-info-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rs-text-muted);
  margin-bottom: 8px;
}
.rs-contact-info-val {
  font-size: 15px;
  color: var(--rs-black);
  font-weight: 500;
  margin-bottom: 28px;
}
.rs-contact-info-val a { color: var(--rs-black); border-bottom: 1px solid var(--rs-border); padding-bottom: 1px; }
.rs-contact-info-val a:hover { border-color: var(--rs-black); }
.rs-form-heading {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--rs-black);
  margin-bottom: 8px;
}
.rs-form-sub {
  font-size: 14px;
  color: var(--rs-text-muted);
  margin-bottom: 36px;
}
.rs-form { display: flex; flex-direction: column; gap: 16px; }
.rs-form-group { display: flex; flex-direction: column; gap: 6px; }
.rs-form label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rs-text-muted);
}
.rs-form input, .rs-form textarea, .rs-form select {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: var(--rs-font);
  color: var(--rs-black);
  background: var(--rs-gray-light);
  border: 1.5px solid var(--rs-border);
  border-radius: 4px;
  transition: border-color var(--rs-transition), background var(--rs-transition);
  outline: none;
}
.rs-form input:focus, .rs-form textarea:focus {
  border-color: var(--rs-black);
  background: var(--rs-white);
}
.rs-form textarea { min-height: 140px; resize: vertical; }
.rs-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.rs-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rs-black);
  color: var(--rs-white);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--rs-font);
  padding: 16px 32px;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: background var(--rs-transition), transform var(--rs-transition);
  margin-top: 8px;
}
.rs-submit-btn:hover { background: var(--rs-accent); transform: translateY(-2px); }

/* ===========================
   WORDPRESS CONTENT
   =========================== */
.rs-content-wrap {
  padding: 80px 0;
  background: var(--rs-white);
}
.rs-content-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px;
}
.rs-content-inner h1, .rs-content-inner h2, .rs-content-inner h3 {
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--rs-black);
  margin-bottom: 14px;
}
.rs-content-inner p {
  font-size: 16px;
  color: var(--rs-text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

/* ===========================
   ELEMENTOR OVERRIDES
   =========================== */
.elementor-page .rs-header { position: fixed !important; }
body.elementor-page {
  padding-top: 68px;
}

/* ===========================
   STARTSEITE 2 – PERSONAL PAGE
   (royschwarz.de/personal Layout,
    angepasst an Roy-Schwarz-Theme)
   =========================== */

/* ---- S2 HERO ---- */
.rs-s2-hero {
  padding: 130px 0 0;
  background: var(--rs-white);
  overflow: hidden;
}
.rs-s2-hero-inner {
  max-width: var(--rs-container);
  margin: 0 auto;
  padding: 0 40px;
}
.rs-s2-hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rs-text-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rs-s2-hero-eyebrow::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rs-accent);
  flex-shrink: 0;
}
.rs-s2-hero-title {
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 900;
  letter-spacing: -2.5px;
  line-height: 1.02;
  color: var(--rs-black);
  max-width: 780px;
  margin-bottom: 32px;
}
.rs-s2-hero-title em {
  font-style: normal;
  color: var(--rs-text-muted);
}
.rs-s2-hero-sub {
  font-size: 16px;
  color: var(--rs-text-muted);
  max-width: 460px;
  line-height: 1.65;
  margin-bottom: 32px;
}
.rs-s2-hero-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  margin-top: 48px;
  border-radius: 4px 4px 0 0;
}

/* ---- S2 VISUAL / DARK FULLSCREEN ---- */
.rs-s2-visual {
  background: var(--rs-black);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.rs-s2-visual-word {
  font-size: clamp(90px, 18vw, 230px);
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  letter-spacing: -6px;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.rs-s2-visual-inner {
  max-width: var(--rs-container);
  margin: 0 auto;
  padding: 80px 40px;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.rs-s2-visual-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.rs-s2-visual-heading {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: var(--rs-white);
  letter-spacing: -1.5px;
  line-height: 1.1;
  max-width: 580px;
  margin-bottom: 16px;
}
.rs-s2-visual-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 36px;
}

/* Project cards (dark) */
.rs-s2-projects {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rs-s2-project-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  height: 320px;
  background: #1a1a1a;
  cursor: pointer;
}
.rs-s2-project-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.6);
}
.rs-s2-project-card:hover img { transform: scale(1.04); filter: brightness(0.4); }
.rs-s2-project-info {
  position: absolute;
  bottom: 24px; left: 28px;
  color: var(--rs-white);
}
.rs-s2-project-tags {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 6px;
}
.rs-s2-project-name {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  letter-spacing: -1px;
}

/* ---- S2 ABOUT ---- */
.rs-s2-about {
  background: var(--rs-white);
  padding: 80px 0;
  border-bottom: 1px solid var(--rs-border);
}
.rs-s2-about-inner {
  max-width: var(--rs-container);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.rs-s2-about-heading {
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--rs-black);
  line-height: 1.05;
  margin-bottom: 24px;
}
.rs-s2-about-body {
  font-size: 15px;
  color: var(--rs-text-muted);
  line-height: 1.72;
}
.rs-s2-about-body + .rs-s2-about-body { margin-top: 16px; }

/* ---- S2 MISSION / ORB ---- */
.rs-s2-mission {
  background: var(--rs-white);
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--rs-border);
}
.rs-s2-mission-orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 42%,
    #ff3c6e 0%, #b43cf9 45%, #1a1a7e 75%, transparent 100%);
  filter: blur(60px);
  opacity: 0.45;
  animation: rs-orb-pulse 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes rs-orb-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.45; }
  50%       { transform: translate(-50%, -50%) scale(1.18); opacity: 0.6; }
}
.rs-s2-mission-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 500px;
  padding: 0 40px;
}
.rs-s2-mission-word {
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 900;
  letter-spacing: -4px;
  color: var(--rs-black);
  line-height: 0.95;
  margin-bottom: 20px;
}
.rs-s2-mission-subs {
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 700;
  color: var(--rs-text-muted);
  line-height: 1.6;
  letter-spacing: -0.3px;
}
.rs-s2-mission-year {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rs-text-muted);
  margin-top: 20px;
}

/* ---- S2 SHOWROOM ---- */
.rs-s2-showroom {
  background: var(--rs-gray-light);
  padding: 80px 0;
}
.rs-s2-showroom-inner {
  max-width: var(--rs-container);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.rs-s2-showroom-heading {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--rs-black);
  margin-bottom: 8px;
}
.rs-s2-showroom-sub {
  font-size: 13px;
  color: var(--rs-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 24px;
}
.rs-s2-showroom-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.rs-s2-showroom-desc {
  font-size: 14.5px;
  color: var(--rs-text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.rs-s2-showroom-posts { display: flex; flex-direction: column; gap: 0; }
.rs-s2-showroom-post {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--rs-border);
  gap: 16px;
  cursor: pointer;
  transition: opacity var(--rs-transition);
}
.rs-s2-showroom-post:first-child { border-top: 1px solid var(--rs-border); }
.rs-s2-showroom-post:hover { opacity: 0.6; }
.rs-s2-showroom-post-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--rs-black);
  line-height: 1.4;
}
.rs-s2-showroom-post-arrow {
  font-size: 18px;
  color: var(--rs-text-muted);
  flex-shrink: 0;
  transition: transform var(--rs-transition);
}
.rs-s2-showroom-post:hover .rs-s2-showroom-post-arrow { transform: translate(3px,-3px); }

/* ---- S2 LEISTUNGEN (Services Tags) ---- */
.rs-s2-leistungen {
  background: var(--rs-white);
  padding: 80px 0;
  border-top: 1px solid var(--rs-border);
}
.rs-s2-leistungen-inner {
  max-width: var(--rs-container);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.rs-s2-leistungen-left {}
.rs-s2-leistungen-heading {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--rs-black);
  margin-bottom: 16px;
}
.rs-s2-leistungen-desc {
  font-size: 14px;
  color: var(--rs-text-muted);
  line-height: 1.7;
}
.rs-s2-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 6px;
}
.rs-s2-tag {
  display: inline-block;
  padding: 8px 16px;
  border: 1.5px solid var(--rs-border);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--rs-black);
  transition: background var(--rs-transition), border-color var(--rs-transition), color var(--rs-transition);
  cursor: default;
}
.rs-s2-tag:hover {
  background: var(--rs-black);
  border-color: var(--rs-black);
  color: var(--rs-white);
}

/* ---- S2 TESTIMONIALS ---- */
.rs-s2-testimonials {
  background: var(--rs-gray-light);
  padding: 80px 0;
}
.rs-s2-testimonials-inner {
  max-width: var(--rs-container);
  margin: 0 auto;
  padding: 0 40px;
}
.rs-s2-testimonials-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.rs-s2-testimonials-heading {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--rs-black);
}
.rs-s2-test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rs-s2-test-card {
  background: var(--rs-white);
  border-radius: 6px;
  padding: 32px;
  border: 1px solid var(--rs-border);
}
.rs-s2-test-quote-icon {
  font-size: 36px;
  line-height: 1;
  color: var(--rs-black);
  font-family: Georgia, serif;
  margin-bottom: 16px;
}
.rs-s2-test-text {
  font-size: 14.5px;
  color: var(--rs-black);
  line-height: 1.65;
  margin-bottom: 20px;
}
.rs-s2-test-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--rs-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---- S2 REFERENZEN (Client List) ---- */
.rs-s2-referenzen {
  background: var(--rs-white);
  padding: 80px 0;
  border-top: 1px solid var(--rs-border);
}
.rs-s2-referenzen-inner {
  max-width: var(--rs-container);
  margin: 0 auto;
  padding: 0 40px;
}
.rs-s2-ref-list { display: flex; flex-direction: column; gap: 0; }
.rs-s2-ref-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rs-border);
  align-items: start;
}
.rs-s2-ref-item:first-child { border-top: 1px solid var(--rs-border); }
.rs-s2-ref-client {
  font-size: 15px;
  font-weight: 700;
  color: var(--rs-black);
  letter-spacing: -0.3px;
}
.rs-s2-ref-desc {
  font-size: 14px;
  color: var(--rs-text-muted);
  line-height: 1.65;
}

/* ---- S2 CONTACT ---- */
.rs-s2-contact {
  background: var(--rs-black);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.rs-s2-contact-inner {
  max-width: var(--rs-container);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.rs-s2-contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}
.rs-s2-contact-heading {
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: -3px;
  color: var(--rs-white);
  line-height: 0.95;
  margin-bottom: 24px;
}
.rs-s2-contact-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
  max-width: 360px;
  line-height: 1.6;
}
.rs-s2-contact-detail {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}
.rs-s2-contact-detail a {
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 1px;
  transition: border-color var(--rs-transition);
}
.rs-s2-contact-detail a:hover { border-color: rgba(255,255,255,0.7); }
.rs-s2-contact-photo {
  width: 200px; height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
  display: block;
  background: #222;
}

/* ---- Responsive S2 ---- */
@media (max-width: 1024px) {
  .rs-s2-about-inner      { grid-template-columns: 1fr; gap: 40px; }
  .rs-s2-showroom-inner   { grid-template-columns: 1fr; }
  .rs-s2-leistungen-inner { grid-template-columns: 1fr; }
  .rs-s2-contact-inner    { grid-template-columns: 1fr; }
  .rs-s2-contact-photo    { width: 140px; height: 140px; }
}
@media (max-width: 768px) {
  .rs-s2-hero-inner        { padding: 0 20px; }
  .rs-s2-visual-inner      { padding: 60px 20px; }
  .rs-s2-about-inner       { padding: 0 20px; }
  .rs-s2-showroom-inner    { padding: 0 20px; }
  .rs-s2-leistungen-inner  { padding: 0 20px; }
  .rs-s2-testimonials-inner{ padding: 0 20px; }
  .rs-s2-referenzen-inner  { padding: 0 20px; }
  .rs-s2-contact-inner     { padding: 0 20px; }
  .rs-s2-test-grid         { grid-template-columns: 1fr; }
  .rs-s2-ref-item          { grid-template-columns: 1fr; gap: 8px; }
  .rs-s2-project-card      { height: 260px; }
  .rs-s2-contact-photo     { display: none; }
}

/* ===========================
   UTILITY
   =========================== */
.rs-pt-0 { padding-top: 0 !important; }
.rs-mt-btn { margin-top: 28px; }
.rs-text-center { text-align: center; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .rs-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .rs-who-inner { grid-template-columns: 1fr; }
  .rs-stats-inner { grid-template-columns: 1fr; }
  .rs-cta-inner { grid-template-columns: 1fr; }
  .rs-contacts-inner { grid-template-columns: 1fr; }
  .rs-footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .rs-container { padding: 0 20px; }
  .rs-header-inner { padding: 0 20px; }
  .rs-nav-pill { display: none; }
  .rs-nav-pill.open { display: flex; position: fixed; top: 68px; left: 0; right: 0; background: var(--rs-white); padding: 20px; border-bottom: 1px solid var(--rs-border); }
  .rs-nav-pill.open ul { flex-direction: column; background: none; border-radius: 0; padding: 0; border: none; width: 100%; }
  .rs-nav-pill.open ul li a { color: var(--rs-black); padding: 10px 0; }
  .rs-nav-toggle { display: flex; }
  .rs-hero { padding: 100px 0 60px; }
  .rs-hero-inner { padding: 0 20px; }
  .rs-hero-title { letter-spacing: -2px; }
  .rs-portfolio-grid { padding: 0 20px; }
  .rs-works-heading { padding: 0 20px; }
  .rs-works-footer { padding: 0 20px; }
  .rs-stats-inner { padding: 0 20px; }
  .rs-timeline-items { grid-template-columns: 1fr; padding: 0 20px; }
  .rs-steps-grid { grid-template-columns: 1fr; }
  .rs-team-grid { grid-template-columns: 1fr 1fr; padding: 0 20px; }
  .rs-portfolio-archive-grid { grid-template-columns: 1fr; padding: 0 20px; }
  .rs-portfolio-archive-card { height: 280px; }
  .rs-footer-top { grid-template-columns: 1fr; padding: 0 20px; }
  .rs-footer-inner { padding: 0 20px; }
  .rs-contacts-inner { padding: 0 20px; }
  .rs-form-row { grid-template-columns: 1fr; }
  .rs-who-inner { padding: 0 20px; }
  .rs-who-gallery img { height: 180px; }
  .rs-who-gallery img:first-child { height: 160px; }
}
@media (max-width: 480px) {
  .rs-team-grid { grid-template-columns: 1fr; }
  .rs-test-grid { grid-template-columns: 1fr; }
  .rs-footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ===========================
   MARQUEE (Scrolling-Schriftzug)
   =========================== */
.rs-marquee {
    overflow: hidden;
    background: #0d0d0d;
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.rs-marquee-track {
    display: flex;
    white-space: nowrap;
    animation: rs-scroll-left 28s linear infinite;
}
.rs-marquee-track span {
    font-size: clamp(28px, 4.5vw, 56px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
    flex-shrink: 0;
    padding-right: 0;
}
@keyframes rs-scroll-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
